diff --git a/src/Bar.qml b/src/Bar.qml index e08cc15..1dc5cf9 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -2,6 +2,8 @@ import Quickshell // for ShellRoot and PanelWindow import QtQuick // for Text import Quickshell.Io // for process import "windows" +import QtQuick.Layouts +import "systray" Scope { Variants { @@ -26,13 +28,19 @@ Scope { // TODO: on click open a calendar view ClockWidget { id: clock - anchors.horizontalCenter: parent.horizontalCenter + Layout.alignment: Qt.AlignTop } AudioOutput { + id: audio popupAnchor: root anchors.top: clock.bottom - anchors.horizontalCenter: parent.horizontalCenter + Layout.alignment: Qt.AlignTop + } + + SysTray { + anchors.top: audio.bottom + Layout.alignment: Qt.AlignTop } } } diff --git a/src/shell.qml b/src/shell.qml index 5b28345..bb16e3e 100644 --- a/src/shell.qml +++ b/src/shell.qml @@ -1,3 +1,5 @@ +//@ pragma UseQApplication + import Quickshell // for ShellRoot and PanelWindow diff --git a/src/systray/SysTray.qml b/src/systray/SysTray.qml new file mode 100644 index 0000000..08d6061 --- /dev/null +++ b/src/systray/SysTray.qml @@ -0,0 +1,40 @@ +import QtQuick +import QtQuick.Layouts +import QtQuick.Controls +import Quickshell +import Quickshell.Services.SystemTray + +Rectangle { + id: aoutput + width: parent.width + height: 100 + anchors.bottomMargin: 5 + anchors.topMargin: 5 + border.color: "black" + border.width: 2 + radius: 5 + + ScrollView { + anchors.fill: parent + contentWidth: availableWidth + padding: parent.border.width + + ScrollBar.horizontal.policy: ScrollBar.AlwaysOff + ScrollBar.vertical.policy: ScrollBar.AlwaysOff + + ColumnLayout { + anchors.fill: parent + anchors.margins: 4 + + Repeater { + // Show all sources, regardless of what sink they are assigned to + model: SystemTray.items + + SysTrayItem { + required property SystemTrayItem modelData + item: modelData + } + } + } + } +} diff --git a/src/systray/SysTrayItem.qml b/src/systray/SysTrayItem.qml new file mode 100644 index 0000000..9fb988e --- /dev/null +++ b/src/systray/SysTrayItem.qml @@ -0,0 +1,67 @@ +import Quickshell.Services.SystemTray +import QtQuick +import QtQuick.Layouts +import Quickshell + +MouseArea { + required property SystemTrayItem item + Layout.fillWidth: true + Layout.preferredHeight: parent.width + + onClicked: event => { + switch (event.button) { + case Qt.LeftButton: + item.activate(); + break; + default: + console.log("Buttonevent unhandled"); + } + } + + Rectangle { + Layout.fillWidth: true + Layout.preferredHeight: parent.width + + Layout.alignment: Qt.AlignHCenter + color: "black" + radius: 3 + + Component.onCompleted: () => { + console.log(JSON.stringify(Object.entries(item), null, 2)); + console.log(height, width); + } + + //height: icon.height + //width: icon.width + + height: width + + width: parent.width + + // Text { + //text: item.id + //} + // + + Image { + id: icon + source: item.icon + + //fillMode: Image.PreserveAspectFit + + //Layout.fillWidth: true + + width: parent.width + height: parent.height + //Layout.maximumWidth: parent.width + //Layout.maximumHeight: parent.height + + //sourceSize.width: parent.width + //sourceSize.height: parent.height + // + //horizontalAlignment: Image.AlignHCenter + //verticalAlignment: Image.AlignVCenter + fillMode: Image.Stretch + } + } +} diff --git a/src/windows/AudioEntry.qml b/src/windows/AudioEntry.qml index 3e1f51d..245664d 100644 --- a/src/windows/AudioEntry.qml +++ b/src/windows/AudioEntry.qml @@ -32,7 +32,6 @@ RowLayout { ColumnLayout { RowLayout { - id: b spacing: 6 Layout.preferredHeight: 30