shift-shell/components/mobileshell/qml/actiondrawer/ActionDrawerOpenSurface.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.8 KiB
QML
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2021-2022 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
import QtQuick 2.15
import org.kde.plasma.private.mobileshell.shellsettingsplugin as ShellSettings
/**
* Component that triggers the opening and closing of an ActionDrawer when dragged on with touch or mouse.
*/
MouseArea {
id: root
required property ActionDrawer actionDrawer
property int oldMouseY: 0
function startSwipe() {
if (actionDrawer.visible) {
// ensure the action drawer state is consistent
actionDrawer.closeImmediately();
}
actionDrawer.cancelAnimations();
actionDrawer.dragging = true;
actionDrawer.opened = false;
// must be after properties other are set, we cannot have actionDrawer.updateState() be called
actionDrawer.offset = 0;
actionDrawer.oldOffset = 0;
actionDrawer.visible = true;
}
function endSwipe() {
actionDrawer.dragging = false;
actionDrawer.updateState();
}
function updateOffset(offsetY) {
actionDrawer.offset += offsetY;
}
anchors.fill: parent
onPressed: mouse => {
oldMouseY = mouse.y;
// if the user swiped from the top left, otherwise it's from the top right
if (mouse.x < root.width / 2) {
2023-03-19 00:32:19 +00:00
actionDrawer.openToPinnedMode = ShellSettings.Settings.actionDrawerTopLeftMode == ShellSettings.Settings.Pinned;
} else {
actionDrawer.openToPinnedMode = ShellSettings.Settings.actionDrawerTopRightMode == ShellSettings.Settings.Pinned;
}
startSwipe();
}
onReleased: endSwipe()
onCanceled: endSwipe()
onPositionChanged: mouse => {
updateOffset(mouse.y - oldMouseY);
oldMouseY = mouse.y;
}
}