QML/Hvac: Do not hard-code window size
[apps/hvac.git] / app / HVAC.qml
index 2610164..1a39167 100644 (file)
 import QtQuick 2.6
 import QtQuick.Layouts 1.1
 import QtQuick.Controls 2.0
+import QtQuick.Window 2.11
 import AGL.Demo.Controls 1.0
 import Translator 1.0
-import 'api' as API
 
 ApplicationWindow {
     id: root
 
+    width: container.width * container.scale
+    height: container.height * container.scale
+
        Translator {
                id: translator
-               language: binding.language
+               language: "en_US"
        }
 
-       API.Binding {
-               id: binding
-               url: bindingAddress
+       Connections {
+               target: hvac
                onFanSpeedChanged: fanSpeedSlider.value = fanSpeed
                onLanguageChanged: translator.language = language
        }
 
+    Item {
+        id: container
+        anchors.centerIn: parent
+        width: Screen.width
+        height: Screen.height
+        scale: 1
+
        ColumnLayout {
                anchors.fill: parent
                anchors.topMargin: width / 10
@@ -47,7 +56,7 @@ ApplicationWindow {
                                source: './images/HMI_HVAC_Fan_Icon.svg'
                        }
                        Item {
-                               width: root.width * 0.8
+                               width: container.width * 0.8
                                Slider {
                                        id: fanSpeedSlider
                                        anchors.left: parent.left
@@ -57,7 +66,7 @@ ApplicationWindow {
                                        to: 255.0
                                        stepSize: 1.0
                                        onValueChanged: {
-                                               binding.fanSpeed = value
+                                               hvac.fanSpeed = value
                                        }
                                }
                                Label {
@@ -83,7 +92,7 @@ ApplicationWindow {
                                HeatDegree {
                                        onCurrentItemChanged: {
                                                console.log("Left Temp changed",degree)
-                                               binding.leftTemperature = degree
+                                               hvac.leftTemperature = degree
                                        }
                                }
                        }
@@ -135,7 +144,7 @@ ApplicationWindow {
                                HeatDegree {
                                        onCurrentItemChanged: {
                                                console.log("Right Temp changed",degree)
-                                               binding.rightTemperature = degree
+                                               hvac.rightTemperature = degree
                                        }
                                }
                        }
@@ -158,3 +167,4 @@ ApplicationWindow {
                }
        }
 }
+}