change shortcut area
[apps/homescreen.git] / homescreen / qml / StatusArea.qml
index ab14a23..89030eb 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * Copyright (C) 2016 The Qt Company Ltd.
  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
+ * Copyright (c) 2017, 2018 TOYOTA MOTOR CORPORATION
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -116,11 +117,49 @@ Item {
             Layout.fillHeight: true
             Layout.preferredWidth: 76
             spacing: -10
+            Rectangle {
+                Layout.preferredWidth: 77
+                Layout.preferredHeight: 55
+                opacity: 0
+            }
+            Image {
+                id: bt_icon
+                Layout.preferredWidth: 77
+                Layout.preferredHeight: 55
+                source: connStatus ? './images/Status/HMI_Status_Bluetooth_On-01.png' : './images/Status/HMI_Status_Bluetooth_Inactive-01.png'
+                fillMode: Image.PreserveAspectFit
+                property string deviceName: "none"
+                property bool connStatus: false
+                Connections {
+                    target: bluetooth
+                    onConnectionEvent: {
+                        console.log("onConnectionEvent", data.Status)
+                        if (data.Status === "connected") {
+                            bt_icon.connStatus = true
+                        } else if (data.Status === "disconnected") {
+                            bt_icon.connStatus = false
+                        }
+                    }
+                    onDeviceUpdateEvent: {
+                        console.log("onConnectionEvent", data.Paired)
+                        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
+                            }
+                        }
+                    }
+                }
+            }
+
             Repeater {
-                model: StatusBarModel {}
+                model: StatusBarModel { objectName: "statusBar" }
                 delegate: Image {
                     Layout.preferredWidth: 77
-                    Layout.preferredHeight: 73
+                    Layout.preferredHeight: 55
                     source: model.modelData
                     fillMode: Image.PreserveAspectFit
                 }