X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fqml%2FStatusArea.qml;h=ab14a23c019240818a5200f3879880e93af9fafd;hb=85392e71f90a0322fdc08359ef1d829cdcf67381;hp=3fc30797d148dd2448b025288d70376c4b8c8d8b;hpb=69be38c5d975c96eee7adab238ffd608b99d8514;p=apps%2Fhomescreen.git diff --git a/homescreen/qml/StatusArea.qml b/homescreen/qml/StatusArea.qml index 3fc3079..ab14a23 100644 --- a/homescreen/qml/StatusArea.qml +++ b/homescreen/qml/StatusArea.qml @@ -17,7 +17,6 @@ import QtQuick 2.2 import QtQuick.Layouts 1.1 -import QtQuick.Controls 1.0 import HomeScreen 1.0 Item { @@ -31,6 +30,30 @@ Item { onTriggered: root.now = new Date } + Connections { + target: weather + + onConditionChanged: { + var icon = '' + + if (condition.indexOf("clouds") != -1) { + icon = "WeatherIcons_Cloudy-01.png" + } else if (condition.indexOf("thunderstorm") != -1) { + icon = "WeatherIcons_Thunderstorm-01.png" + } else if (condition.indexOf("snow") != -1) { + icon = "WeatherIcons_Snow-01.png" + } else if (condition.indexOf("rain") != -1) { + icon = "WeatherIcons_Rain-01.png" + } + + condition_item.source = icon ? './images/Weather/' + icon : '' + } + + onTemperatureChanged: { + temperature_item.text = temperature.split(".")[0] + '°F' + } + } + RowLayout { anchors.fill: parent spacing: 0 @@ -74,9 +97,11 @@ Item { Layout.fillHeight: true Layout.preferredHeight: 20 Image { + id: condition_item source: './images/Weather/WeatherIcons_Rain-01.png' } Text { + id: temperature_item text: '64°F' color: 'white' font.family: 'Helvetica'