diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-15 12:12:56 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-15 12:12:56 +0200 |
| commit | 48e7b7b75971b3932c30053a56c3b00f63233bd7 (patch) | |
| tree | 0b627506fc7658a7b9fbde423f57dbc666728c02 /desktop/modules/status/StatusRow.qml | |
| parent | e78962e28eafb2cb0b1bf8304dd1e0c4936044cf (diff) | |
| download | quickshell-48e7b7b75971b3932c30053a56c3b00f63233bd7.tar.gz quickshell-48e7b7b75971b3932c30053a56c3b00f63233bd7.zip | |
feat(desktop): add the status module, tile and row
The module is thin because the singleton owns the modes: it is a tile and
a page over Status, always active so the effects hold whether or not the
drawer has been opened.
Injected as st rather than mod, since a component property named the same
as the enclosing object's id binds to itself and arrives undefined.
Diffstat (limited to 'desktop/modules/status/StatusRow.qml')
| -rw-r--r-- | desktop/modules/status/StatusRow.qml | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/desktop/modules/status/StatusRow.qml b/desktop/modules/status/StatusRow.qml new file mode 100644 index 0000000..c342e2b --- /dev/null +++ b/desktop/modules/status/StatusRow.qml @@ -0,0 +1,56 @@ +// Copyright (C) 2026 Danilo M. <danix@danix.xyz> +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License version 2 as +// published by the Free Software Foundation. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +import QtQuick +import "../.." + +// One mode: a label, a line saying what it does, and a switch. +Item { + id: row + + required property string mode + required property string label + required property string description + required property bool value + + implicitHeight: Math.max(texts.implicitHeight, sw.implicitHeight) + 16 + + Column { + id: texts + anchors { + left: parent.left + right: sw.left; rightMargin: 12 + verticalCenter: parent.verticalCenter + } + spacing: 2 + + Text { + text: row.label + font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 2; bold: true } + color: Theme.text + } + + Text { + width: parent.width + wrapMode: Text.WordWrap + text: row.description + font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 } + color: Theme.subtext + } + } + + Switch { + id: sw + anchors { right: parent.right; verticalCenter: parent.verticalCenter } + checked: row.value + onToggled: Status.toggleMode(row.mode) + } +} |
