110 lines
3.9 KiB
QML
110 lines
3.9 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-app.
|
|
*
|
|
* nymea-app is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-app is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import Nymea
|
|
|
|
Item {
|
|
id: root
|
|
implicitHeight: size * 4
|
|
implicitWidth: size * 7
|
|
|
|
property Thing thing: null
|
|
readonly property State openState: thing.stateByName("state")
|
|
readonly property bool canStop: thing && thing.thingClass.actionTypes.findByName("stop")
|
|
|
|
property bool invert: false
|
|
property bool backgroundEnabled: false
|
|
property int size: Style.iconSize
|
|
|
|
signal activated(string button);
|
|
|
|
RowLayout {
|
|
anchors { left: parent.left; right: parent.right; verticalCenter: parent.verticalCenter }
|
|
spacing: 0
|
|
|
|
Item { Layout.fillWidth: true; Layout.fillHeight: true }
|
|
|
|
ProgressButton {
|
|
imageSource: root.invert ? "qrc:/icons/down.svg" : "qrc:/icons/up.svg"
|
|
backgroundColor: root.backgroundEnabled ? Style.green : "transparent"
|
|
color: root.backgroundEnabled ? Style.white : Style.iconColor
|
|
size: root.size
|
|
busy: root.openState ? root.openState.value === "opening" : openBusyTimer.running
|
|
onClicked: {
|
|
engine.thingManager.executeAction(root.thing.id, root.thing.thingClass.actionTypes.findByName("open").id)
|
|
root.activated("open")
|
|
openBusyTimer.start()
|
|
closeBusyTimer.stop()
|
|
}
|
|
|
|
Timer {
|
|
id: openBusyTimer
|
|
interval: 5000
|
|
}
|
|
}
|
|
|
|
Item { Layout.fillWidth: true; Layout.fillHeight: true }
|
|
|
|
ProgressButton {
|
|
visible: root.canStop
|
|
backgroundColor: root.backgroundEnabled ? Style.yellow : "transparent"
|
|
color: root.backgroundEnabled ? Style.white : Style.iconColor
|
|
size: root.size
|
|
imageSource: "qrc:/icons/media-playback-stop.svg"
|
|
onClicked: {
|
|
engine.thingManager.executeAction(root.thing.id, root.thing.thingClass.actionTypes.findByName("stop").id)
|
|
root.activated("stop")
|
|
openBusyTimer.stop()
|
|
closeBusyTimer.stop()
|
|
}
|
|
}
|
|
|
|
Item { Layout.fillWidth: true; Layout.fillHeight: true }
|
|
|
|
ProgressButton {
|
|
imageSource: root.invert ? "qrc:/icons/up.svg" : "qrc:/icons/down.svg"
|
|
backgroundColor: root.backgroundEnabled ? Style.red : "transparent"
|
|
color: root.backgroundEnabled ? Style.white : Style.iconColor
|
|
size: root.size
|
|
busy: root.openState ? root.openState.value === "closing" : closeBusyTimer.running
|
|
onClicked: {
|
|
engine.thingManager.executeAction(root.thing.id, root.thing.thingClass.actionTypes.findByName("close").id)
|
|
root.activated("close")
|
|
openBusyTimer.stop();
|
|
closeBusyTimer.start()
|
|
}
|
|
Timer {
|
|
id: closeBusyTimer
|
|
interval: 5000
|
|
}
|
|
}
|
|
|
|
Item { Layout.fillWidth: true; Layout.fillHeight: true }
|
|
}
|
|
}
|
|
|