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/components/ShuffleRepeatVolumeControl.qml
2025-12-05 13:40:20 +01:00

155 lines
5.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.Controls.Material
import QtQuick.Layouts
import QtCharts
import Nymea
RowLayout {
id: root
property Thing thing: null
property State repeatState: thing.stateByName("repeat")
property State shuffleState: thing.stateByName("shuffle")
property State volumeState: thing.stateByName("volume")
property State muteState: thing.stateByName("mute")
Item {
Layout.preferredHeight: Style.iconSize
Layout.fillWidth: true
visible: root.repeatState !== null
HeaderButton {
anchors.centerIn: parent
imageSource: root.repeatState.value === "One" ? "qrc:/icons/media-playlist-repeat-one.svg" : "qrc:/icons/media-playlist-repeat.svg"
color: root.repeatState.value === "None" ? Style.iconColor : Style.accentColor
property var allowedValues: ["None", "All", "One"]
onClicked: {
var params = []
var param = {}
param["paramTypeId"] = root.repeatState.stateTypeId;
param["value"] = allowedValues[(allowedValues.indexOf(root.repeatState.value) + 1) % 3]
params.push(param)
engine.thingManager.executeAction(root.thing.id, root.repeatState.stateTypeId, params)
}
}
}
Item {
Layout.preferredHeight: Style.iconSize
Layout.fillWidth: true
visible: root.shuffleState !== null
HeaderButton {
anchors.centerIn: parent
imageSource: "qrc:/icons/media-playlist-shuffle.svg"
color: root.shuffleState.value === true ? Style.accentColor: Style.iconColor
onClicked: {
var params = []
var param = {}
param["paramTypeId"] = root.shuffleState.stateTypeId
param["value"] = !root.shuffleState.value
params.push(param)
engine.thingManager.executeAction(root.thing.id, root.shuffleState.stateTypeId, params)
}
}
}
Item {
id: volumeButtonContainer
Layout.fillWidth: true; Layout.fillHeight: true
HeaderButton {
id: volumeButton
anchors.centerIn: parent
imageSource: root.muteState && root.muteState.value === true ?
"qrc:/icons/audio-speakers-muted-symbolic.svg"
: "qrc:/icons/audio-speakers-symbolic.svg"
onClicked: {
print(volumeButton.x, volumeButton.y)
print(Qt.point(volumeButton.x, volumeButton.y))
print(volumeButton.mapToItem(root, volumeButton.x,0))
var buttonPosition = root.mapFromItem(volumeButtonContainer, volumeButton.x, 0)
var sliderHeight = 200
var props = {}
props["x"] = buttonPosition.x
props["y"] = buttonPosition.y - sliderHeight
props["height"] = sliderHeight
var sliderPane = volumeSliderPaneComponent.createObject(root, props)
sliderPane.open()
}
}
}
Component {
id: volumeSliderPaneComponent
Dialog {
id: volumeSliderDialog
leftPadding: 0
topPadding: app.margins / 2
rightPadding: 0
bottomPadding: app.margins / 2
modal: true
property int pendingVolumeValue: -1
contentItem: ColumnLayout {
HeaderButton {
visible: root.volumeState === null
imageSource: "qrc:/icons/up.svg"
onClicked: engine.thingManager.executeAction(root.thing.id, root.thing.thingClass.actionTypes.findByName("increaseVolume").id);
}
HeaderButton {
visible: root.volumeState === null
imageSource: "qrc:/icons/down.svg"
onClicked: engine.thingManager.executeAction(root.thing.id, root.thing.thingClass.actionTypes.findByName("decreaseVolume").id);
}
ThrottledSlider {
Layout.fillHeight: true
visible: root.volumeState !== null
from: 0
to: 100
value: root.volumeState.value
orientation: Qt.Vertical
onMoved: engine.thingManager.executeAction(root.thing.id, root.volumeState.stateTypeId, [{paramTypeId: root.volumeState.stateTypeId, value: value}])
}
HeaderButton {
visible: root.muteState !== null
imageSource: "qrc:/icons/audio-speakers-muted-symbolic.svg"
color: root.muteState.value === true ? Style.accentColor : Style.iconColor
onClicked: engine.thingManager.executeAction(root.thing.id, root.muteState.stateTypeId, [{paramTypeId: root.muteState.stateTypeId, value: !root.muteState.value}]);
}
}
}
}
}