feat: make audio manager closable when clicking anywhere
This commit is contained in:
parent
37cc9423d7
commit
1b55777da1
1 changed files with 68 additions and 57 deletions
|
@ -11,86 +11,97 @@ PopupWindow {
|
|||
id: audioman
|
||||
anchor {
|
||||
rect.x: lbar.width * 1.2
|
||||
rect.y: lbar.width * 0.2
|
||||
window: lbar
|
||||
}
|
||||
|
||||
//gravity: Edges.Bottom | Edges.Right
|
||||
|
||||
color: "transparent"
|
||||
width: 500
|
||||
height: 600
|
||||
width: screen?.width ?? display.width
|
||||
height: screen?.height ?? display.height
|
||||
visible: false
|
||||
|
||||
property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0]
|
||||
|
||||
BRectangle {
|
||||
id: bn
|
||||
|
||||
//color: "transparent"
|
||||
|
||||
Image {
|
||||
id: background
|
||||
//anchors.margins: parent.border.width
|
||||
anchors.fill: parent
|
||||
source: audioman.player?.trackArtUrl
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
visible: true
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onClicked: () => {
|
||||
console.log("clicked");
|
||||
audioman.visible = false;
|
||||
}
|
||||
|
||||
MultiEffect {
|
||||
autoPaddingEnabled: false
|
||||
source: background
|
||||
anchors.fill: background
|
||||
blurEnabled: true
|
||||
blurMax: 64
|
||||
blurMultiplier: 2
|
||||
blur: 1
|
||||
brightness: -0.15
|
||||
}
|
||||
BRectangle {
|
||||
id: display
|
||||
|
||||
ScrollView {
|
||||
id: test
|
||||
anchors.fill: parent
|
||||
contentWidth: availableWidth
|
||||
x: lbar.width * 1.2
|
||||
y: lbar.height * 0.2
|
||||
|
||||
ColumnLayout {
|
||||
id: p
|
||||
// BUG: We access nodes before they are initialized
|
||||
width: 500
|
||||
height: 600
|
||||
|
||||
Image {
|
||||
id: background
|
||||
//anchors.margins: parent.border.width
|
||||
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 {
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
Label {
|
||||
text: audioman.player.trackTitle
|
||||
id: p
|
||||
// BUG: We access nodes before they are initialized
|
||||
anchors.fill: parent
|
||||
anchors.margins: 10
|
||||
|
||||
ColumnLayout {
|
||||
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 {
|
||||
source: audioman.player.trackArtUrl
|
||||
sourceSize.width: 300
|
||||
sourceSize.height: 300
|
||||
Layout.alignment: Qt.AlignHCenter
|
||||
OutputSelector {}
|
||||
|
||||
Rectangle {
|
||||
height: 2
|
||||
color: "black"
|
||||
Layout.fillWidth: true
|
||||
radius: 10
|
||||
}
|
||||
}
|
||||
|
||||
OutputSelector {}
|
||||
Repeater {
|
||||
model: Pipewire.nodes.values.filter(e => e.isStream)
|
||||
|
||||
Rectangle {
|
||||
height: 2
|
||||
color: "black"
|
||||
Layout.fillWidth: true
|
||||
radius: 10
|
||||
}
|
||||
|
||||
Repeater {
|
||||
model: Pipewire.nodes.values.filter(e => e.isStream)
|
||||
|
||||
AudioEntry {
|
||||
required property PwNode modelData
|
||||
node: modelData
|
||||
AudioEntry {
|
||||
required property PwNode modelData
|
||||
node: modelData
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue