f1968d0cd9
Summary: In order to check whether a window is on some particular virtual desktop, one has to use isOnDesktop. Also, this change adds implicit support for the new virtual desktop protocol. Test Plan: Switched between virtual desktops with a Konsole window being on all desktops. Reviewers: #kwin, davidedmundson Reviewed By: #kwin, davidedmundson Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D16103
92 lines
3 KiB
JavaScript
92 lines
3 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>
|
|
|
|
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/>.
|
|
*********************************************************************/
|
|
var duration;
|
|
function loadConfig() {
|
|
duration = animationTime(250);
|
|
}
|
|
loadConfig();
|
|
effect.configChanged.connect(function() {
|
|
loadConfig();
|
|
});
|
|
effects['desktopChanged(int,int,KWin::EffectWindow*)'].connect(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) {
|
|
animate({
|
|
window: w,
|
|
duration: duration,
|
|
animations: [{
|
|
type: Effect.Opacity,
|
|
to: 0.0,
|
|
fullScreen: true
|
|
}]
|
|
});
|
|
} else {
|
|
animate({
|
|
window: w,
|
|
duration: duration,
|
|
animations: [{
|
|
type: Effect.Opacity,
|
|
to: 1.0,
|
|
from: 0.0,
|
|
fullScreen: true
|
|
}]
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
effect.isActiveFullScreenEffectChanged.connect(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);
|
|
}
|
|
});
|