mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
225 lines
9.6 KiB
QML
225 lines
9.6 KiB
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
import qs.Modules.Settings.Widgets
|
|
|
|
Item {
|
|
id: root
|
|
|
|
DankFlickable {
|
|
anchors.fill: parent
|
|
clip: true
|
|
contentHeight: mainColumn.height + Theme.spacingXL
|
|
contentWidth: width
|
|
|
|
Column {
|
|
id: mainColumn
|
|
width: Math.min(550, parent.width - Theme.spacingL * 2)
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
spacing: Theme.spacingXL
|
|
|
|
SettingsCard {
|
|
width: parent.width
|
|
iconName: "view_module"
|
|
title: I18n.tr("Workspace Settings")
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Workspace Index Numbers")
|
|
description: I18n.tr("Show workspace index numbers in the top bar workspace switcher")
|
|
checked: SettingsData.showWorkspaceIndex
|
|
onToggled: checked => SettingsData.set("showWorkspaceIndex", checked)
|
|
}
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Workspace Padding")
|
|
description: I18n.tr("Always show a minimum of 3 workspaces, even if fewer are available")
|
|
checked: SettingsData.showWorkspacePadding
|
|
onToggled: checked => SettingsData.set("showWorkspacePadding", checked)
|
|
}
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Show Workspace Apps")
|
|
description: I18n.tr("Display application icons in workspace indicators")
|
|
checked: SettingsData.showWorkspaceApps
|
|
visible: CompositorService.isNiri || CompositorService.isHyprland
|
|
onToggled: checked => SettingsData.set("showWorkspaceApps", checked)
|
|
}
|
|
|
|
Row {
|
|
width: parent.width - Theme.spacingL
|
|
spacing: Theme.spacingL
|
|
visible: SettingsData.showWorkspaceApps
|
|
opacity: visible ? 1 : 0
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingL
|
|
|
|
Column {
|
|
width: 120
|
|
spacing: Theme.spacingS
|
|
|
|
StyledText {
|
|
text: I18n.tr("Max apps to show")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceText
|
|
font.weight: Font.Medium
|
|
}
|
|
|
|
DankTextField {
|
|
width: 100
|
|
height: 28
|
|
placeholderText: "#ffffff"
|
|
text: SettingsData.maxWorkspaceIcons
|
|
maximumLength: 7
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
topPadding: Theme.spacingXS
|
|
bottomPadding: Theme.spacingXS
|
|
onEditingFinished: SettingsData.set("maxWorkspaceIcons", parseInt(text, 10))
|
|
}
|
|
}
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: Theme.mediumDuration
|
|
easing.type: Theme.emphasizedEasing
|
|
}
|
|
}
|
|
}
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Per-Monitor Workspaces")
|
|
description: I18n.tr("Show only workspaces belonging to each specific monitor.")
|
|
checked: SettingsData.workspacesPerMonitor
|
|
onToggled: checked => SettingsData.set("workspacesPerMonitor", checked)
|
|
}
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Show Occupied Workspaces Only")
|
|
description: I18n.tr("Display only workspaces that contain windows")
|
|
checked: SettingsData.showOccupiedWorkspacesOnly
|
|
visible: CompositorService.isNiri || CompositorService.isHyprland
|
|
onToggled: checked => SettingsData.set("showOccupiedWorkspacesOnly", checked)
|
|
}
|
|
|
|
SettingsToggleRow {
|
|
text: I18n.tr("Show All Tags")
|
|
description: I18n.tr("Show all 9 tags instead of only occupied tags (DWL only)")
|
|
checked: SettingsData.dwlShowAllTags
|
|
visible: CompositorService.isDwl
|
|
onToggled: checked => SettingsData.set("dwlShowAllTags", checked)
|
|
}
|
|
}
|
|
|
|
SettingsCard {
|
|
width: parent.width
|
|
iconName: "label"
|
|
title: I18n.tr("Named Workspace Icons")
|
|
visible: SettingsData.hasNamedWorkspaces()
|
|
|
|
StyledText {
|
|
width: parent.width
|
|
text: I18n.tr("Configure icons for named workspaces. Icons take priority over numbers when both are enabled.")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.outline
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
|
|
Repeater {
|
|
model: SettingsData.getNamedWorkspaces()
|
|
|
|
Rectangle {
|
|
width: parent.width
|
|
height: workspaceIconRow.implicitHeight + Theme.spacingM
|
|
radius: Theme.cornerRadius
|
|
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, 0.5)
|
|
border.width: 0
|
|
|
|
Row {
|
|
id: workspaceIconRow
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.leftMargin: Theme.spacingM
|
|
anchors.rightMargin: Theme.spacingM
|
|
spacing: Theme.spacingM
|
|
|
|
StyledText {
|
|
text: "\"" + modelData + "\""
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
width: 150
|
|
elide: Text.ElideRight
|
|
}
|
|
|
|
DankIconPicker {
|
|
id: iconPicker
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
Component.onCompleted: {
|
|
var iconData = SettingsData.getWorkspaceNameIcon(modelData);
|
|
if (iconData) {
|
|
setIcon(iconData.value, iconData.type);
|
|
}
|
|
}
|
|
|
|
onIconSelected: (iconName, iconType) => {
|
|
SettingsData.setWorkspaceNameIcon(modelData, {
|
|
"type": iconType,
|
|
"value": iconName
|
|
});
|
|
setIcon(iconName, iconType);
|
|
}
|
|
|
|
Connections {
|
|
target: SettingsData
|
|
function onWorkspaceIconsUpdated() {
|
|
var iconData = SettingsData.getWorkspaceNameIcon(modelData);
|
|
if (iconData) {
|
|
iconPicker.setIcon(iconData.value, iconData.type);
|
|
} else {
|
|
iconPicker.setIcon("", "icon");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
width: 28
|
|
height: 28
|
|
radius: Theme.cornerRadius
|
|
color: clearMouseArea.containsMouse ? Theme.errorHover : Theme.surfaceContainer
|
|
border.width: 0
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
DankIcon {
|
|
name: "close"
|
|
size: 16
|
|
color: clearMouseArea.containsMouse ? Theme.error : Theme.outline
|
|
anchors.centerIn: parent
|
|
}
|
|
|
|
MouseArea {
|
|
id: clearMouseArea
|
|
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
onClicked: SettingsData.removeWorkspaceNameIcon(modelData)
|
|
}
|
|
}
|
|
|
|
Item {
|
|
width: parent.width - 150 - 240 - 28 - Theme.spacingM * 4
|
|
height: 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|