1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import QtQuick 1.1
- Rectangle {
- anchors.fill: evidenceTiles
- color: "#000000"
- radius: 15
- border.width: 3
- border.color: "#666666"
- Rectangle {
- id: evidenceInfoTitle
- width: parent.width
- height: 40
- color: evidenceInfo.color
- opacity: 1
- radius: 15
- border.width: 3
- border.color: "#666666"
- anchors.top: parent.top
- Text {
- id: evidenceInfoTitleText
- font.capitalization: Font.AllUppercase
- horizontalAlignment: Text.AlignHCenter
- verticalAlignment: Text.AlignVCenter
- anchors.fill: parent
- font.pixelSize: 24
- font.weight: Font.Bold
- color: "#ffffff"
- style: Text.Outline
- text: evidenceInfo.title
- }
- }
- Image {
- id: evidenceInfoPicture
- anchors.top: evidenceInfoTitle.bottom
- anchors.topMargin: 15
- anchors.left: parent.left
- anchors.leftMargin: 15
- anchors.right: parent.right
- anchors.rightMargin: 15
- visible: evidenceInfo.image=="" ? 0 : 1
- source: "pics/"+evidenceInfo.image;
- }
- Text {
- id: evidenceInfoDescriptionText
- wrapMode:Text.WordWrap
- horizontalAlignment: Text.AlignHCenter
- anchors.top: evidenceInfoPicture.bottom
- anchors.topMargin: 15
- anchors.left: parent.left
- anchors.leftMargin: 15
- anchors.right: parent.right
- anchors.rightMargin: 15
- anchors.bottom:parent.bottom
- font.pixelSize: 24
- font.weight: Font.Bold
- color: "#ffffff"
- style: Text.Outline
- text: evidenceInfo.description
- }
- MouseArea {
- anchors.fill: parent;
- onClicked: {
- if (isPlaying) {
- evidenceInfo.setVisible(false);
- }
- }
- }
- }
|