chore: restructure src and move rectangle style to a dedicated file

This commit is contained in:
Nydragon 2024-08-28 00:12:17 +02:00
parent 30badd864e
commit d91add5655
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
10 changed files with 49 additions and 49 deletions

View file

@ -3,22 +3,17 @@ import QtQuick.Layouts
import QtQuick.Controls import QtQuick.Controls
import Quickshell import Quickshell
import Quickshell.Services.Pipewire import Quickshell.Services.Pipewire
import "windows" import "windows/audioman"
import "base"
// TODO: on click open detailed sink options: // TODO: on click open detailed sink options:
// - select default sink // - select default sink
// - adjust sink & source volume // - adjust sink & source volume
// - mute sinks & sources // - mute sinks & sources
Rectangle { BRectangle {
id: aoutput id: aoutput
width: parent.width
height: (icon.height + slider.height) * 1.5 height: (icon.height + slider.height) * 1.5
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
property PwNode sink: Pipewire.defaultAudioSink property PwNode sink: Pipewire.defaultAudioSink

View file

@ -3,7 +3,7 @@ import QtQuick // for Text
import Quickshell.Io // for process import Quickshell.Io // for process
import "windows" import "windows"
import QtQuick.Layouts import QtQuick.Layouts
import "systray" import "widgets/systray"
import "widgets/workspaces" import "widgets/workspaces"
Scope { Scope {

View file

@ -1,15 +1,10 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import "provider" import "provider"
import "base"
Rectangle { BRectangle {
width: parent.width
height: clock.height * 1.5 height: clock.height * 1.5
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
Rectangle { Rectangle {
id: clock id: clock

11
src/base/BRectangle.qml Normal file
View file

@ -0,0 +1,11 @@
import QtQuick
Rectangle {
width: parent.width
height: parent.height
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
}

View file

@ -3,15 +3,10 @@ import QtQuick.Layouts
import QtQuick.Controls import QtQuick.Controls
import Quickshell import Quickshell
import Quickshell.Services.SystemTray import Quickshell.Services.SystemTray
import "root:base"
Rectangle { BRectangle {
width: parent.width
height: 100 height: 100
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
ScrollView { ScrollView {
anchors.fill: parent anchors.fill: parent

View file

@ -1,20 +1,23 @@
import Quickshell import Quickshell
import Quickshell.Io
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
Rectangle { Rectangle {
id: elem id: elem
required property int workspaceNum
required property int activeWorkspaceNum required property bool focused
property bool focused: active required property int wnum
property bool active: workspaceNum == activeWorkspaceNum
property int focusedMargin: 3 property bool hovered: false
property int margin: (focused || active) ? focusedMargin : 5 property bool active: focused || hovered
property int activeMargin: 3
property int inactiveMargin: 5
Layout.fillHeight: true Layout.fillHeight: true
Layout.fillWidth: true Layout.fillWidth: true
Layout.rightMargin: margin Layout.rightMargin: inactiveMargin
Layout.leftMargin: margin Layout.leftMargin: inactiveMargin
color: "black" color: "black"
radius: 10 radius: 10
@ -24,21 +27,29 @@ Rectangle {
hoverEnabled: true hoverEnabled: true
onEntered: () => { onEntered: () => {
elem.focused = true; elem.hovered = true;
} }
onExited: () => { onExited: () => {
elem.focused = active ?? false; elem.hovered = false;
} }
onClicked: () => {
switcher.running = true;
}
}
Process {
id: switcher
command: ["swaymsg", "workspace", `${wnum}`]
} }
states: State { states: State {
name: "focused" name: "focused"
when: focused || active when: active
PropertyChanges { PropertyChanges {
target: elem target: elem
Layout.rightMargin: focusedMargin Layout.rightMargin: activeMargin
Layout.leftMargin: focusedMargin Layout.leftMargin: activeMargin
} }
} }

View file

@ -2,18 +2,13 @@ import Quickshell
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import Quickshell.Io // for Process import Quickshell.Io // for Process
import "root:base"
Rectangle { BRectangle {
id: workspaces id: workspaces
property int workspaceN: 10 property int workspaceN: 10
width: parent.width property int activeN: 1
height: 100 + col.spacing * (workspaceN - 1) height: 100 + col.spacing * (workspaceN - 1)
anchors.bottomMargin: 5
anchors.topMargin: 5
border.color: "black"
border.width: 2
radius: 5
ColumnLayout { ColumnLayout {
id: col id: col
@ -33,21 +28,19 @@ Rectangle {
onRead: data => { onRead: data => {
const parsed = JSON.parse(data); const parsed = JSON.parse(data);
if (parsed.change == "focus") { if (parsed.change == "focus") {
col.work = parsed.current.num; workspaces.activeN = parsed.current.num;
} }
} }
} }
} }
property int work: 1
Repeater { Repeater {
model: workspaceN model: workspaceN
WorkspaceElem { WorkspaceElem {
required property int modelData required property int modelData
workspaceNum: modelData + 1 wnum: modelData + 1
activeWorkspaceNum: col.work focused: activeN === (modelData + 1)
} }
} }
} }