kwin/effects/fadedesktop/package/contents/code/main.js
2019-09-29 17:03:25 +03:00

136 lines
4.7 KiB
JavaScript

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2009 Lucas Murray <lmurray@undefinedfire.com>
Copyright (C) 2012 Martin Gräßlin <mgraesslin@kde.org>
Copyright (C) 2018 Vlad Zahorodnii <vladzzag@gmail.com>
This program 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.
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 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/>.
*********************************************************************/
"use strict";
var fadeDesktopEffect = {
duration: animationTime(250),
loadConfig: function () {
fadeDesktopEffect.duration = animationTime(250);
},
fadeInWindow: function (window) {
if (window.fadeOutAnimation) {
if (redirect(window.fadeOutAnimation, Effect.Backward)) {
return;
}
cancel(window.fadeOutAnimation);
delete window.fadeOutAnimation;
}
if (window.fadeInAnimation) {
if (redirect(window.fadeInAnimation, Effect.Forward)) {
return;
}
cancel(window.fadeInAnimation);
}
window.fadeInAnimation = animate({
window: window,
curve: QEasingCurve.Linear,
duration: fadeDesktopEffect.duration,
fullScreen: true,
keepAlive: false,
type: Effect.Opacity,
from: 0.0,
to: 1.0
});
},
fadeOutWindow: function (window) {
if (window.fadeInAnimation) {
if (redirect(window.fadeInAnimation, Effect.Backward)) {
return;
}
cancel(window.fadeInAnimation);
delete window.fadeInAnimation;
}
if (window.fadeOutAnimation) {
if (redirect(window.fadeOutAnimation, Effect.Forward)) {
return;
}
cancel(window.fadeOutAnimation);
}
window.fadeOutAnimation = animate({
window: window,
curve: QEasingCurve.Linear,
duration: fadeDesktopEffect.duration,
fullScreen: true,
keepAlive: false,
type: Effect.Opacity,
from: 1.0,
to: 0.0
});
},
slotDesktopChanged: function (oldDesktop, newDesktop, movingWindow) {
if (effects.hasActiveFullScreenEffect && !effect.isActiveFullScreenEffect) {
return;
}
var stackingOrder = effects.stackingOrder;
for (var i = 0; i < stackingOrder.length; ++i) {
var w = stackingOrder[i];
// Don't animate windows that have been moved to the current
// desktop, i.e. newDesktop.
if (w == movingWindow) {
continue;
}
// If the window is not on the old and the new desktop or it's
// on both of them, then don't animate it.
var onOldDesktop = w.isOnDesktop(oldDesktop);
var onNewDesktop = w.isOnDesktop(newDesktop);
if (onOldDesktop == onNewDesktop) {
continue;
}
if (w.minimized) {
continue;
}
if (!w.isOnActivity(effects.currentActivity)){
continue;
}
if (onOldDesktop) {
fadeDesktopEffect.fadeOutWindow(w);
} else {
fadeDesktopEffect.fadeInWindow(w);
}
}
},
slotIsActiveFullScreenEffectChanged: function () {
var isActiveFullScreen = effect.isActiveFullScreenEffect;
var stackingOrder = effects.stackingOrder;
for (var i = 0; i < stackingOrder.length; ++i) {
var w = stackingOrder[i];
w.setData(Effect.WindowForceBlurRole, isActiveFullScreen);
w.setData(Effect.WindowForceBackgroundContrastRole, isActiveFullScreen);
}
},
init: function () {
effect.configChanged.connect(fadeDesktopEffect.loadConfig);
effect.isActiveFullScreenEffectChanged.connect(
fadeDesktopEffect.slotIsActiveFullScreenEffectChanged);
effects['desktopChanged(int,int,KWin::EffectWindow*)'].connect(
fadeDesktopEffect.slotDesktopChanged);
}
};
fadeDesktopEffect.init();