mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
43 lines
1.4 KiB
QML
43 lines
1.4 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import qs.Commons
|
|
import qs.Widgets
|
|
import qs.Services
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
spacing: Style.marginM * scaling
|
|
|
|
// Properties to receive data from parent
|
|
property var widgetData: null
|
|
property var widgetMetadata: null
|
|
|
|
// Local state
|
|
property bool valueOnlyActiveWorkspaces: widgetData.onlyActiveWorkspaces !== undefined ? widgetData.onlyActiveWorkspaces : widgetMetadata.onlyActiveWorkspaces
|
|
property bool valueOnlySameOutput: widgetData.onlySameOutput !== undefined ? widgetData.onlySameOutput : widgetMetadata.onlySameOutput
|
|
|
|
function saveSettings() {
|
|
var settings = Object.assign({}, widgetData || {})
|
|
settings.onlySameOutput = valueOnlySameOutput
|
|
settings.onlyActiveWorkspaces = valueOnlyActiveWorkspaces
|
|
return settings
|
|
}
|
|
|
|
NToggle {
|
|
Layout.fillWidth: true
|
|
label: I18n.tr("bar.widget-settings.taskbar.only-same-output.label")
|
|
description: I18n.tr("bar.widget-settings.taskbar.only-same-output.description")
|
|
checked: root.valueOnlySameOutput
|
|
onToggled: checked => root.valueOnlySameOutput = checked
|
|
}
|
|
|
|
NToggle {
|
|
Layout.fillWidth: true
|
|
label: I18n.tr("bar.widget-settings.taskbar.only-active-workspaces.label")
|
|
description: I18n.tr("bar.widget-settings.taskbar.only-active-workspaces.description")
|
|
checked: root.valueOnlyActiveWorkspaces
|
|
onToggled: checked => root.valueOnlyActiveWorkspaces = checked
|
|
}
|
|
}
|