aboutsummaryrefslogtreecommitdiffstats
path: root/desktop/modules/kdeconnect/KdeConnectTile.qml
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-09-14 19:13:58 +0200
committerDanilo M. <danix@danix.xyz>2026-09-14 19:13:58 +0200
commit7e89c874e83ea49a4808e037457ab7b3f50d6d89 (patch)
treef071cb549e91526bf2b6ae6afeff2dfbd8bd6cfc /desktop/modules/kdeconnect/KdeConnectTile.qml
parentc035080a9929f419941605b08c5052b35127fa2e (diff)
downloadquickshell-7e89c874e83ea49a4808e037457ab7b3f50d6d89.tar.gz
quickshell-7e89c874e83ea49a4808e037457ab7b3f50d6d89.zip
feat(desktop): KDE Connect module, tile and page
State is polled from kdeconnect-state.sh because there is no D-Bus module to subscribe with. The poll runs only while the drawer is open: the tile is created when the panel loads and destroyed when it unloads, and it flips the module's polling flag. The laptop reports no battery plugin, so an absent charge is an empty field and renders as nothing, never as a zero.
Diffstat (limited to 'desktop/modules/kdeconnect/KdeConnectTile.qml')
-rw-r--r--desktop/modules/kdeconnect/KdeConnectTile.qml45
1 files changed, 45 insertions, 0 deletions
diff --git a/desktop/modules/kdeconnect/KdeConnectTile.qml b/desktop/modules/kdeconnect/KdeConnectTile.qml
new file mode 100644
index 0000000..ae74fbc
--- /dev/null
+++ b/desktop/modules/kdeconnect/KdeConnectTile.qml
@@ -0,0 +1,45 @@
+// 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 "../.."
+
+// The state line under the tile label, and the poll's lifetime: the tile
+// exists exactly while the drawer panel is loaded, so it turns polling on and
+// off. Without this the module would poll while the drawer is closed, which
+// nothing needs.
+Item {
+ id: tile
+
+ required property var mod
+
+ width: parent ? parent.width : implicitWidth
+ implicitHeight: state.implicitHeight
+
+ Component.onCompleted: mod.polling = true
+ Component.onDestruction: mod.polling = false
+
+ Text {
+ id: state
+ width: parent.width
+ elide: Text.ElideRight
+ font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
+ color: tile.mod.anyReachable ? Theme.text : Theme.subtext
+ text: {
+ const r = tile.mod.reachable;
+ if (r.length === 1)
+ return r[0].charge !== "" ? r[0].name + " " + r[0].charge + "%" : r[0].name;
+ if (r.length > 1) return r.length + " connected";
+ if (tile.mod.paired.length > 0) return "Offline";
+ return "No devices";
+ }
+ }
+}