feat: add mouseregion for audio scrolling and volume icon
Volume icon is temporary and from flaticon
This commit is contained in:
parent
34f99e0165
commit
e939c8e84f
2 changed files with 51 additions and 19 deletions
|
@ -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
|
||||||
|
@ -39,3 +70,4 @@ MouseArea {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
BIN
src/speaker.png
Normal file
BIN
src/speaker.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Add table
Reference in a new issue