feat: add systray context menus

This commit is contained in:
Nydragon 2024-09-07 22:00:44 +02:00
parent 25f7c1ed6c
commit b0ceb423d9
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
6 changed files with 21 additions and 12 deletions

View file

@ -20,11 +20,8 @@ BRectangle {
objects: [audiow.sink] objects: [audiow.sink]
} }
required property var popupAnchor
AudioManager { AudioManager {
id: audioman id: audioman
anchor.window: audiow.popupAnchor
} }
MouseArea { MouseArea {

View file

@ -11,7 +11,7 @@ Scope {
model: Quickshell.screens model: Quickshell.screens
// the screen from the screens list will be injected into this property // the screen from the screens list will be injected into this property
PanelWindow { PanelWindow {
id: root id: lbar
property var modelData property var modelData
screen: modelData screen: modelData
@ -33,9 +33,7 @@ Scope {
// TODO: on click open a calendar view // TODO: on click open a calendar view
ClockWidget {} ClockWidget {}
AudioOutput { AudioOutput {}
popupAnchor: root
}
SysTray {} SysTray {}

View file

@ -17,16 +17,16 @@ BRectangle {
width: parent.width * 4 / 5 width: parent.width * 4 / 5
height: parent.height height: parent.height
anchors.right: parent.right anchors.right: parent.right
percentage: UPower.displayDevice.healthPercentage percentage: UPower.displayDevice?.healthPercentage ?? 0
visible: UPower.displayDevice.healthSupported visible: UPower.displayDevice?.healthSupported ?? false
} }
Pill { Pill {
id: battery id: battery
width: parent.width * (!UPower.displayDevice.healthSupported || 3 / 5) width: parent.width * (!UPower.displayDevice?.healthSupported || 3 / 5)
height: parent.height height: parent.height
anchors.left: parent.left anchors.left: parent.left
percentage: UPower.displayDevice.percentage percentage: UPower.displayDevice?.percentage ?? 0
color: 100 * percentage / 360 color: 100 * percentage / 360
} }
} }

View file

@ -1,23 +1,36 @@
import Quickshell.Services.SystemTray import Quickshell.Services.SystemTray
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import Quickshell
MouseArea { MouseArea {
id: root id: root
required property SystemTrayItem item required property SystemTrayItem item
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: parent.width Layout.preferredHeight: parent.width
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked: event => { onClicked: event => {
switch (event.button) { switch (event.button) {
case Qt.LeftButton: case Qt.LeftButton:
item.activate(); item.activate();
break; break;
case Qt.RightButton:
if (!item.hasMenu)
return;
menu.open();
break;
default: default:
console.log("Buttonevent unhandled"); console.log("Buttonevent unhandled");
} }
} }
QsMenuAnchor {
id: menu
menu: root.item.menu
anchor.window: lbar
}
Rectangle { Rectangle {
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: parent.width Layout.preferredHeight: parent.width

View file

@ -65,7 +65,7 @@ RowLayout {
} }
Button { Button {
property bool isDefault: root.node.id === Pipewire.defaultAudioSink.id property bool isDefault: root.node?.id === Pipewire.defaultAudioSink?.id
checked: isDefault checked: isDefault
checkable: false checkable: false
visible: root.node.isSink visible: root.node.isSink

View file

@ -8,6 +8,7 @@ PopupWindow {
anchor { anchor {
rect.x: 30 rect.x: 30
rect.y: 20 rect.y: 20
window: lbar
} }
color: "transparent" color: "transparent"