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,23 +11,33 @@ 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: () => {
|
||||||
|
console.log("clicked");
|
||||||
|
audioman.visible = false;
|
||||||
|
}
|
||||||
|
|
||||||
//color: "transparent"
|
BRectangle {
|
||||||
|
id: display
|
||||||
|
|
||||||
|
x: lbar.width * 1.2
|
||||||
|
y: lbar.height * 0.2
|
||||||
|
|
||||||
|
width: 500
|
||||||
|
height: 600
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
id: background
|
id: background
|
||||||
|
@ -97,3 +107,4 @@ PopupWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue