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
|
||||
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
|
||||
MouseArea {
|
||||
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 {
|
||||
id: background
|
||||
|
@ -97,3 +107,4 @@ PopupWindow {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue