summaryrefslogtreecommitdiff
path: root/modules/controlcenter/Session.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-09 17:54:16 -0500
committerATMDA <atdma2600@gmail.com>2025-11-09 17:54:16 -0500
commit5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52 (patch)
tree778ac9244f74c4100eee1bc6ee76b86e033d21b2 /modules/controlcenter/Session.qml
parent[CI] chore: update flake (diff)
downloadcaelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.gz
caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.tar.bz2
caelestia-shell-5d7151e79e04d8a6073ecb4ea4a14c5c9bdcfc52.zip
controlcenter: network and audio panels
Diffstat (limited to 'modules/controlcenter/Session.qml')
-rw-r--r--modules/controlcenter/Session.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/controlcenter/Session.qml b/modules/controlcenter/Session.qml
index a143470..b716b20 100644
--- a/modules/controlcenter/Session.qml
+++ b/modules/controlcenter/Session.qml
@@ -11,6 +11,7 @@ QtObject {
property bool navExpanded: false
readonly property Bt bt: Bt {}
+ readonly property Network network: Network {}
onActiveChanged: activeIndex = panes.indexOf(active)
onActiveIndexChanged: active = panes[activeIndex]
@@ -22,4 +23,10 @@ QtObject {
property bool fabMenuOpen
property bool editingDeviceName
}
+
+ component Network: QtObject {
+ property var active
+ property bool showPasswordDialog: false
+ property var pendingNetwork
+ }
}