C

Qt Quick Ultralite Thermostat Demo

/****************************************************************************** ** ** Copyright (C) 2020 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Quick Ultralite module. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ******************************************************************************/
import QtQuick 2.15 import QtQuickUltralite.Extras 2.0 import Thermo 1.0 Item { id: root property Room room width: Theme.cardWidth height: Theme.cardHeight signal selected Item { width: Theme.cardWidth height: Theme.cardHeight Image { source: "images/card-back-topleft.png" } Rectangle { x: Theme.cardCornerRadius width: Theme.cardWidth - 2 * Theme.cardCornerRadius height: Theme.cardCornerRadius color: ColorStyle.greyLight1 } Image { x: Theme.cardWidth - Theme.cardCornerRadius source: "images/card-back-topright.png" } Rectangle { y: Theme.cardCornerRadius width: Theme.cardWidth height: Theme.cardHeight - 2 * Theme.cardCornerRadius color: ColorStyle.greyLight1 } Image { y: Theme.cardHeight - Theme.cardCornerRadius source: "images/card-back-bottomleft.png" } Rectangle { x: Theme.cardCornerRadius y: Theme.cardHeight - Theme.cardCornerRadius width: Theme.cardWidth - 2 * Theme.cardCornerRadius height: Theme.cardCornerRadius color: ColorStyle.greyLight1 } Image { x: Theme.cardWidth - Theme.cardCornerRadius y: Theme.cardHeight - Theme.cardCornerRadius source: "images/card-back-bottomright.png" } Row { id: temperatureText anchors.top: parent.top anchors.topMargin: Theme.cardTemperatureTopMargin anchors.left: parent.left anchors.leftMargin: Theme.cardTemperatureLeftMargin anchors.right: parent.right height: 48 width: temp.text.length != 0 ? 92 : 0 visible: temp.text.length !== 0 Text { id: temp text: root.room.power ? root.room.temperature : "" font.pixelSize: 60 color: ColorStyle.greyDark4 visible: text.length !== 0 height: parent.height anchors.topMargin: -8 anchors.top: parent.top } Text { anchors.top: parent.top font.pixelSize: 20 color: ColorStyle.greyDark4 text: Units.temperatureSymbol } } Column { id: roomColumn anchors.top: parent.top anchors.topMargin: Theme.cardRoomColumnTopMargin anchors.left: parent.left anchors.leftMargin: Theme.cardRoomColumnLeftMargin anchors.right: parent.right anchors.rightMargin: Theme.cardRoomColumnRightMargin // The line height from Hindi font causes the floor text // to overflow the separator line. spacing: !Theme.isBig && Qt.uiLanguage === "hi_IN" ? -6 : Theme.cardRoomColumnSpacing Text { width: parent.width font.pixelSize: Theme.cardRoomFontSize text: root.room.name color: ColorStyle.greyDark4 } Text { width: parent.width font.pixelSize: Theme.cardFloorFontSize text: root.room.floor color: ColorStyle.greyDark1 } } Image { x: Theme.cardSeparatorLeftMargin y: Theme.cardSeparatorTopMargin source: "separator-line.png" } Row { visible: root.room.status != Room.Off && !root.room.auto_ spacing: Theme.cardIndicatorSpacing anchors.bottom: parent.bottom anchors.bottomMargin: 25 anchors.left: parent.left anchors.leftMargin: 22 ColorizedImage { source: "dryer-on-small.png" color: root.room.dryer ? ColorStyle.blue : ColorStyle.greyMedium3 } Image { source: root.room.smallFanImage() } ColorizedImage { source: "eco-on-small.png" color: root.room.eco ? ColorStyle.blue : ColorStyle.greyMedium3 } ColorizedImage { source: "streamer-on-small.png" color: root.room.streamer ? ColorStyle.blue : ColorStyle.greyMedium3 } } Image { id: autoIndicator visible: root.room.status != Room.Off && root.room.auto_ anchors.bottom: parent.bottom anchors.bottomMargin: 25 anchors.left: parent.left anchors.leftMargin: 22 source: "auto-card.png" } Row { anchors.bottom: parent.bottom anchors.bottomMargin: 23 anchors.right: parent.right anchors.rightMargin: Theme.cardStateRightMargin spacing: 3 Text { text: { switch (root.room.status) { case Room.Heating: return qsTr("Heating") case Room.Cooling: return qsTr("Cooling") default: return qsTr("Off") } } color: ColorStyle.greyDark1 font.pixelSize: Theme.cardStateFontSize } ColorizedImage { y: Theme.isBig ? 3 : 2 source: "status-small.png" color: { switch (root.room.status) { case Room.Heating: return ColorStyle.pinkyRed case Room.Cooling: return ColorStyle.blue default: return ColorStyle.greyMedium3 } } } } MouseArea { id: ta enabled: root.enabled anchors.fill: parent onClicked: root.selected() z: 1 } } PowerSwitch { id: enabledSwitch enabled: root.enabled onEnabledChanged: { checked = (root.room.status !== Room.Off) } y: Theme.powerSwitchTopMargin anchors.right: parent.right anchors.rightMargin: Theme.powerSwitchRightMargin checked: root.room.status !== Room.Off onCheckedChanged: { root.room.power = checked } } }