summaryrefslogtreecommitdiffstats
path: root/tradeshow/iot-sensortag/resources/base/main.qml
diff options
context:
space:
mode:
authorAndrew O'Doherty <andrew.odoherty@qt.io>2017-11-01 13:25:47 +0100
committerMaurice Kalinowski <maurice.kalinowski@qt.io>2017-11-15 08:46:34 +0000
commit514c3404213629814387949f277889c72bb3283f (patch)
tree03d4d9da9806bd4d579400e0dc7e2f0f39dda097 /tradeshow/iot-sensortag/resources/base/main.qml
parentb4092a5ff3120e9472bcb0fb9fe22aa5576c172e (diff)
iot-sensortag: Adapt demo to the screen size of a smartwatch
mainSmall.qml requires a SwipeView since the smartwatch screen is too small too display all the charts. The charts have been scaled to smaller size and some alignment adjustments have been made Change-Id: I229b6150135c8a1a65bc8114f430904a15397b1e Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'tradeshow/iot-sensortag/resources/base/main.qml')
-rw-r--r--tradeshow/iot-sensortag/resources/base/main.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/tradeshow/iot-sensortag/resources/base/main.qml b/tradeshow/iot-sensortag/resources/base/main.qml
index c756c6d..05b0f21 100644
--- a/tradeshow/iot-sensortag/resources/base/main.qml
+++ b/tradeshow/iot-sensortag/resources/base/main.qml
@@ -48,11 +48,13 @@
**
****************************************************************************/
import QtQuick 2.6
+import QtQuick.Controls 1.4
import QtQuick.Window 2.0
import SensorTag.DataProvider 1.0
import SensorTag.SeriesStorage 1.0
+import Style 1.0
-Window {
+ApplicationWindow {
id: mainWindow
property var singleSensorSource : null
@@ -73,8 +75,8 @@ Window {
}
// Size defaults to the small display
- width: 1920
- height: 1080
+ width: Style.width
+ height: Style.height
visible: true
color: "black"