You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
latte-dock/plasmoid/package/contents/ui/task/animations/RealRemovalAnimation.qml

201 lines
9.1 KiB
QML

/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* Latte-Dock 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.0
import org.kde.plasma.plasmoid 2.0
import org.kde.latte 0.2 as Latte
SequentialAnimation {
id: taskRealRemovalAnimation
PropertyAction { target: taskItem; property: "ListView.delayRemove"; value: true }
PropertyAction { target: taskItem; property: "inAnimation"; value: true }
PropertyAction { target: taskItem; property: "inAddRemoveAnimation"; value: true }
PropertyAction { target: taskItem; property: "inRemoveStage"; value: true }
//Animation Add/Remove (1) - when is window with no launcher, animations enabled
//Animation Add/Remove (4) - the user removes a launcher, animation enabled
property bool animation1: ((((tasksModel.launcherPosition(taskItem.launcherUrl) === -1)
&& (tasksModel.launcherPosition(taskItem.launcherUrlWithIcon) === -1) )
|| !tasksModel.launcherInCurrentActivity(taskItem.launcherUrl))
&& !taskItem.isStartup && Latte.WindowSystem.compositingActive)
property bool animation4: ((taskItem.launcherUrl===root.launcherForRemoval
|| taskItem.launcherUrlWithIcon===root.launcherForRemoval )
&& !taskItem.isStartup && Latte.WindowSystem.compositingActive)
property bool enabledAnimation: (animation1 || animation4) && (root.animationNewWindowSliding)
&& !taskItem.inBouncingAnimation
&& !taskItem.isSeparator
&& taskItem.visible;
ScriptAction{
script:{
//! When a window is removed and afterwards its launcher must be shown immediately!
if (!enabledAnimation && taskItem.isWindow && !taskItem.isSeparator
&& tasksModel.launcherPosition(taskItem.launcherUrl) !== -1
&& !root.immediateLauncherExists(taskItem.launcherUrl)){
root.addImmediateLauncher(taskItem.launcherUrl);
}
//trying to fix the ListView nasty behavior
//during the removal the anchoring for ListView children changes a lot
var previousTask = icList.childAtIndex(taskItem.lastValidIndex-1);
if (previousTask !== undefined && !previousTask.isStartup && !previousTask.inBouncingAnimation){
//! When removing a task and there are surrounding separators then the hidden spacers
//! are updated immediately for the neighbour tasks. In such case in order to not break
//! the removal animation a small margin must applied
var nextTaskIsSeparator = (lastValidIndex !== -1) && enabledAnimation &&
((taskItem.hasNeighbourSeparator(lastValidIndex+1,true) && !taskItem.isSeparator && lastValidIndex<parabolicManager.lastRealTaskIndex)
|| (latteView && latteView.parabolicManager.isSeparator(latteView.latteAppletPos+1) && lastValidIndex>parabolicManager.lastRealTaskIndex));
var previousTaskIsSeparator = (lastValidIndex !== -1) && enabledAnimation &&
((taskItem.hasNeighbourSeparator(lastValidIndex-1,false) && !taskItem.isSeparator && lastValidIndex>parabolicManager.firstRealTaskIndex)
|| (latteView && latteView.parabolicManager.isSeparator(latteView.latteAppletPos-1) && lastValidIndex<=parabolicManager.firstRealTaskIndex));
var spacer = nextTaskIsSeparator ? -(2+root.lengthMargin) : ( previousTaskIsSeparator ? (2+root.lengthMargin)/2 : 0);
//console.log("EDGES ::: " + parabolicManager.firstRealTaskIndex + " _ " + parabolicManager.lastRealTaskIndex);
//console.log("Removing ::: " + lastValidIndex + " _ " + launcherUrl + " _ " + previousTaskIsSeparator + " _ " + nextTaskIsSeparator);
if (root.vertical) {
taskItem.anchors.top = previousTask.bottom;
taskItem.anchors.topMargin = spacer;
} else {
taskItem.anchors.left = previousTask.right;
taskItem.anchors.leftMargin = spacer;
}
}
// console.log("1." + taskItem.launcherUrl + " - " + taskRealRemovalAnimation.enabledAnimation);
// console.log("2." + root.launcherForRemoval + " - " + taskItem.isLauncher);
root.signalAnimationsNeedLength(1);
if (wrapper.mScale > 1 && !taskRealRemovalAnimation.enabledAnimation
&& !taskItem.inBouncingAnimation && Latte.WindowSystem.compositingActive) {
parabolicManager.setFrozenTask(taskItem.launcherUrl, wrapper.mScale);
}
}
}
//Ghost animation that acts as a delayer in case there is a bouncing animation
//taking place
PropertyAnimation {
target: wrapper
property: "opacity"
to: 1
//this duration must be a bit less than the bouncing animation. Otherwise the
//smooth transition between removals is breaking
duration: taskItem.inBouncingAnimation && !taskItem.isSeparator? 4*launcherSpeedStep + 50 : 0
easing.type: Easing.InQuad
property int launcherSpeedStep: root.durationTime * 0.8 * units.longDuration
}
//end of ghost animation
PropertyAnimation {
target: wrapper
property: "mScale"
to: 1
duration: taskRealRemovalAnimation.enabledAnimation ? showWindowAnimation.speed : 0
easing.type: Easing.InQuad
}
//PropertyAction { target: wrapper; property: "opacity"; value: isWindow ? 0 : 1 }
//animation mainly for launchers removal and startups
ParallelAnimation{
id: removalAnimation
// property int speed: (IsStartup && !taskItem.visible)? 0 : 400
//property int speed: 400
NumberAnimation {
target: wrapper;
property: "opacity";
to: 0;
duration: taskRealRemovalAnimation.enabledAnimation ? 1.35*showWindowAnimation.speed : 0
easing.type: Easing.InQuad
}
PropertyAnimation {
target: wrapper
property: (icList.orientation === Qt.Vertical) ? "tempScaleWidth" : "tempScaleHeight"
to: 0
duration: taskRealRemovalAnimation.enabledAnimation ? 1.35*showWindowAnimation.speed : 0
easing.type: Easing.InQuad
}
}
//smooth move into place the surrounding tasks
PropertyAnimation {
target: wrapper
property: (icList.orientation === Qt.Vertical) ? "tempScaleHeight" : "tempScaleWidth"
to: 0
duration: taskRealRemovalAnimation.enabledAnimation ? 1.35*showWindowAnimation.speed : 0
easing.type: Easing.InQuad
}
ScriptAction{
script:{
if (showWindowAnimation.animationSent){
//console.log("SAFETY REMOVAL 1: animation removing ended");
showWindowAnimation.animationSent = false;
root.signalAnimationsNeedLength(-1);
}
root.signalAnimationsNeedLength(-1);
if(taskItem.launcherUrl===root.launcherForRemoval && taskItem.isLauncher)
root.launcherForRemoval="";
if (windowsPreviewDlg.visible && windowsPreviewDlg.mainItem.parentTask === taskItem
&& isWindow && !isGroupParent){
hidePreview();
}
if (root.showWindowsOnlyFromLaunchers) {
if (root.vertical) {
taskItem.anchors.top = undefined;
taskItem.anchors.topMargin = 0;
} else {
taskItem.anchors.left = undefined;
taskItem.anchors.leftMargin = 0;
}
}
taskItem.visible = false;
//send signal that the launcher is really removing
if (taskItem.inBouncingAnimation) {
root.removeWaitingLauncher(taskItem.launcherUrl);
root.setGlobalDirectRender(false);
}
}
}
PropertyAction { target: taskItem; property: "inAnimation"; value: false }
PropertyAction { target: taskItem; property: "inAddRemoveAnimation"; value: false }
PropertyAction { target: taskItem; property: "inRemoveStage"; value: false }
PropertyAction { target: taskItem; property: "ListView.delayRemove"; value: false }
}