mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
Very early KDE 6 release.
This commit is contained in:
parent
7cc4ccabbc
commit
686046d4f7
6272 changed files with 140920 additions and 529657 deletions
|
@ -0,0 +1,126 @@
|
|||
/*
|
||||
SPDX-FileCopyrightText: 2011-2013 Sebastian Kügler <sebas@kde.org>
|
||||
SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
|
||||
SPDX-FileCopyrightText: 2014-2015 Eike Hein <hein@kde.org>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-or-later
|
||||
*/
|
||||
|
||||
import QtQuick 2.0
|
||||
import org.kde.plasma.plasmoid 2.0
|
||||
|
||||
import org.kde.ksvg 1.0 as KSvg
|
||||
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
||||
import org.kde.kirigami 2.20 as Kirigami
|
||||
|
||||
KSvg.FrameSvgItem {
|
||||
id: upButton
|
||||
|
||||
width: gridView.cellWidth
|
||||
height: visible ? gridView.cellHeight : 0
|
||||
|
||||
visible: history.length !== 0
|
||||
|
||||
property bool ignoreClick: false
|
||||
property bool containsDrag: false
|
||||
|
||||
imagePath: "widgets/viewitem"
|
||||
|
||||
function handleDragMove() {
|
||||
containsDrag = true;
|
||||
hoverActivateTimer.restart();
|
||||
}
|
||||
|
||||
function endDragMove() {
|
||||
containsDrag = false;
|
||||
hoverActivateTimer.stop();
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: mouseArea
|
||||
|
||||
anchors.fill: parent
|
||||
|
||||
acceptedButtons: Qt.LeftButton | Qt.BackButton
|
||||
hoverEnabled: true
|
||||
|
||||
onContainsMouseChanged: {
|
||||
gridView.hoveredItem = null;
|
||||
}
|
||||
|
||||
onPressed: mouse => {
|
||||
if (mouse.buttons & Qt.BackButton) {
|
||||
if (root.isPopup && dir.resolvedUrl !== dir.resolve(Plasmoid.configuration.url)) {
|
||||
doBack();
|
||||
ignoreClick = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
onClicked: mouse => {
|
||||
if (ignoreClick) {
|
||||
ignoreClick = false;
|
||||
return;
|
||||
}
|
||||
|
||||
doBack();
|
||||
}
|
||||
}
|
||||
|
||||
Kirigami.Icon {
|
||||
id: icon
|
||||
|
||||
anchors {
|
||||
left: parent.left
|
||||
leftMargin: Kirigami.Units.smallSpacing
|
||||
verticalCenter: parent.verticalCenter
|
||||
}
|
||||
|
||||
width: gridView.iconSize
|
||||
height: gridView.iconSize
|
||||
|
||||
source: "arrow-left"
|
||||
}
|
||||
|
||||
PlasmaComponents3.Label {
|
||||
id: label
|
||||
|
||||
anchors {
|
||||
left: icon.right
|
||||
leftMargin: Kirigami.Units.smallSpacing * 2
|
||||
verticalCenter: parent.verticalCenter
|
||||
}
|
||||
|
||||
width: parent.width - icon.width - (Kirigami.Units.smallSpacing * 4);
|
||||
|
||||
height: undefined // Unset PlasmaComponents.Label's default.
|
||||
|
||||
textFormat: Text.PlainText
|
||||
|
||||
maximumLineCount: root.isPopup ? 1 : Plasmoid.configuration.textLines
|
||||
wrapMode: Text.Wrap
|
||||
elide: Text.ElideRight
|
||||
|
||||
text: i18n("Back")
|
||||
}
|
||||
|
||||
Timer {
|
||||
id: hoverActivateTimer
|
||||
|
||||
interval: root.hoverActivateDelay
|
||||
|
||||
onTriggered: doBack()
|
||||
}
|
||||
|
||||
states: [
|
||||
State {
|
||||
name: "hover"
|
||||
when: mouseArea.containsMouse || containsDrag
|
||||
|
||||
PropertyChanges {
|
||||
target: upButton
|
||||
prefix: "hover"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue