diff options
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml | 522 |
1 files changed, 522 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml new file mode 100644 index 0000000..34cd51a --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/Modals/Settings/SettingsContent.qml @@ -0,0 +1,522 @@ +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()); + } + } + } +} |