summaryrefslogtreecommitdiffstats
path: root/sample-qml/main.qml
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-15 05:50:29 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-12-15 05:55:33 +0100
commita4f5c7d97fcbb97ece05cfbca38fb1963ab11377 (patch)
tree9436a9fadfc871140cd460939d9c084b198b6b26 /sample-qml/main.qml
parentf775180abd5e6adb58763bec74aa250bf4657341 (diff)
Delete unneeded files
- sample-qml no longer needed - widgets no longer needed - images replaced by new HMI before Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'sample-qml/main.qml')
-rw-r--r--sample-qml/main.qml38
1 files changed, 0 insertions, 38 deletions
diff --git a/sample-qml/main.qml b/sample-qml/main.qml
deleted file mode 100644
index e2af15f..0000000
--- a/sample-qml/main.qml
+++ /dev/null
@@ -1,38 +0,0 @@
-import QtQuick 2.6
-import QtQuick.Window 2.2
-import "apps/HVAC"
-import "imports"
-import "dummyimports"
-
-Window {
- visible: true
- width: 1080
- height: 1920
- title: qsTr("AGL sample qml app")
-
- //MainForm {
- // anchors.fill: parent
- // mouseArea.onClicked: {
- // Qt.quit();
- // }
- //}
- HVAC {
- id: hvc
- width: 1080
- height: 1920
- visible: true
- }
- onVisibleChanged: {
- if(visible == true)
- {
- console.log("visible true")
- console.log("maybe it is okay")
- hsa.consoleout()
- hsa.refresh();
- }
- else{
- console.log("visible false")
- }
- }
-
-}