feat: make audio manager closable when clicking anywhere

This commit is contained in:
Nydragon 2024-09-27 19:41:11 +02:00
parent 37cc9423d7
commit 1b55777da1
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g

View file

@ -11,86 +11,97 @@ PopupWindow {
id: audioman id: audioman
anchor { anchor {
rect.x: lbar.width * 1.2 rect.x: lbar.width * 1.2
rect.y: lbar.width * 0.2
window: lbar window: lbar
} }
//gravity: Edges.Bottom | Edges.Right //gravity: Edges.Bottom | Edges.Right
color: "transparent" color: "transparent"
width: 500 width: screen?.width ?? display.width
height: 600 height: screen?.height ?? display.height
visible: false visible: false
property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0] property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0]
BRectangle { MouseArea {
id: bn anchors.fill: parent
onClicked: () => {
//color: "transparent" console.log("clicked");
audioman.visible = false;
Image {
id: background
//anchors.margins: parent.border.width
anchors.fill: parent
source: audioman.player?.trackArtUrl
Layout.alignment: Qt.AlignHCenter
visible: true
} }
MultiEffect { BRectangle {
autoPaddingEnabled: false id: display
source: background
anchors.fill: background
blurEnabled: true
blurMax: 64
blurMultiplier: 2
blur: 1
brightness: -0.15
}
ScrollView { x: lbar.width * 1.2
id: test y: lbar.height * 0.2
anchors.fill: parent
contentWidth: availableWidth
ColumnLayout { width: 500
id: p height: 600
// BUG: We access nodes before they are initialized
Image {
id: background
//anchors.margins: parent.border.width
anchors.fill: parent anchors.fill: parent
anchors.margins: 10 source: audioman.player?.trackArtUrl
Layout.alignment: Qt.AlignHCenter
visible: true
}
MultiEffect {
autoPaddingEnabled: false
source: background
anchors.fill: background
blurEnabled: true
blurMax: 64
blurMultiplier: 2
blur: 1
brightness: -0.15
}
ScrollView {
id: test
anchors.fill: parent
contentWidth: availableWidth
ColumnLayout { ColumnLayout {
Layout.alignment: Qt.AlignHCenter id: p
Label { // BUG: We access nodes before they are initialized
text: audioman.player.trackTitle anchors.fill: parent
anchors.margins: 10
ColumnLayout {
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
color: "white" Label {
text: audioman.player.trackTitle
Layout.alignment: Qt.AlignHCenter
color: "white"
}
Image {
source: audioman.player.trackArtUrl
sourceSize.width: 300
sourceSize.height: 300
Layout.alignment: Qt.AlignHCenter
}
} }
Image { OutputSelector {}
source: audioman.player.trackArtUrl
sourceSize.width: 300 Rectangle {
sourceSize.height: 300 height: 2
Layout.alignment: Qt.AlignHCenter color: "black"
Layout.fillWidth: true
radius: 10
} }
}
OutputSelector {} Repeater {
model: Pipewire.nodes.values.filter(e => e.isStream)
Rectangle { AudioEntry {
height: 2 required property PwNode modelData
color: "black" node: modelData
Layout.fillWidth: true }
radius: 10
}
Repeater {
model: Pipewire.nodes.values.filter(e => e.isStream)
AudioEntry {
required property PwNode modelData
node: modelData
} }
} }
} }