From 2cdd42fba2645f9578cb1055e501ecc4644da36d Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Wed, 14 Nov 2018 12:41:11 +0900 Subject: Add dashboard for horizontal mode Add dashboard for horizontal mode. Change-Id: I216d7be177a46b8664aa5655b7fad022f9904e5d Signed-off-by: zheng_wenlong --- demo3/horizontal/dashboard/app/TirePressure.qml | 62 +++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 demo3/horizontal/dashboard/app/TirePressure.qml (limited to 'demo3/horizontal/dashboard/app/TirePressure.qml') diff --git a/demo3/horizontal/dashboard/app/TirePressure.qml b/demo3/horizontal/dashboard/app/TirePressure.qml new file mode 100644 index 0000000..437cf2f --- /dev/null +++ b/demo3/horizontal/dashboard/app/TirePressure.qml @@ -0,0 +1,62 @@ +import QtQuick 2.6 +import QtQuick.Controls 2.0 + +Image { + id: root + width: sourceSize.width + height: sourceSize.height + property bool mirror: false + property alias title: title.text + property alias pressure: pressure.text + + Label { + id: title + anchors.bottom: pressure.top + font.pixelSize: 24 + } + + Label { + id: pressure + anchors.bottom: parent.bottom + anchors.bottomMargin: 55 + anchors.leftMargin: 140 + anchors.rightMargin: 140 + color: '#00ADDC' + font.pixelSize: 20 + } + + states: [ + State { + name: 'left' + when: !mirror + PropertyChanges { + target: root + source: './images/HMI_Dashboard_LeftTire.svg' + } + AnchorChanges { + target: title + anchors.right: pressure.right + } + AnchorChanges { + target: pressure + anchors.right: parent.right + } + }, + State { + name: 'right' + when: mirror + PropertyChanges { + target: root + source: './images/HMI_Dashboard_RightTire.svg' + } + AnchorChanges { + target: title + anchors.left: pressure.left + } + AnchorChanges { + target: pressure + anchors.left: parent.left + } + } + ] +} -- cgit 1.2.3-korg