mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-06-11 16:57:43 +00:00
Use Motion wrappers and state layers across Folio and Halcyon delegates, drawers, folders, resize handles, and dock feedback. Also align Folio edit/drop highlights with theme colors instead of fixed white overlays.
155 lines
4.9 KiB
QML
155 lines
4.9 KiB
QML
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Controls 2.3 as Controls
|
|
import Qt5Compat.GraphicalEffects
|
|
import QtQuick.Effects
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import org.kde.kquickcontrolsaddons 2.0
|
|
|
|
import plasma.applet.org.kde.plasma.mobile.homescreen.folio as Folio
|
|
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
|
|
import org.kde.plasma.private.mobileshell as MobileShell
|
|
|
|
Folio.DelegateTouchArea {
|
|
id: root
|
|
property Folio.HomeScreen folio
|
|
property MobileShell.MaskManager maskManager
|
|
|
|
property string name
|
|
property bool shadow: false
|
|
|
|
property alias contentItem: visualItem.contentItem
|
|
property alias delegateItem: delegateWrapper
|
|
property alias labelOpacity: label.opacity
|
|
|
|
signal afterClickAnimation()
|
|
|
|
// grow/shrink animation
|
|
property real scaleAmount: 1
|
|
property bool clickRequested: false
|
|
readonly property int pressAnimationDuration: MobileShell.Motion.duration(MobileShell.Motion.Press)
|
|
readonly property real pressedScale: MobileShell.Motion.pressScaleIn
|
|
|
|
function keyboardFocus() {
|
|
delegateWrapper.forceActiveFocus();
|
|
}
|
|
|
|
MobileShell.MotionNumberAnimation on scaleAmount {
|
|
id: shrinkAnim
|
|
type: MobileShell.Motion.Press
|
|
running: false
|
|
duration: root.pressAnimationDuration
|
|
to: root.pressedScale
|
|
onFinished: {
|
|
if (!root.pressed) {
|
|
growAnim.restart();
|
|
}
|
|
}
|
|
}
|
|
|
|
MobileShell.MotionNumberAnimation on scaleAmount {
|
|
id: growAnim
|
|
type: MobileShell.Motion.Press
|
|
running: false
|
|
duration: root.pressAnimationDuration
|
|
to: 1
|
|
onFinished: {
|
|
if (root.clickRequested) {
|
|
root.afterClickAnimation();
|
|
root.clickRequested = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
onPressedChanged: (pressed) => {
|
|
if (pressed) {
|
|
growAnim.stop();
|
|
shrinkAnim.restart();
|
|
} else if (!pressed && !shrinkAnim.running) {
|
|
growAnim.restart();
|
|
}
|
|
}
|
|
// trigger handled by press animation
|
|
onClicked: clickRequested = true;
|
|
|
|
FocusScope {
|
|
id: delegateWrapper
|
|
anchors.fill: parent
|
|
|
|
// Select keyboard navigation
|
|
Keys.onPressed: (event) => {
|
|
switch (event.key) {
|
|
case Qt.Key_Enter:
|
|
case Qt.Key_Return:
|
|
case Qt.Key_Space:
|
|
root.afterClickAnimation();
|
|
event.accepted = true;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
KeyboardHighlight {
|
|
anchors.fill: parent
|
|
visible: delegateWrapper.activeFocus
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
layer.enabled: root.shadow
|
|
layer.effect: DelegateShadow {}
|
|
|
|
// transform is not on delegateWrapper because when it's zoomed in, it apparently
|
|
// affects the delegate's x and y position, which messes up the starting drag and drop
|
|
// position (for mapFromItem in HomeScreen.qml)
|
|
transform: Scale {
|
|
origin.x: root.width / 2;
|
|
origin.y: root.height / 2;
|
|
xScale: root.scaleAmount
|
|
yScale: root.scaleAmount
|
|
}
|
|
|
|
MobileShell.BaseItem {
|
|
id: visualItem
|
|
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignBottom
|
|
Layout.minimumWidth: folio.FolioSettings.delegateIconSize
|
|
Layout.minimumHeight: folio.FolioSettings.delegateIconSize
|
|
Layout.preferredHeight: Layout.minimumHeight
|
|
|
|
// Hover highlight in convergence mode (disabled for touch to avoid overlap with press)
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
radius: Kirigami.Units.cornerRadius
|
|
color: Qt.rgba(Kirigami.Theme.textColor.r, Kirigami.Theme.textColor.g, Kirigami.Theme.textColor.b, 0.1)
|
|
visible: ShellSettings.Settings.convergenceModeEnabled && root.hovered
|
|
}
|
|
}
|
|
|
|
DelegateLabel {
|
|
id: label
|
|
opacity: text.length > 0
|
|
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: folio.HomeScreenState.pageDelegateLabelHeight
|
|
Layout.topMargin: folio.HomeScreenState.pageDelegateLabelSpacing
|
|
Layout.leftMargin: -parent.anchors.leftMargin + Kirigami.Units.smallSpacing
|
|
Layout.rightMargin: -parent.anchors.rightMargin + Kirigami.Units.smallSpacing
|
|
|
|
text: root.name
|
|
color: ShellSettings.Settings.convergenceModeEnabled ? Kirigami.Theme.textColor : "white"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|