mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
874 lines
39 KiB
QML
874 lines
39 KiB
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Item {
|
|
id: widgetTweaksTab
|
|
|
|
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
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: workspaceSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: workspaceSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "view_module"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Workspace Settings")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Workspace Index Numbers")
|
|
description: I18n.tr("Show workspace index numbers in the top bar workspace switcher")
|
|
checked: SettingsData.showWorkspaceIndex
|
|
onToggled: checked => {
|
|
return SettingsData.set("showWorkspaceIndex", checked);
|
|
}
|
|
}
|
|
DankToggle {
|
|
width: parent.width
|
|
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 => {
|
|
return SettingsData.set("showWorkspacePadding", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
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 => {
|
|
return 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
|
|
}
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Per-Monitor Workspaces")
|
|
description: I18n.tr("Show only workspaces belonging to each specific monitor.")
|
|
checked: SettingsData.workspacesPerMonitor
|
|
onToggled: checked => {
|
|
return SettingsData.set("workspacesPerMonitor", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
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 => {
|
|
return SettingsData.set("showOccupiedWorkspacesOnly", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
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 => {
|
|
return SettingsData.set("dwlShowAllTags", checked);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: mediaSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: mediaSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "music_note"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Media Player Settings")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Wave Progress Bars")
|
|
description: I18n.tr("Use animated wave progress bars for media playback")
|
|
checked: SettingsData.waveProgressEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("waveProgressEnabled", checked);
|
|
}
|
|
}
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Scroll song title")
|
|
description: I18n.tr("Scroll title if it doesn't fit in widget")
|
|
checked: SettingsData.scrollTitleEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("scrollTitleEnabled", checked);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: updaterSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: updaterSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "refresh"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("System Updater")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Use Custom Command")
|
|
description: I18n.tr("Use custom command for update your system")
|
|
checked: SettingsData.updaterUseCustomCommand
|
|
onToggled: checked => {
|
|
if (!checked) {
|
|
updaterCustomCommand.text = "";
|
|
updaterTerminalCustomClass.text = "";
|
|
SettingsData.set("updaterCustomCommand", "");
|
|
SettingsData.set("updaterTerminalAdditionalParams", "");
|
|
}
|
|
return SettingsData.set("updaterUseCustomCommand", checked);
|
|
}
|
|
}
|
|
|
|
FocusScope {
|
|
width: parent.width - Theme.spacingM * 2
|
|
height: customCommandColumn.implicitHeight
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
|
|
Column {
|
|
id: customCommandColumn
|
|
width: parent.width
|
|
spacing: Theme.spacingXS
|
|
|
|
StyledText {
|
|
text: I18n.tr("System update custom command")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
}
|
|
|
|
DankTextField {
|
|
id: updaterCustomCommand
|
|
width: parent.width
|
|
height: 48
|
|
placeholderText: "myPkgMngr --sysupdate"
|
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
|
normalBorderColor: Theme.outlineMedium
|
|
focusedBorderColor: Theme.primary
|
|
|
|
Component.onCompleted: {
|
|
if (SettingsData.updaterCustomCommand) {
|
|
text = SettingsData.updaterCustomCommand;
|
|
}
|
|
}
|
|
|
|
onTextEdited: {
|
|
SettingsData.set("updaterCustomCommand", text.trim());
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onPressed: mouse => {
|
|
updaterCustomCommand.forceActiveFocus();
|
|
mouse.accepted = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
FocusScope {
|
|
width: parent.width - Theme.spacingM * 2
|
|
height: terminalParamsColumn.implicitHeight
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingM
|
|
|
|
Column {
|
|
id: terminalParamsColumn
|
|
width: parent.width
|
|
spacing: Theme.spacingXS
|
|
|
|
StyledText {
|
|
text: I18n.tr("Terminal custom additional parameters")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
}
|
|
|
|
DankTextField {
|
|
id: updaterTerminalCustomClass
|
|
width: parent.width
|
|
height: 48
|
|
placeholderText: "-T udpClass"
|
|
backgroundColor: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
|
normalBorderColor: Theme.outlineMedium
|
|
focusedBorderColor: Theme.primary
|
|
|
|
Component.onCompleted: {
|
|
if (SettingsData.updaterTerminalAdditionalParams) {
|
|
text = SettingsData.updaterTerminalAdditionalParams;
|
|
}
|
|
}
|
|
|
|
onTextEdited: {
|
|
SettingsData.set("updaterTerminalAdditionalParams", text.trim());
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onPressed: mouse => {
|
|
updaterTerminalCustomClass.forceActiveFocus();
|
|
mouse.accepted = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: runningAppsSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
visible: CompositorService.isNiri || CompositorService.isHyprland
|
|
|
|
Column {
|
|
id: runningAppsSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "apps"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Running Apps Settings")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Running Apps Only In Current Workspace")
|
|
description: I18n.tr("Show only apps running in current workspace")
|
|
checked: SettingsData.runningAppsCurrentWorkspace
|
|
onToggled: checked => {
|
|
return SettingsData.set("runningAppsCurrentWorkspace", checked);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: workspaceIconsSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
visible: SettingsData.hasNamedWorkspaces()
|
|
|
|
Column {
|
|
id: workspaceIconsSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "label"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Named Workspace Icons")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
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.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.3)
|
|
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.color: clearMouseArea.containsMouse ? Theme.error : Theme.outline
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: notificationSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: notificationSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "notifications"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Notification Popups")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
Column {
|
|
width: parent.width
|
|
spacing: 0
|
|
leftPadding: Theme.spacingM
|
|
rightPadding: Theme.spacingM
|
|
|
|
DankDropdown {
|
|
width: parent.width - parent.leftPadding - parent.rightPadding
|
|
text: I18n.tr("Popup Position")
|
|
description: I18n.tr("Choose where notification popups appear on screen")
|
|
currentValue: {
|
|
if (SettingsData.notificationPopupPosition === -1) {
|
|
return "Top Center";
|
|
}
|
|
switch (SettingsData.notificationPopupPosition) {
|
|
case SettingsData.Position.Top:
|
|
return "Top Right";
|
|
case SettingsData.Position.Bottom:
|
|
return "Bottom Left";
|
|
case SettingsData.Position.Left:
|
|
return "Top Left";
|
|
case SettingsData.Position.Right:
|
|
return "Bottom Right";
|
|
default:
|
|
return "Top Right";
|
|
}
|
|
}
|
|
options: ["Top Right", "Top Left", "Top Center", "Bottom Right", "Bottom Left"]
|
|
onValueChanged: value => {
|
|
switch (value) {
|
|
case "Top Right":
|
|
SettingsData.set("notificationPopupPosition", SettingsData.Position.Top);
|
|
break;
|
|
case "Top Left":
|
|
SettingsData.set("notificationPopupPosition", SettingsData.Position.Left);
|
|
break;
|
|
case "Top Center":
|
|
SettingsData.set("notificationPopupPosition", -1);
|
|
break;
|
|
case "Bottom Right":
|
|
SettingsData.set("notificationPopupPosition", SettingsData.Position.Right);
|
|
break;
|
|
case "Bottom Left":
|
|
SettingsData.set("notificationPopupPosition", SettingsData.Position.Bottom);
|
|
break;
|
|
}
|
|
SettingsData.sendTestNotifications();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: osdRow.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Row {
|
|
id: osdRow
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "tune"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
Column {
|
|
width: parent.width - Theme.iconSize - Theme.spacingM - osdToggle.width - Theme.spacingM
|
|
spacing: Theme.spacingXS
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
StyledText {
|
|
text: I18n.tr("Always Show OSD Percentage")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("Display volume and brightness percentage values by default in OSD popups")
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: Theme.surfaceVariantText
|
|
wrapMode: Text.WordWrap
|
|
width: parent.width
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
id: osdToggle
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
checked: SettingsData.osdAlwaysShowValue
|
|
onToggled: checked => {
|
|
SettingsData.set("osdAlwaysShowValue", checked);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StyledRect {
|
|
width: parent.width
|
|
height: osdSection.implicitHeight + Theme.spacingL * 2
|
|
radius: Theme.cornerRadius
|
|
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.2)
|
|
border.width: 0
|
|
|
|
Column {
|
|
id: osdSection
|
|
|
|
anchors.fill: parent
|
|
anchors.margins: Theme.spacingL
|
|
spacing: Theme.spacingM
|
|
|
|
Row {
|
|
width: parent.width
|
|
spacing: Theme.spacingM
|
|
|
|
DankIcon {
|
|
name: "notification_important"
|
|
size: Theme.iconSize
|
|
color: Theme.primary
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
StyledText {
|
|
text: I18n.tr("On-screen Displays")
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Medium
|
|
color: Theme.surfaceText
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
|
|
Column {
|
|
width: parent.width
|
|
spacing: 0
|
|
leftPadding: Theme.spacingM
|
|
rightPadding: Theme.spacingM
|
|
|
|
DankDropdown {
|
|
width: parent.width - parent.leftPadding - parent.rightPadding
|
|
text: I18n.tr("OSD Position")
|
|
description: I18n.tr("Choose where on-screen displays appear on screen")
|
|
currentValue: {
|
|
switch (SettingsData.osdPosition) {
|
|
case SettingsData.Position.Top:
|
|
return "Top Right";
|
|
case SettingsData.Position.Left:
|
|
return "Top Left";
|
|
case SettingsData.Position.TopCenter:
|
|
return "Top Center";
|
|
case SettingsData.Position.Right:
|
|
return "Bottom Right";
|
|
case SettingsData.Position.Bottom:
|
|
return "Bottom Left";
|
|
case SettingsData.Position.BottomCenter:
|
|
return "Bottom Center";
|
|
case SettingsData.Position.LeftCenter:
|
|
return "Left Center";
|
|
case SettingsData.Position.RightCenter:
|
|
return "Right Center";
|
|
default:
|
|
return "Bottom Center";
|
|
}
|
|
}
|
|
options: ["Top Right", "Top Left", "Top Center", "Bottom Right", "Bottom Left", "Bottom Center", "Left Center", "Right Center"]
|
|
onValueChanged: value => {
|
|
switch (value) {
|
|
case "Top Right":
|
|
SettingsData.set("osdPosition", SettingsData.Position.Top);
|
|
break;
|
|
case "Top Left":
|
|
SettingsData.set("osdPosition", SettingsData.Position.Left);
|
|
break;
|
|
case "Top Center":
|
|
SettingsData.set("osdPosition", SettingsData.Position.TopCenter);
|
|
break;
|
|
case "Bottom Right":
|
|
SettingsData.set("osdPosition", SettingsData.Position.Right);
|
|
break;
|
|
case "Bottom Left":
|
|
SettingsData.set("osdPosition", SettingsData.Position.Bottom);
|
|
break;
|
|
case "Bottom Center":
|
|
SettingsData.set("osdPosition", SettingsData.Position.BottomCenter);
|
|
break;
|
|
case "Left Center":
|
|
SettingsData.set("osdPosition", SettingsData.Position.LeftCenter);
|
|
break;
|
|
case "Right Center":
|
|
SettingsData.set("osdPosition", SettingsData.Position.RightCenter);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Volume OSD")
|
|
description: I18n.tr("Show on-screen display when volume changes")
|
|
checked: SettingsData.osdVolumeEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdVolumeEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Media Volume OSD")
|
|
description: I18n.tr("Show on-screen display when media player volume changes")
|
|
checked: SettingsData.osdMediaVolumeEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdMediaVolumeEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Brightness OSD")
|
|
description: I18n.tr("Show on-screen display when brightness changes")
|
|
checked: SettingsData.osdBrightnessEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdBrightnessEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Idle Inhibitor OSD")
|
|
description: I18n.tr("Show on-screen display when idle inhibitor state changes")
|
|
checked: SettingsData.osdIdleInhibitorEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdIdleInhibitorEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Microphone Mute OSD")
|
|
description: I18n.tr("Show on-screen display when microphone is muted/unmuted")
|
|
checked: SettingsData.osdMicMuteEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdMicMuteEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Caps Lock OSD")
|
|
description: I18n.tr("Show on-screen display when caps lock state changes")
|
|
checked: SettingsData.osdCapsLockEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdCapsLockEnabled", checked);
|
|
}
|
|
}
|
|
|
|
DankToggle {
|
|
width: parent.width
|
|
text: I18n.tr("Power Profile OSD")
|
|
description: I18n.tr("Show on-screen display when power profile changes")
|
|
checked: SettingsData.osdPowerProfileEnabled
|
|
onToggled: checked => {
|
|
return SettingsData.set("osdPowerProfileEnabled", checked);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|