mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-08-02 01:34:46 +00:00
Merge branch 'mart/containmentPreview'
This commit is contained in:
commit
976552d8bd
3 changed files with 145 additions and 109 deletions
|
|
@ -25,7 +25,7 @@ Item {
|
||||||
|
|
||||||
property string shell : "org.kde.plasma.phone"
|
property string shell : "org.kde.plasma.phone"
|
||||||
property bool willing : true
|
property bool willing : true
|
||||||
property int priority : currentSession == "plasma-mobile" ? 0 : 10
|
property int priority : 10
|
||||||
|
|
||||||
// This is not needed, but allows the
|
// This is not needed, but allows the
|
||||||
// handler to know whether its shell is loaded
|
// handler to know whether its shell is loaded
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ MouseArea {
|
||||||
right: handle.mirrored ? parent.right : undefined
|
right: handle.mirrored ? parent.right : undefined
|
||||||
left: handle.mirrored ? undefined : parent.left
|
left: handle.mirrored ? undefined : parent.left
|
||||||
}
|
}
|
||||||
|
property Item frame: nextActivityLabel
|
||||||
width: units.gridUnit
|
width: units.gridUnit
|
||||||
drag.target: nextActivityLabel
|
drag.target: nextActivityLabel
|
||||||
drag.axis: Drag.XAxis
|
drag.axis: Drag.XAxis
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,9 @@
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import QtQuick 2.6
|
import QtQuick 2.7
|
||||||
import QtGraphicalEffects 1.0
|
import QtGraphicalEffects 1.0
|
||||||
|
import QtQuick.Controls 2.3
|
||||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
import org.kde.plasma.shell 2.0 as Shell
|
import org.kde.plasma.shell 2.0 as Shell
|
||||||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||||||
|
|
@ -30,41 +31,145 @@ import "../components"
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
width: 1080
|
width: 0
|
||||||
height: 1920
|
height: 0
|
||||||
|
|
||||||
property Item containment;
|
property Item containment;
|
||||||
|
property Item containmentNextActivityPreview;
|
||||||
property Item wallpaper;
|
property Item wallpaper;
|
||||||
property int notificationId: 0;
|
property int notificationId: 0;
|
||||||
property int buttonHeight: width/4
|
property int buttonHeight: width/4
|
||||||
property bool containmentsEnterFromRight: true
|
property bool loadCompleted: false
|
||||||
|
|
||||||
//NOTE: this
|
XAnimator {
|
||||||
PathView {
|
id: switchAnim
|
||||||
id: activitiesRepresentation
|
target: activitiesLayout
|
||||||
|
duration: units.longDuration
|
||||||
|
easing.type: Easing.InOutQuad
|
||||||
|
}
|
||||||
|
MouseArea {
|
||||||
|
id: activitiesView
|
||||||
|
z: 99
|
||||||
|
visible: root.containment
|
||||||
|
anchors.fill: parent
|
||||||
|
drag.filterChildren: true
|
||||||
|
drag.target: activitiesLayout
|
||||||
|
drag.axis: Drag.XAxis
|
||||||
|
drag.minimumX: -activitiesLayout.width + width
|
||||||
|
drag.maximumX: 0
|
||||||
|
property int currentIndex: -1
|
||||||
|
property Item nextContainment: root.containment
|
||||||
|
|
||||||
|
function adjustPosition() {
|
||||||
|
if (!activitiesLayout.loadCompleted) {
|
||||||
|
activitiesLayout.x = - currentIndex * width;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switchAnim.from = activitiesLayout.x;
|
||||||
|
switchAnim.to = - currentIndex * width;
|
||||||
|
switchAnim.running = true;
|
||||||
|
}
|
||||||
|
onCurrentIndexChanged: adjustPosition();
|
||||||
|
|
||||||
|
//don't animate
|
||||||
|
onWidthChanged: contentX = currentIndex * width;
|
||||||
|
|
||||||
|
onPositionChanged: {
|
||||||
|
var tempIndex = Math.round(-activitiesLayout.x / width);
|
||||||
|
nextContainment = activitiesLayout.children[tempIndex].containment;
|
||||||
|
}
|
||||||
|
onReleased: {
|
||||||
|
currentIndex = Math.round(-activitiesLayout.x / width);
|
||||||
|
//unconditionally run the slide anim
|
||||||
|
adjustPosition();
|
||||||
|
}
|
||||||
|
Row {
|
||||||
|
id: activitiesLayout
|
||||||
|
height: activitiesView.height
|
||||||
|
spacing: 0
|
||||||
|
//don't try to do anything until we are well setted up
|
||||||
|
property bool loadCompleted: root.loadCompleted && width == activitiesView.width * (activitiesLayout.children.length - 1) && activitiesLayout.children.length == activityRepeater.count + 1
|
||||||
|
onLoadCompletedChanged: activitiesView.currentIndexChanged();
|
||||||
|
|
||||||
|
Repeater {
|
||||||
|
id: activityRepeater
|
||||||
model: Activities.ActivityModel {
|
model: Activities.ActivityModel {
|
||||||
id: activityModel
|
id: activityModel
|
||||||
}
|
}
|
||||||
width: 10
|
|
||||||
height: 10
|
|
||||||
cacheItemCount: 999//count
|
|
||||||
delegate: Item {
|
delegate: Item {
|
||||||
|
id: mainDelegate
|
||||||
|
width: activitiesView.width
|
||||||
|
height: activitiesView.height
|
||||||
|
property Item containment
|
||||||
|
//inViewport should be only the current, and the other adjacent two
|
||||||
|
readonly property bool inViewport: activitiesLayout.loadCompleted && root.containment &&
|
||||||
|
((x >= -activitiesLayout.x &&
|
||||||
|
x <= -activitiesLayout.x + activitiesView.width) ||
|
||||||
|
(x + width >= -activitiesLayout.x &&
|
||||||
|
x + width < -activitiesLayout.x + activitiesView.width))
|
||||||
|
readonly property bool currentActivity: root.containment && model.current
|
||||||
|
|
||||||
|
|
||||||
Connections {
|
Connections {
|
||||||
target: activitiesRepresentation
|
target: activitiesView
|
||||||
onCurrentIndexChanged: {
|
onCurrentIndexChanged: {
|
||||||
if (index == activitiesRepresentation.currentIndex) {
|
if (activitiesView.currentIndex == index) {
|
||||||
activityModel.setCurrentActivity(model.id, function(){});
|
activityModel.setCurrentActivity(model.id, function(){
|
||||||
|
mainDelegate.containment.parent = mainDelegate;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onFlickEnded: activitiesView.movementEnded()
|
||||||
|
}
|
||||||
|
onInViewportChanged: {
|
||||||
|
if (inViewport && !mainDelegate.containment) {
|
||||||
|
mainDelegate.containment = desktop.candidateContainments[model.id];
|
||||||
|
//desktop.containmentItemForActivity(model.id);
|
||||||
|
containmentNextActivityPreview = containment;
|
||||||
|
mainDelegate.containment.parent = mainDelegate;
|
||||||
|
mainDelegate.containment.anchors.fill = mainDelegate;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onCurrentActivityChanged: {
|
||||||
|
if (currentActivity) {
|
||||||
|
activitiesView.currentIndex = index;
|
||||||
|
}
|
||||||
|
mainDelegate.containment.visible = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ActivityHandle {
|
//TODO: adjust its Y to current containment availablescreenrect
|
||||||
mirrored: true
|
PageIndicator {
|
||||||
|
z: 100
|
||||||
|
anchors {
|
||||||
|
bottom: parent.bottom
|
||||||
|
bottomMargin: root.containment.availableScreenRect.y + root.containment.availableScreenRect.height
|
||||||
|
horizontalCenter: parent.horizontalCenter
|
||||||
|
}
|
||||||
|
count: activitiesView.count
|
||||||
|
currentIndex: activitiesView.currentIndex
|
||||||
|
}
|
||||||
|
PlasmaCore.FrameSvgItem {
|
||||||
|
z: 100
|
||||||
|
opacity: activitiesView.drag.active ? 1 : 0
|
||||||
|
anchors.centerIn: parent
|
||||||
|
imagePath: "widgets/background"
|
||||||
|
width: childrenRect.width + units.gridUnit*2
|
||||||
|
height: childrenRect.height + units.gridUnit*2
|
||||||
|
PlasmaComponents.Label {
|
||||||
|
anchors.centerIn: parent
|
||||||
|
text: activitiesView.nextContainment.activityName
|
||||||
|
}
|
||||||
|
Behavior on opacity {
|
||||||
|
OpacityAnimator {
|
||||||
|
duration: units.longDuration
|
||||||
|
easing.type: Easing.InOutQuad
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ActivityHandle {
|
|
||||||
mirrored: false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleWidgetExplorer(containment) {
|
function toggleWidgetExplorer(containment) {
|
||||||
|
|
@ -93,37 +198,11 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onContainmentChanged: {
|
Binding {
|
||||||
if (containment == null) {
|
target: containment
|
||||||
return;
|
property: "width"
|
||||||
|
value: root.width
|
||||||
}
|
}
|
||||||
|
|
||||||
if (switchAnim.running) {
|
|
||||||
//If the animation was still running, stop it and reset
|
|
||||||
//everything so that a consistent state can be kept
|
|
||||||
switchAnim.running = false;
|
|
||||||
internal.newContainment.visible = false;
|
|
||||||
internal.oldContainment.visible = false;
|
|
||||||
internal.oldContainment = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
internal.newContainment = containment;
|
|
||||||
containment.visible = true;
|
|
||||||
|
|
||||||
if (internal.oldContainment != null && internal.oldContainment != containment) {
|
|
||||||
switchAnim.running = true;
|
|
||||||
} else {
|
|
||||||
containment.anchors.left = root.left;
|
|
||||||
containment.anchors.top = root.top;
|
|
||||||
containment.anchors.right = root.right;
|
|
||||||
containment.anchors.bottom = root.bottom;
|
|
||||||
if (internal.oldContainment) {
|
|
||||||
internal.oldContainment.visible = false;
|
|
||||||
}
|
|
||||||
internal.oldContainment = containment;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//some properties that shouldn't be accessible from elsewhere
|
//some properties that shouldn't be accessible from elsewhere
|
||||||
QtObject {
|
QtObject {
|
||||||
id: internal;
|
id: internal;
|
||||||
|
|
@ -132,60 +211,6 @@ Item {
|
||||||
property Item newContainment: null;
|
property Item newContainment: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
SequentialAnimation {
|
|
||||||
id: switchAnim
|
|
||||||
ScriptAction {
|
|
||||||
script: {
|
|
||||||
if (containment) {
|
|
||||||
containment.anchors.left = undefined;
|
|
||||||
containment.anchors.top = undefined;
|
|
||||||
containment.anchors.right = undefined;
|
|
||||||
containment.anchors.bottom = undefined;
|
|
||||||
containment.z = 1;
|
|
||||||
containment.x = root.containmentsEnterFromRight ? root.width : -root.width;
|
|
||||||
}
|
|
||||||
if (internal.oldContainment) {
|
|
||||||
internal.oldContainment.anchors.left = undefined;
|
|
||||||
internal.oldContainment.anchors.top = undefined;
|
|
||||||
internal.oldContainment.anchors.right = undefined;
|
|
||||||
internal.oldContainment.anchors.bottom = undefined;
|
|
||||||
internal.oldContainment.z = 0;
|
|
||||||
internal.oldContainment.x = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ParallelAnimation {
|
|
||||||
NumberAnimation {
|
|
||||||
target: internal.oldContainment
|
|
||||||
properties: "x"
|
|
||||||
to: internal.newContainment != null ? (root.containmentsEnterFromRight ? -root.width : root.width) : 0
|
|
||||||
duration: 400
|
|
||||||
easing.type: Easing.InOutQuad
|
|
||||||
}
|
|
||||||
NumberAnimation {
|
|
||||||
target: internal.newContainment
|
|
||||||
properties: "x"
|
|
||||||
to: 0
|
|
||||||
duration: units.longDuration
|
|
||||||
easing.type: Easing.InOutQuad
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ScriptAction {
|
|
||||||
script: {
|
|
||||||
if (internal.oldContainment) {
|
|
||||||
internal.oldContainment.visible = false;
|
|
||||||
}
|
|
||||||
if (containment) {
|
|
||||||
containment.anchors.left = root.left;
|
|
||||||
containment.anchors.top = root.top;
|
|
||||||
containment.anchors.right = root.right;
|
|
||||||
containment.anchors.bottom = root.bottom;
|
|
||||||
internal.oldContainment = containment;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//pass the focus to the containment, so it can react to homescreen activate/inactivate
|
//pass the focus to the containment, so it can react to homescreen activate/inactivate
|
||||||
Connections {
|
Connections {
|
||||||
target: desktop
|
target: desktop
|
||||||
|
|
@ -205,11 +230,21 @@ Item {
|
||||||
source: Qt.resolvedUrl("Pin.qml")
|
source: Qt.resolvedUrl("Pin.qml")
|
||||||
}
|
}
|
||||||
|
|
||||||
Component.onCompleted: {
|
onWidthChanged: {
|
||||||
|
//There will be a resize at the very start which we can't avoid, don't do anything until then
|
||||||
//configure the view behavior
|
//configure the view behavior
|
||||||
if (desktop) {
|
if (desktop && root.width > 0) {
|
||||||
desktop.width = width;
|
desktop.width = width;
|
||||||
desktop.height = height;
|
desktop.height = height;
|
||||||
|
root.loadCompleted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Component.onCompleted: {
|
||||||
|
//configure the view behavior
|
||||||
|
if (desktop && root.width > 0) {
|
||||||
|
desktop.width = width;
|
||||||
|
desktop.height = height;
|
||||||
|
root.loadCompleted = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue