feat: make audio output into button and improve weather exit process

This commit is contained in:
Nydragon 2024-11-24 12:26:02 +01:00
parent e9a621dbaa
commit 162ebbbea4
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 53 additions and 61 deletions

View file

@ -10,7 +10,7 @@ import "base"
// - adjust sink & source volume
// - mute sinks & sources
BRectangle {
BButton {
id: audiow
height: (icon.height + slider.height) * 1.5
@ -20,68 +20,61 @@ BRectangle {
objects: [audiow.sink]
}
AudioManager {
id: audioman
property AudioManager audioman: AudioManager {}
onClicked: {
audioman.visible = !audioman.visible;
}
MouseArea {
id: audio_area
onWheel: wheel => {
const newVal = audiow.sink.audio.volume + (wheel.angleDelta.y / 12000);
audiow.sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
}
anchors.fill: parent
Rectangle {
width: parent.width
color: "transparent"
onClicked: {
audioman.visible = !audioman.visible;
height: icon.height + slider.height
anchors.verticalCenter: parent.verticalCenter
// TODO: Make icon depend on sink type and volume level
Image {
id: icon
source: "root:/assets/speaker.png"
width: parent.width * (2 / 3)
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
}
onWheel: wheel => {
const newVal = audiow.sink.audio.volume + (wheel.angleDelta.y / 12000);
audiow.sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
}
Slider {
id: slider
anchors.top: icon.bottom
anchors.horizontalCenter: parent.horizontalCenter
height: background.height
width: parent.width * 0.75
Rectangle {
width: parent.width
color: "transparent"
enabled: false
value: audiow.sink?.audio.volume ?? 0
stepSize: 0.01
height: icon.height + slider.height
anchors.verticalCenter: parent.verticalCenter
// TODO: Make icon depend on sink type and volume level
Image {
id: icon
source: "root:/assets/speaker.png"
width: parent.width * (2 / 3)
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
contentItem: Rectangle {
color: "#3191CD" // Change color based on value
radius: 5
width: slider.width * (slider.value / slider.to)
height: parent.height
}
Slider {
id: slider
anchors.top: icon.bottom
anchors.horizontalCenter: parent.horizontalCenter
height: background.height
width: parent.width * 0.75
enabled: false
value: audiow.sink?.audio.volume ?? 0
stepSize: 0.01
contentItem: Rectangle {
color: "#3191CD" // Change color based on value
radius: 5
width: slider.width * (slider.value / slider.to)
height: parent.height
}
background: Rectangle {
color: "#C4C4C4"
radius: 5
height: 4
anchors.bottomMargin: 5
anchors.topMargin: 5
}
handle: Rectangle {}
background: Rectangle {
color: "#C4C4C4"
radius: 5
height: 4
anchors.bottomMargin: 5
anchors.topMargin: 5
}
handle: Rectangle {}
}
}
}

View file

@ -45,7 +45,10 @@ PanelWindow {
// TODO: on click open a calendar view
ClockWidget {}
AudioOutput {}
AudioOutput {
width: parent.width
height: parent.width * 1.2
}
SysTray {}

View file

@ -13,7 +13,7 @@ Item {
Component.onCompleted: {
I3.focusedMonitorChanged.connect(e => {
dash.focused = I3.monitorFor(root.screen)?.focused;
dash.focused = I3.monitorFor(root.screen)?.focused ?? false;
});
}

View file

@ -57,13 +57,9 @@ Singleton {
weather.dataRaw += e;
}
}
onRunningChanged: {
if (running) {
weather.dataRaw = "";
}
if (!running) {
weather.lastFetch = JSON.parse(weather.dataRaw);
}
onExited: (code, status) => {
weather.lastFetch = JSON.parse(weather.dataRaw);
weather.dataRaw = "";
}
}