188 lines
5.4 KiB
QML
188 lines
5.4 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2020 Ismael Asensio <isma.af@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
import QtQuick 2.14
|
|
import QtQuick.Layouts 1.14
|
|
import QtQuick.Controls 2.14 as QQC2
|
|
|
|
import org.kde.kirigami 2.10 as Kirigami
|
|
import org.kde.kquickcontrols 2.0 as KQC
|
|
import org.kde.kcms.kwinrules 1.0
|
|
|
|
|
|
Loader {
|
|
id: valueEditor
|
|
focus: true
|
|
|
|
property var ruleValue
|
|
property var ruleOptions
|
|
property int controlType
|
|
|
|
signal valueEdited(var value)
|
|
|
|
sourceComponent: {
|
|
switch (controlType) {
|
|
case RuleItem.Boolean: return booleanEditor
|
|
case RuleItem.String: return stringEditor
|
|
case RuleItem.Integer: return integerEditor
|
|
case RuleItem.Option: return optionEditor
|
|
case RuleItem.NetTypes: return netTypesEditor
|
|
case RuleItem.Percentage: return percentageEditor
|
|
case RuleItem.Point: return coordinateEditor
|
|
case RuleItem.Size: return coordinateEditor
|
|
case RuleItem.Shortcut: return shortcutEditor
|
|
default: return emptyEditor
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: emptyEditor
|
|
Item {}
|
|
}
|
|
|
|
Component {
|
|
id: booleanEditor
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
QQC2.RadioButton {
|
|
text: i18n("Yes")
|
|
checked: ruleValue
|
|
Layout.margins: Kirigami.Units.smallSpacing
|
|
onToggled: valueEditor.valueEdited(checked)
|
|
}
|
|
QQC2.RadioButton {
|
|
text: i18n("No")
|
|
checked: !ruleValue
|
|
Layout.margins: Kirigami.Units.smallSpacing
|
|
onToggled: valueEditor.valueEdited(!checked)
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: stringEditor
|
|
QQC2.TextField {
|
|
property bool isTextEdited: false
|
|
text: ruleValue
|
|
horizontalAlignment: Text.AlignLeft
|
|
onTextEdited: { isTextEdited = true; }
|
|
onEditingFinished: {
|
|
if (isTextEdited) { valueEditor.valueEdited(text); }
|
|
isTextEdited = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: integerEditor
|
|
QQC2.SpinBox {
|
|
editable: true
|
|
value: ruleValue
|
|
onValueModified: valueEditor.valueEdited(value)
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: optionEditor
|
|
OptionsComboBox {
|
|
flat: true
|
|
model: ruleOptions
|
|
onActivated: (index) => {
|
|
valueEditor.valueEdited(currentValue);
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: netTypesEditor
|
|
OptionsComboBox {
|
|
flat: true
|
|
model: ruleOptions
|
|
multipleChoice: true
|
|
// Filter the provided value with the options mask
|
|
selectionMask: ruleValue & optionsMask
|
|
onActivated: {
|
|
valueEditor.valueEdited(selectionMask);
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: percentageEditor
|
|
RowLayout {
|
|
QQC2.Slider {
|
|
id: slider
|
|
Layout.fillWidth: true
|
|
from: 0
|
|
to: 100
|
|
value: ruleValue
|
|
onMoved: valueEditor.valueEdited(Math.round(slider.value))
|
|
}
|
|
QQC2.Label {
|
|
text: i18n("%1 %", Math.round(slider.value))
|
|
horizontalAlignment: Qt.AlignRight
|
|
Layout.minimumWidth: maxPercentage.width + Kirigami.Units.smallSpacing
|
|
Layout.margins: Kirigami.Units.smallSpacing
|
|
}
|
|
TextMetrics {
|
|
id: maxPercentage
|
|
text: i18n("%1 %", 100)
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: coordinateEditor
|
|
RowLayout {
|
|
id: coordItem
|
|
spacing: Kirigami.Units.smallSpacing
|
|
|
|
readonly property var coord: (controlType == RuleItem.Size) ? Qt.size(coordX.value, coordY.value)
|
|
: Qt.point(coordX.value, coordY.value)
|
|
onCoordChanged: valueEditor.valueEdited(coord)
|
|
|
|
QQC2.SpinBox {
|
|
id: coordX
|
|
editable: true
|
|
Layout.preferredWidth: 50 // 50%
|
|
Layout.fillWidth: true
|
|
from: 0
|
|
to: 32767
|
|
value: (controlType == RuleItem.Size) ? ruleValue.width : ruleValue.x
|
|
}
|
|
QQC2.Label {
|
|
id: coordSeparator
|
|
Layout.preferredWidth: implicitWidth
|
|
text: i18nc("(x, y) coordinates separator in size/position","x")
|
|
horizontalAlignment: Text.AlignHCenter
|
|
}
|
|
QQC2.SpinBox {
|
|
id: coordY
|
|
editable: true
|
|
from: 0
|
|
to: 32767
|
|
Layout.preferredWidth: 50 // 50%
|
|
Layout.fillWidth: true
|
|
value: (controlType == RuleItem.Size) ? ruleValue.height : ruleValue.y
|
|
}
|
|
}
|
|
}
|
|
|
|
Component {
|
|
id: shortcutEditor
|
|
RowLayout {
|
|
Item {
|
|
Layout.fillWidth: true
|
|
}
|
|
KQC.KeySequenceItem {
|
|
keySequence: ruleValue
|
|
onCaptureFinished: valueEditor.valueEdited(keySequence)
|
|
}
|
|
}
|
|
}
|
|
}
|