aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2018-08-01 11:24:08 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2018-08-01 11:24:08 +0000
commit761c15a8ab0c0b390e1cff84ad5d33d48b99ed98 (patch)
treeaa7d7d8605a6e3e7e9e0e27d54d6c58261b7cb50 /homescreen/qml
parent220d40ffb6339edd3bb14d29d32cabfa44293fc9 (diff)
parent564c3c80884c0e9064a19e31655fd80f92eb594a (diff)
Merge "Change bluetooth status using agl-service-bluetooth"
Diffstat (limited to 'homescreen/qml')
-rw-r--r--homescreen/qml/StatusArea.qml40
1 files changed, 40 insertions, 0 deletions
diff --git a/homescreen/qml/StatusArea.qml b/homescreen/qml/StatusArea.qml
index 1a86a57..3f2b280 100644
--- a/homescreen/qml/StatusArea.qml
+++ b/homescreen/qml/StatusArea.qml
@@ -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,6 +117,45 @@ Item {
Layout.fillHeight: true
Layout.preferredWidth: 76
spacing: -10
+
+ Image {
+ id: bt_icon
+ Layout.preferredWidth: 77
+ Layout.preferredHeight: 73
+ 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
+
+ //{"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
+ }
+ }
+ }
+ }
+ }
Repeater {
model: StatusBarModel { objectName: "statusBar" }
delegate: Image {