summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources/watch/MainWatch.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tradeshow/iot-sensortag/resources/watch/MainWatch.qml')
-rw-r--r--tradeshow/iot-sensortag/resources/watch/MainWatch.qml61
1 files changed, 61 insertions, 0 deletions
diff --git a/tradeshow/iot-sensortag/resources/watch/MainWatch.qml b/tradeshow/iot-sensortag/resources/watch/MainWatch.qml
index 801c38b..5a500a2 100644
--- a/tradeshow/iot-sensortag/resources/watch/MainWatch.qml
+++ b/tradeshow/iot-sensortag/resources/watch/MainWatch.qml
@@ -226,6 +226,54 @@ Item {
title: ""
}
}
+
+ Item {
+ Text {
+ text: qsTr("About")
+ anchors.fill: parent
+ color: "white"
+ font.pixelSize: titleFontSize
+ }
+
+ Rectangle {
+ id: aboutView
+ width: swipePane.width
+ height: swipePane.height
+ color: "transparent"
+
+ ColumnLayout {
+ id: aboutLayout
+ width: parent.width * 0.8
+ height: parent.width * 0.8
+ anchors.centerIn: parent
+
+ Image {
+ source: "images/BuiltWithQt.png"
+ fillMode: Image.PreserveAspectFit
+ width: parent.width
+ Layout.maximumWidth: parent.width - 20
+ Layout.maximumHeight: 100
+ anchors.horizontalCenter: parent.horizontalCenter
+ }
+
+ Text {
+ id: qtLinkLabel
+ color: "white"
+ text: "Visit us at http://qt.io"
+ anchors.horizontalCenter: parent.horizontalCenter
+ font.pixelSize: Style.indicatorTitleSize
+ }
+
+ Text {
+ color: "white"
+ text: "qt.io/demos/IoTScale"
+ anchors.horizontalCenter: parent.horizontalCenter
+ font.pixelSize: Style.indicatorTitleSize
+ }
+ }
+ }
+ }
+
}
TopToolbar {
@@ -236,5 +284,18 @@ Item {
height: 48
topbar.visible: false
date.visible: false
+ Image {
+ id: quit
+ source: "images/Toolbar/exit_button.png"
+ fillMode: Image.PreserveAspectFit
+ anchors.top: parent.top
+ anchors.right: parent.right
+ anchors.margins: 5
+ scale: 0.7
+ MouseArea {
+ anchors.fill: parent
+ onClicked: Qt.quit()
+ }
+ }
}
}