X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=app%2FHVAC.qml;h=b1925dd0b9b3283957910b3b605e72ecdf3ec039;hb=refs%2Ftags%2F5.1.0;hp=41cf7fa3a98f379928140cb3bfa3aaea355de7e8;hpb=c472e565e6b7918d0b9554cb1b2c6c86f3ffbef5;p=apps%2Fhvac.git diff --git a/app/HVAC.qml b/app/HVAC.qml index 41cf7fa..b1925dd 100644 --- a/app/HVAC.qml +++ b/app/HVAC.qml @@ -18,15 +18,22 @@ import QtQuick 2.6 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 import AGL.Demo.Controls 1.0 +import Translator 1.0 import 'api' as API ApplicationWindow { id: root + Translator { + id: translator + language: binding.language + } + API.Binding { id: binding url: bindingAddress onFanSpeedChanged: fanSpeedSlider.value = fanSpeed + onLanguageChanged: translator.language = language } ColumnLayout { @@ -57,7 +64,7 @@ ApplicationWindow { anchors.left: fanSpeedSlider.left anchors.top: fanSpeedSlider.bottom font.pixelSize: 32 - text: 'FAN SPEED' + text: translator.translate(qsTr('FAN SPEED'), translator.language) } } } @@ -74,7 +81,6 @@ ApplicationWindow { side: 'Left' } HeatDegree { - enabled: leftSeat.headLevel > 0 onCurrentItemChanged: { console.log("Left Temp changed",degree) binding.leftTemperature = degree @@ -89,8 +95,8 @@ ApplicationWindow { offImage: './images/HMI_HVAC_Inactive.svg' Label { anchors.centerIn: parent - color: parent.checked ? '#66FF99' : '#848286' - text: 'A/C' + color: parent.checked ? '#00ADDC' : '#848286' + text: translator.translate(qsTr('A/C'), translator.language) font.pixelSize: parent.height / 3 } onCheckedChanged: { @@ -102,8 +108,8 @@ ApplicationWindow { offImage: './images/HMI_HVAC_Inactive.svg' Label { anchors.centerIn: parent - color: parent.checked ? '#66FF99' : '#848286' - text: 'AUTO' + color: parent.checked ? '#00ADDC' : '#848286' + text: translator.translate(qsTr('AUTO'), translator.language) font.pixelSize: parent.height / 3 } onCheckedChanged: { @@ -127,7 +133,6 @@ ApplicationWindow { side: 'Right' } HeatDegree { - enabled: rightSeat.headLevel > 0 onCurrentItemChanged: { console.log("Right Temp changed",degree) binding.rightTemperature = degree