homescreenhandler: Remove old artifacts
[apps/homescreen.git] / homescreen / qml / StatusArea.qml
index 24d2b18..87b27ad 100644 (file)
@@ -22,28 +22,28 @@ import HomeScreen 1.0
 
 Item {
     id: root
-    width: 295
-    height: 218
+    //width: 295
+    //height: 216
 
     property date now: new Date
     Timer {
         interval: 100; running: true; repeat: true;
         onTriggered: root.now = new Date
     }
-
+/*
     Connections {
         target: weather
 
         onConditionChanged: {
             var icon = ''
 
-            if (condition.indexOf("clouds") != -1) {
+            if (condition.indexOf("clouds") !== -1) {
                 icon = "WeatherIcons_Cloudy-01.png"
-            } else if (condition.indexOf("thunderstorm") != -1) {
+            } else if (condition.indexOf("thunderstorm") !== -1) {
                 icon = "WeatherIcons_Thunderstorm-01.png"
-            } else if (condition.indexOf("snow") != -1) {
+            } else if (condition.indexOf("snow") !== -1) {
                 icon = "WeatherIcons_Snow-01.png"
-            } else if (condition.indexOf("rain") != -1) {
+            } else if (condition.indexOf("rain") !== -1) {
                 icon = "WeatherIcons_Rain-01.png"
             }
 
@@ -54,7 +54,7 @@ Item {
             temperature_item.text = temperature.split(".")[0] + '°F'
         }
     }
-
+*/
     RowLayout {
         anchors.fill: parent
         spacing: 0
@@ -126,38 +126,19 @@ Item {
                 fillMode: Image.PreserveAspectFit
                 property string deviceName: "none"
                 property bool connStatus: false
+/*
                 Connections {
                     target: bluetooth
 
-                    //{"event":"Bluetooth-Manager\/connection","data":{"Status":"connected","Address":"88:BD:45:EC:3A:E6"},"jtype":"afb-event"}
-                    //{"event":"Bluetooth-Manager\/connection","data":{"Status":"disconnected","Address":"88:BD:45:EC:3A:E6"},"jtype":"afb-event"}
-                    onConnectionEvent: {
-                        // console.log("bluetooth connection is:", data.Status)
-                        // console.log("onConnectionEvent bt_icon.deviceName:",bt_icon.deviceName, "bt_icon.connStatus:", bt_icon.connStatus)
-                        if (data.Status == "connected"){
-                            bt_icon.connStatus = true
-                        } else if (data.Status == "disconnected"){
-                            bt_icon.connStatus = false
-                        }
-                    }
-                    //{"event":"Bluetooth-Manager\/device_updated","data":{"Address":"88:BD:45:EC:3A:E6","Name":"SG02","Paired":"True","Connected":"True","AVPConnected":"True","Metadata":{"Title":"","Artist":"","Status":"stop}
-                    onDeviceUpdatedEvent: {
-                        // console.log("bluetooth onDeviceUpdatedEvent date is:", data.Name, "Paired: ", data.Paired, "Connected: ", data.Connected)
-                        // console.log("onDeviceUpdatedEvent bt_icon.deviceName:",bt_icon.deviceName, "bt_icon.connStatus:", bt_icon.connStatus)
-                        if ( data.Paired == "True" &&  data.Connected == "True" ){
-                            bt_icon.deviceName = data.Name
-                            bt_icon.connStatus = true
-                        } else {
-                            if(bt_icon.deviceName == data.Name)
-                            {
-                                bt_icon.connStatus = false
-                            }
-                        }
+                    onPowerChanged: {
+                            bt_icon.connStatus = state
                     }
                 }
+*/
             }
+/*
             Repeater {
-                model: StatusBarModel {}
+                model: StatusBarModel { objectName: "statusBar" }
                 delegate: Image {
                     Layout.preferredWidth: 77
                     Layout.preferredHeight: 73
@@ -165,6 +146,7 @@ Item {
                     fillMode: Image.PreserveAspectFit
                 }
             }
+*/
         }
     }
 }