summaryrefslogtreecommitdiff
path: root/modules/controlcenter/dev/DevWindowTitle.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-13 20:52:09 -0500
committerATMDA <atdma2600@gmail.com>2025-11-13 20:52:09 -0500
commitf0ea26a71bb1359479c620ba3d571e129547c912 (patch)
treeb06deb81f263027deb63ff86ca267479018a21ef /modules/controlcenter/dev/DevWindowTitle.qml
parentnmcli: migrated all of ethernet controlcenter (diff)
downloadcaelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.tar.gz
caelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.tar.bz2
caelestia-shell-f0ea26a71bb1359479c620ba3d571e129547c912.zip
controlcenter: removed dev panels
Diffstat (limited to 'modules/controlcenter/dev/DevWindowTitle.qml')
-rw-r--r--modules/controlcenter/dev/DevWindowTitle.qml53
1 files changed, 0 insertions, 53 deletions
diff --git a/modules/controlcenter/dev/DevWindowTitle.qml b/modules/controlcenter/dev/DevWindowTitle.qml
deleted file mode 100644
index 9395532..0000000
--- a/modules/controlcenter/dev/DevWindowTitle.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-import "."
-import qs.components
-import qs.services
-import qs.config
-import Quickshell
-import QtQuick
-
-StyledRect {
- id: root
-
- required property ShellScreen screen
- required property DevSession session
-
- implicitHeight: text.implicitHeight + Appearance.padding.normal
- color: Colours.tPalette.m3surfaceContainer
-
- StyledText {
- id: text
-
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.bottom: parent.bottom
-
- text: qsTr("Dev Panel - %1").arg(root.session.active.slice(0, 1).toUpperCase() + root.session.active.slice(1))
- font.capitalization: Font.Capitalize
- font.pointSize: Appearance.font.size.larger
- font.weight: 500
- }
-
- Item {
- anchors.right: parent.right
- anchors.top: parent.top
- anchors.margins: Appearance.padding.normal
-
- implicitWidth: implicitHeight
- implicitHeight: closeIcon.implicitHeight + Appearance.padding.small
-
- StateLayer {
- radius: Appearance.rounding.full
-
- function onClicked(): void {
- QsWindow.window.destroy();
- }
- }
-
- MaterialIcon {
- id: closeIcon
-
- anchors.centerIn: parent
- text: "close"
- }
- }
-}
-