Delete unneeded files
[staging/HomeScreen.git] / sample-qml / main.qml
diff --git a/sample-qml/main.qml b/sample-qml/main.qml
deleted file mode 100644 (file)
index e2af15f..0000000
+++ /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")
-        }
-    }
-
-}