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 QtQuick.Templates 2.15 import QtQuickUltralite.Extras 2.0 import Thermo 1.0 Button { id: root width: Theme.roomButtonSize height: Theme.roomButtonSize checkable: true property alias pulsing: anim.running property color pulsingColor; SequentialAnimation { running: false loops: Animation.Infinite id: anim ColorAnimation { from: ColorStyle.blue to: ColorStyle.greyMedium3 target: root property: "pulsingColor" } PauseAnimation { } ColorAnimation { to: ColorStyle.blue from: ColorStyle.greyMedium3 target: root property: "pulsingColor" } } contentItem: Item { Image { source: root.pressed ? "btn-bg-down.png" : (root.enabled && root.checked) ? "btn-bg-big-on.png" : "btn-bg-big-off.png"; anchors.horizontalCenter: parent.horizontalCenter; y: root.pressed ? 0 : -6; // Because of the 6 pixel shadow in the on and off image } ColorizedImage { source: root.icon.source anchors.centerIn: parent property color toggledColor: (root.enabled && root.checked) ? ColorStyle.blue : ColorStyle.greyMedium3 Behavior on toggledColor { ColorAnimation{} } color: root.pulsing ? root.pulsingColor : toggledColor } } }