diff options
| author | AlexanderCurl <alexc@alexc.hu> | 2026-04-18 17:46:06 +0100 |
|---|---|---|
| committer | AlexanderCurl <alexc@alexc.hu> | 2026-04-18 17:46:06 +0100 |
| commit | 70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69 (patch) | |
| tree | ab1123d4067c1b086dd6faa7ee4ea643236b565a /raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml | |
| parent | 5d94c0a7d44a2255b81815a52a7056a94a39842d (diff) | |
| download | RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.tar.gz RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.zip | |
Replaced file structures for themes in the correct format
Diffstat (limited to 'raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml')
| -rw-r--r-- | raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml | 522 |
1 files changed, 0 insertions, 522 deletions
diff --git a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml b/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml deleted file mode 100644 index 34cd51a..0000000 --- a/raveos-theme/hyprland/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml +++ /dev/null @@ -1,522 +0,0 @@ -import QtQuick -import qs.Common -import qs.Modules.Settings - -FocusScope { - id: root - - LayoutMirroring.enabled: I18n.isRtl - LayoutMirroring.childrenInherit: true - - property int currentIndex: 0 - property var parentModal: null - - focus: true - - Rectangle { - anchors.fill: parent - anchors.leftMargin: Theme.spacingS - anchors.rightMargin: (parentModal && parentModal.isCompactMode) ? Theme.spacingS : (32 + Theme.spacingS) - anchors.bottomMargin: 0 - anchors.topMargin: 0 - color: "transparent" - - Loader { - id: wallpaperLoader - anchors.fill: parent - active: root.currentIndex === 0 - visible: active - focus: active - - sourceComponent: Component { - WallpaperTab { - parentModal: root.parentModal - } - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: timeWeatherLoader - anchors.fill: parent - active: root.currentIndex === 1 - visible: active - focus: active - - sourceComponent: TimeWeatherTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: keybindsLoader - anchors.fill: parent - active: root.currentIndex === 2 - visible: active - focus: active - - sourceComponent: KeybindsTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: topBarLoader - anchors.fill: parent - active: root.currentIndex === 3 - visible: active - focus: active - - sourceComponent: DankBarTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: workspacesLoader - anchors.fill: parent - active: root.currentIndex === 4 - visible: active - focus: active - - sourceComponent: WorkspacesTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: dockLoader - anchors.fill: parent - active: root.currentIndex === 5 - visible: active - focus: active - - sourceComponent: Component { - DockTab {} - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: displayConfigLoader - anchors.fill: parent - active: root.currentIndex === 24 - visible: active - focus: active - - sourceComponent: DisplayConfigTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: gammaControlLoader - anchors.fill: parent - active: root.currentIndex === 25 - visible: active - focus: active - - sourceComponent: GammaControlTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: displayWidgetsLoader - anchors.fill: parent - active: root.currentIndex === 26 - visible: active - focus: active - - sourceComponent: DisplayWidgetsTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: networkLoader - anchors.fill: parent - active: root.currentIndex === 7 - visible: active - focus: active - - sourceComponent: NetworkTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: printerLoader - anchors.fill: parent - active: root.currentIndex === 8 - visible: active - focus: active - - sourceComponent: PrinterTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: launcherLoader - anchors.fill: parent - active: root.currentIndex === 9 - visible: active - focus: active - - sourceComponent: LauncherTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: themeColorsLoader - anchors.fill: parent - active: root.currentIndex === 10 - visible: active - focus: active - - sourceComponent: ThemeColorsTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: lockScreenLoader - anchors.fill: parent - active: root.currentIndex === 11 - visible: active - focus: active - - sourceComponent: LockScreenTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: greeterLoader - anchors.fill: parent - active: root.currentIndex === 31 - visible: active - focus: active - - sourceComponent: GreeterTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: pluginsLoader - anchors.fill: parent - active: root.currentIndex === 12 - visible: active - focus: active - - sourceComponent: PluginsTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: aboutLoader - anchors.fill: parent - active: root.currentIndex === 13 - visible: active - focus: active - - sourceComponent: AboutTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: typographyMotionLoader - anchors.fill: parent - active: root.currentIndex === 14 - visible: active - focus: active - - sourceComponent: TypographyMotionTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: soundsLoader - anchors.fill: parent - active: root.currentIndex === 15 - visible: active - focus: active - - sourceComponent: SoundsTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: mediaPlayerLoader - anchors.fill: parent - active: root.currentIndex === 16 - visible: active - focus: active - - sourceComponent: MediaPlayerTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: notificationsLoader - anchors.fill: parent - active: root.currentIndex === 17 - visible: active - focus: active - - sourceComponent: NotificationsTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: osdLoader - anchors.fill: parent - active: root.currentIndex === 18 - visible: active - focus: active - - sourceComponent: OSDTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: runningAppsLoader - anchors.fill: parent - active: root.currentIndex === 19 - visible: active - focus: active - - sourceComponent: RunningAppsTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: systemUpdaterLoader - anchors.fill: parent - active: root.currentIndex === 20 - visible: active - focus: active - - sourceComponent: SystemUpdaterTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: powerSleepLoader - anchors.fill: parent - active: root.currentIndex === 21 - visible: active - focus: active - - sourceComponent: PowerSleepTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: widgetsLoader - anchors.fill: parent - active: root.currentIndex === 22 - visible: active - focus: active - - sourceComponent: WidgetsTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: clipboardLoader - anchors.fill: parent - active: root.currentIndex === 23 - visible: active - focus: active - - sourceComponent: ClipboardTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: desktopWidgetsLoader - anchors.fill: parent - active: root.currentIndex === 27 - visible: active - focus: active - - sourceComponent: DesktopWidgetsTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: windowRulesLoader - anchors.fill: parent - active: root.currentIndex === 28 - visible: active - focus: active - - sourceComponent: WindowRulesTab { - parentModal: root.parentModal - } - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: audioLoader - anchors.fill: parent - active: root.currentIndex === 29 - visible: active - focus: active - - sourceComponent: AudioTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: localeLoader - anchors.fill: parent - active: root.currentIndex === 30 - visible: active - focus: active - - sourceComponent: LocaleTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - - Loader { - id: muxLoader - anchors.fill: parent - active: root.currentIndex === 32 - visible: active - focus: active - - sourceComponent: MuxTab {} - - onActiveChanged: { - if (active && item) - Qt.callLater(() => item.forceActiveFocus()); - } - } - } -} |