aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/StatusArea.qml
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-28 14:00:55 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-28 14:00:55 +0800
commit7d29d877baafe52cc0e0bbdf7d86deff61073651 (patch)
treeb3d106a241e5c3b5be6b7f1fbe596ac3024ae0ad /homescreen/qml/StatusArea.qml
parent33c89065c315edd838873116bec8723326f43488 (diff)
registerShortcut
Change-Id: I66dbf6f12a890e67908594ed238556f5456b7ed7
Diffstat (limited to 'homescreen/qml/StatusArea.qml')
-rw-r--r--homescreen/qml/StatusArea.qml15
1 files changed, 13 insertions, 2 deletions
diff --git a/homescreen/qml/StatusArea.qml b/homescreen/qml/StatusArea.qml
index d2e0930..961cd88 100644
--- a/homescreen/qml/StatusArea.qml
+++ b/homescreen/qml/StatusArea.qml
@@ -109,6 +109,12 @@ Item {
font.pixelSize: 32
}
}
+ MouseArea {
+ anchors.fill: parent
+ onClicked: {
+ homescreenHandler.killRunningApplications()
+ }
+ }
}
}
ColumnLayout {
@@ -117,11 +123,16 @@ 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: 73
+ 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"
@@ -138,7 +149,7 @@ Item {
model: StatusBarModel { objectName: "statusBar" }
delegate: Image {
Layout.preferredWidth: 77
- Layout.preferredHeight: 73
+ Layout.preferredHeight: 55
source: model.modelData
fillMode: Image.PreserveAspectFit
}