mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 06:33:08 +00:00
134 lines
4.4 KiB
QML
134 lines
4.4 KiB
QML
/*
|
|
* Copyright (C) 2015 Marco Martin <mart@kde.org>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) version 3, or any
|
|
* later version accepted by the membership of KDE e.V. (or its
|
|
* successor approved by the membership of KDE e.V.), which shall
|
|
* act as a proxy defined in Section 6 of version 3 of the license.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
|
|
import org.kde.milou 0.1 as Milou
|
|
|
|
Rectangle {
|
|
id: editOverlay
|
|
anchors.fill: parent
|
|
|
|
property Item applet
|
|
color: Qt.rgba(0, 0, 0, 0.8)
|
|
visible: false
|
|
onVisibleChanged: {
|
|
if (visible) {
|
|
opacity = 1;
|
|
}
|
|
}
|
|
opacity: 0
|
|
Behavior on opacity {
|
|
SequentialAnimation {
|
|
OpacityAnimator {
|
|
duration: units.longDuration
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
ScriptAction {
|
|
script: {
|
|
if (editOverlay.opacity == 0) {
|
|
editOverlay.visible = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
enabled: listView.visible
|
|
anchors.fill: parent
|
|
preventStealing: true
|
|
onClicked: editOverlay.opacity = 0;
|
|
PlasmaComponents.ButtonRow {
|
|
visible: editOverlay.applet
|
|
spacing: 0
|
|
exclusive: false
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
y: editOverlay.mapFromItem(editOverlay.applet.parent, 0, editOverlay.applet.y).y + editOverlay.applet.height/2 - height/2
|
|
PlasmaComponents.ToolButton {
|
|
iconSource: "configure"
|
|
text: i18n("Configure..")
|
|
flat: false
|
|
onClicked: {
|
|
editOverlay.applet.applet.action("configure").trigger();
|
|
editOverlay.opacity = 0;
|
|
}
|
|
}
|
|
PlasmaComponents.ToolButton {
|
|
iconSource: "window-close"
|
|
text: i18n("Remove")
|
|
flat: false
|
|
onClicked: {
|
|
editOverlay.applet.applet.action("remove").trigger();
|
|
editOverlay.opacity = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
PlasmaCore.FrameSvgItem {
|
|
id: background
|
|
anchors {
|
|
left: parent.left
|
|
right: parent.right
|
|
bottom: parent.bottom
|
|
bottomMargin: editOverlay.height - (plasmoid.availableScreenRect.y + plasmoid.availableScreenRect.height)
|
|
}
|
|
height: buttonsLayout.height + fixedMargins.top + fixedMargins.bottom/2
|
|
imagePath: "widgets/background"
|
|
enabledBorders: PlasmaCore.FrameSvg.TopBorder
|
|
RowLayout {
|
|
id: buttonsLayout
|
|
anchors {
|
|
left: parent.left
|
|
right: parent.right
|
|
top: parent.top
|
|
topMargin: parent.fixedMargins.top
|
|
leftMargin: parent.fixedMargins.left/2
|
|
rightMargin: parent.fixedMargins.right/2
|
|
bottomMargin: parent.fixedMargins.bottom/2
|
|
}
|
|
PlasmaComponents.ToolButton {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight:true
|
|
text: i18n("Wallpaper...")
|
|
onClicked: {
|
|
plasmoid.action("configure").trigger();
|
|
editOverlay.opacity = 0;
|
|
}
|
|
}
|
|
PlasmaComponents.ToolButton {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight:true
|
|
text: i18n("Add Widgets...")
|
|
onClicked: {
|
|
plasmoid.action("add widgets").trigger();
|
|
editOverlay.opacity = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|