This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/ui/devicepages/ShutterDevicePage.qml
2018-10-01 17:37:29 +02:00

80 lines
2.9 KiB
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
import QtQuick.Controls.Material 2.2
import QtQuick.Layouts 1.1
import Nymea 1.0
import "../components"
import "../customviews"
DevicePageBase {
id: root
readonly property bool landscape: width > height
readonly property bool isExtended: deviceClass.interfaces.indexOf("extendedshutter") >= 0
readonly property var percentageState: isExtended ? device.states.getState(deviceClass.stateTypes.findByName("percentage").id) : 0
readonly property var movingState: isExtended ? device.states.getState(deviceClass.stateTypes.findByName("moving").id) : 0
GridLayout {
anchors.fill: parent
columns: root.landscape ? 2 : 1
ColorIcon {
id: shutterImage
Layout.preferredWidth: root.landscape ? Math.min(parent.width - shutterControlsContainer.width, parent.height) - app.margins : parent.width
Layout.preferredHeight: width
name: "../images/shutter/shutter-" + app.pad(Math.round(root.percentageState.value / 10) * 10, 3) + ".svg"
visible: isExtended
}
Item {
id: shutterControlsContainer
Layout.preferredWidth: root.landscape ? Math.max(parent.width / 2, shutterControls.implicitWidth) : parent.width
Layout.minimumWidth: shutterControls.implicitWidth
Layout.fillHeight: true
Layout.minimumHeight: app.iconSize * 2.5
Column {
anchors.centerIn: parent
width: parent.width - app.margins * 2
spacing: app.margins
Slider {
id: percentageSlider
width: parent.width
from: 0
to: 100
stepSize: 1
visible: isExtended
Binding {
target: percentageSlider
property: "value"
value: root.percentageState.value
when: root.movingState.value === false
}
onPressedChanged: {
if (pressed) {
return;
}
var actionType = root.deviceClass.actionTypes.findByName("percentage");
var params = [];
var percentageParam = {}
percentageParam["paramTypeId"] = actionType.paramTypes.findByName("percentage").id;
percentageParam["value"] = value
params.push(percentageParam);
engine.deviceManager.executeAction(root.device.id, actionType.id, params);
}
}
ShutterControls {
id: shutterControls
device: root.device
anchors.horizontalCenter: parent.horizontalCenter
}
}
}
}
}