From 9549bd50be3ba39fa9f5ddea0ab9599803d0b18a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Sun, 10 Nov 2024 22:25:08 +0100 Subject: [PATCH] feat: add test workspace overview --- src/Bar.qml | 4 + src/windows/workspace-view/WorkspaceView.qml | 79 ++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 src/windows/workspace-view/WorkspaceView.qml diff --git a/src/Bar.qml b/src/Bar.qml index d8251ff..0df8c9c 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -9,6 +9,7 @@ import "widgets/network" import "widgets/notifcenter" import "widgets/caffeine" import "windows/notificationtoast" +import "windows/workspace-view" Scope { Variants { @@ -33,6 +34,9 @@ Scope { NotificationToasts { win: lbar } + + WorkspaceView {} + ColumnLayout { anchors.fill: parent diff --git a/src/windows/workspace-view/WorkspaceView.qml b/src/windows/workspace-view/WorkspaceView.qml new file mode 100644 index 0000000..3ad8772 --- /dev/null +++ b/src/windows/workspace-view/WorkspaceView.qml @@ -0,0 +1,79 @@ +import Quickshell +import QtQuick +import Quickshell.Io +import Quickshell.I3 +import QtQuick.Layouts + +PanelWindow { + id: workspaceView + + IpcHandler { + target: "workspace-view" + + function toggle() { + workspaceView.visible = !workspaceView.visible; + } + } + + focusable: true + + GridLayout { + id: content + + anchors.centerIn: parent + width: 1000 + height: 400 + anchors.margins: 4 + columns: 5 + + Repeater { + id: rep + model: 10 + delegate: MouseArea { + id: rec + Layout.fillWidth: true + Layout.fillHeight: true + required property var modelData + hoverEnabled: true + + onEntered: () => c.border.width = 30 + onExited: () => { + c.border.width = 1; + } + + Rectangle { + id: c + anchors.fill: parent + Text { + id: name + text: rec.modelData + 1 + anchors.centerIn: parent + font.pointSize: 30 + color: I3.workspaces.values.find(e => e.name == rec.modelData + 1) ? "red" : Qt.rgba(0.96, 0.15, 0.56, 0.55) + } + border.color: Qt.rgba(0.96, 0.15, 0.56, 0.55) + border.width: 1 + radius: 5 + color: Qt.rgba(0, 0, 0, 0.75) + } + onClicked: () => I3.dispatch(`workspace ${rec.modelData + 1}`) + } + } + + Component.onCompleted: () => { + const qs = "/nix/store/78nmm1gzgwfvqgj4pmzi4dgjjzyh8amn-quickshell-0.1.0/bin/quickshell"; + const conf = "~/devel/projects/nysh/src/shell.qml"; + I3.dispatch(`bindsym Mod4+M exec "${qs} -p ${conf} msg workspace-view toggle"`); + } + } + + color: "transparent" + + width: content?.width ?? 500 + height: content?.height ?? 500 + visible: true + + Component.onCompleted: () => { + I3.focusedWorkspaceChanged.connect(() => workspaceView.visible = false); + } +}