feat: add mouseregion for audio scrolling and volume icon

Volume icon is temporary and from flaticon
This commit is contained in:
Nydragon 2024-08-24 23:04:56 +02:00
parent 34f99e0165
commit e939c8e84f
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 51 additions and 19 deletions

View file

@ -9,27 +9,58 @@ import Quickshell.Services.Pipewire
// - adjust sink & source volume // - adjust sink & source volume
// - mute sinks & sources // - mute sinks & sources
MouseArea { // BUG: When controlling audio from outside of QS, the change is reflected, but if audio in pavucontrol is not 100%
// QS can only change from 0 to whatever is set in pavucontrol
Rectangle {
id: test
width: parent.width
height: (icon.height + slider.height) * 1.5
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
property PwNode sink: Pipewire.defaultAudioSink property PwNode sink: Pipewire.defaultAudioSink
MouseArea {
id: audio_area
anchors.fill: parent
onClicked: {}
onWheel: {
const newVal = sink.audio.volume + (wheel.angleDelta.y / 12000);
sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
}
PwObjectTracker { PwObjectTracker {
objects: [sink] objects: [sink]
} }
ColumnLayout { Rectangle {
width: parent.width
color: "#00000000"
height: icon.height + slider.height
anchors.verticalCenter: parent.verticalCenter
// TODO: Make icon depend on sink type and volume level
Image {
id: icon
source: "speaker.png"
width: parent.width * (2 / 3)
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
Text {
id: label
text: `${Math.round(sink.audio.volume * 100)}%`
Layout.alignment: Qt.AlignHCenter
} }
Slider { Slider {
id: slider id: slider
anchors.top: icon.bottom
anchors.horizontalCenter: parent.horizontalCenter
// BUG: For some reason need to hardcode the width as it is overflowing otherwise width: parent.width - 5
Layout.maximumWidth: 25
value: sink.audio.volume value: sink.audio.volume
stepSize: 0.01 stepSize: 0.01
@ -38,4 +69,5 @@ MouseArea {
onMoved: sink.audio.volume = value onMoved: sink.audio.volume = value
} }
} }
}
} }

BIN
src/speaker.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB