kwin/kcmkwin/kwineffects/package/contents/ui/Effect.qml
Vlad Zahorodnii 1fb9f6f13a Switch to SPDX license markers
The main advantage of SPDX license identifiers over the traditional
license headers is that it's more difficult to overlook inappropriate
licenses for kwin, for example GPL 3. We also don't have to copy a
lot of boilerplate text.

In order to create this change, I ran licensedigger -r -c from the
toplevel source directory.
2020-08-07 19:57:56 +00:00

117 lines
3.3 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
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;
}
}
QQC2.CheckBox {
checkState: model.StatusRole
visible: model.ExclusiveRole == ""
onToggled: model.StatusRole = checkState
}
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)
}
]
}