kwin/kcmkwin/kwineffects/package/contents/ui/Effect.qml
Cyril Rossi d425e78cab KCM KWinEffects highlight effects that are not in default state
add EnabledByDefaultFunctionRole in EffectsModel
2021-01-20 10:44:21 +00:00

126 lines
3.7 KiB
QML

/*
SPDX-FileCopyrightText: 2013 Antonis Tsiapaliokas <kok3rs@gmail.com>
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.5
import QtQuick.Controls 2.5 as QQC2
import QtQuick.Layouts 1.1
import org.kde.kirigami 2.5 as Kirigami
import org.kde.kcm 1.5 as KCM
Kirigami.SwipeListItem {
id: listItem
hoverEnabled: true
onClicked: {
view.currentIndex = index;
}
contentItem: RowLayout {
id: row
QQC2.RadioButton {
property bool _exclusive: model.ExclusiveRole != ""
property bool _toggled: false
checked: model.StatusRole
visible: _exclusive
QQC2.ButtonGroup.group: _exclusive ? effectsList.findButtonGroup(model.ExclusiveRole) : null
onToggled: {
model.StatusRole = checked ? Qt.Checked : Qt.Unchecked;
_toggled = true;
}
onClicked: {
// Uncheck the radio button if it's clicked.
if (checked && !_toggled) {
model.StatusRole = Qt.Unchecked;
}
_toggled = false;
}
KCM.SettingHighlighter {
highlight: model.EnabledByDefaultFunctionRole ? parent.checkState !== Qt.PartiallyChecked : parent.checked !== model.EnabledByDefaultRole
}
}
QQC2.CheckBox {
checkState: model.StatusRole
visible: model.ExclusiveRole == ""
onToggled: model.StatusRole = checkState
KCM.SettingHighlighter {
highlight: model.EnabledByDefaultFunctionRole ? parent.checkState !== Qt.PartiallyChecked : parent.checked !== model.EnabledByDefaultRole
}
}
ColumnLayout {
Layout.topMargin: Kirigami.Units.smallSpacing
Layout.bottomMargin: Kirigami.Units.smallSpacing
spacing: 0
Kirigami.Heading {
Layout.fillWidth: true
level: 5
text: model.NameRole
wrapMode: Text.Wrap
}
QQC2.Label {
Layout.fillWidth: true
text: model.DescriptionRole
opacity: listItem.hovered ? 0.8 : 0.6
wrapMode: Text.Wrap
}
QQC2.Label {
id: aboutItem
Layout.fillWidth: true
text: i18n("Author: %1\nLicense: %2", model.AuthorNameRole, model.LicenseRole)
opacity: listItem.hovered ? 0.8 : 0.6
visible: view.currentIndex === index
wrapMode: Text.Wrap
}
Loader {
id: videoItem
active: false
source: "Video.qml"
visible: false
function showHide() {
if (!videoItem.active) {
videoItem.active = true;
videoItem.visible = true;
} else {
videoItem.active = false;
videoItem.visible = false;
}
}
}
}
}
actions: [
Kirigami.Action {
visible: model.VideoRole.toString() !== ""
icon.name: "videoclip-amarok"
tooltip: i18nc("@info:tooltip", "Show/Hide Video")
onTriggered: videoItem.showHide()
},
Kirigami.Action {
visible: model.ConfigurableRole
enabled: model.StatusRole != Qt.Unchecked
icon.name: "configure"
tooltip: i18nc("@info:tooltip", "Configure...")
onTriggered: kcm.configure(model.ServiceNameRole, this)
}
]
}