mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-28 06:33:09 +00:00
This makes the behavior of the app drawer a bit more familiar and slightly more similar to Android for now: * The drawer always contains every application * Applications are always alphabetically ordered * The drawer opens completely, not staying stuck in "in between" states * is possible to drag more copies of a single app on the homescreen/favorites * possible to remove an icon from the homescreen or favorites Two things have been prepared in there (but are material for 5.22 only, so not finished) * Things have been reordered such in a way that makes easy for most of the qml files to become components to make easy for people to build their own customized homescreen * basic infrastructure is there to allow for multiple horizontal pages scroll, though not implemented yet as needs changes to plasma-workspace layouting code beforehand
90 lines
2.8 KiB
QML
90 lines
2.8 KiB
QML
/*
|
|
* Copyright 2019 Marco Martin <mart@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2 or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 Library General Public License for more details
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the
|
|
* Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Window 2.12
|
|
import QtQuick.Layouts 1.1
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import org.kde.plasma.plasmoid 2.0
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
import org.kde.draganddrop 2.0 as DragDrop
|
|
|
|
import org.kde.plasma.private.containmentlayoutmanager 1.0 as ContainmentLayoutManager
|
|
|
|
import org.kde.phone.homescreen 1.0
|
|
|
|
import org.kde.plasma.private.mobileshell 1.0 as MobileShell
|
|
|
|
|
|
MouseArea {
|
|
id: arrowUpIcon
|
|
z: 9
|
|
property Flickable flickable
|
|
property real factor: 0
|
|
|
|
height: units.iconSizes.medium
|
|
signal openRequested
|
|
signal closeRequested
|
|
|
|
onClicked: {
|
|
if ((arrowUpIcon.flickable.contentY + arrowUpIcon.flickable.originY + arrowUpIcon.flickable.height*2) >= arrowUpIcon.flickable.height/2) {
|
|
closeRequested();
|
|
} else {
|
|
openRequested();
|
|
}
|
|
scrollAnim.restart();
|
|
}
|
|
|
|
Item {
|
|
anchors.centerIn: parent
|
|
|
|
width: units.iconSizes.medium
|
|
height: width
|
|
|
|
Rectangle {
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
right: parent.horizontalCenter
|
|
left: parent.left
|
|
verticalCenterOffset: -arrowUpIcon.height/4 + (arrowUpIcon.height/4) * arrowUpIcon.factor
|
|
}
|
|
color: theme.backgroundColor
|
|
transformOrigin: Item.Right
|
|
rotation: -45 + 90 * arrowUpIcon.factor
|
|
antialiasing: true
|
|
height: 1
|
|
}
|
|
Rectangle {
|
|
anchors {
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.horizontalCenter
|
|
right: parent.right
|
|
verticalCenterOffset: -arrowUpIcon.height/4 + (arrowUpIcon.height/4) * arrowUpIcon.factor
|
|
}
|
|
color: theme.backgroundColor
|
|
transformOrigin: Item.Left
|
|
rotation: 45 - 90 * arrowUpIcon.factor
|
|
antialiasing: true
|
|
height: 1
|
|
}
|
|
}
|
|
}
|
|
|