mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
69 lines
2.4 KiB
QML
69 lines
2.4 KiB
QML
/*
|
|
* SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org>
|
|
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.4
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.2
|
|
import Qt5Compat.GraphicalEffects
|
|
|
|
import org.kde.taskmanager 0.1 as TaskManager
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.kquickcontrolsaddons 2.0
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property var taskSwitcher
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
anchors.fill: parent
|
|
|
|
// drag gesture
|
|
property int oldMouseY: 0
|
|
property int startMouseY: 0
|
|
property int oldMouseX: 0
|
|
property int startMouseX: 0
|
|
property bool opening: false
|
|
|
|
enabled: !taskSwitcher.visible
|
|
|
|
onPressed: mouse => {
|
|
startMouseX = oldMouseX = mouse.x;
|
|
startMouseY = oldMouseY = mouse.y;
|
|
}
|
|
|
|
onPositionChanged: mouse => {
|
|
if (root.taskSwitcher.visible || taskSwitcher.taskSwitcherState.currentlyBeingOpened) {
|
|
// update task switcher drag
|
|
let offsetY = (mouse.y - oldMouseY) * 0.5; // we want to make the gesture take a longer swipe than it being pixel perfect
|
|
let offsetX = (mouse.x - oldMouseX) * 0.7; // we want to make the gesture not too hard to swipe, but not too easy
|
|
taskSwitcher.taskSwitcherState.yPosition = Math.max(0, taskSwitcher.taskSwitcherState.yPosition - offsetY);
|
|
taskSwitcher.taskSwitcherState.xPosition = taskSwitcher.taskSwitcherState.xPosition - offsetX;
|
|
}
|
|
|
|
if (!root.taskSwitcher.visible && Math.abs(startMouseX - mouse.x) > PlasmaCore.Units.gridUnit && taskSwitcher.tasksCount && taskSwitcher.tasksModel.activeTask.row >= 0){
|
|
// start switch task gesture
|
|
taskSwitcher.taskSwitcherState.scrollingTasks = true;
|
|
root.taskSwitcher.show(false);
|
|
} else if (!root.taskSwitcher.visible && Math.abs(startMouseY - mouse.y) > PlasmaCore.Units.gridUnit && taskSwitcher.tasksCount) {
|
|
// start task switcher opening gesture
|
|
root.taskSwitcher.show(false);
|
|
}
|
|
|
|
oldMouseY = mouse.y;
|
|
oldMouseX = mouse.x;
|
|
}
|
|
|
|
onReleased: {
|
|
if (taskSwitcher.taskSwitcherState.currentlyBeingOpened) {
|
|
taskSwitcher.taskSwitcherState.updateState();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|