2015-02-22 15:41:45 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2014 Thomas Lübking <thomas.luebking@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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
2016-10-07 14:21:56 +00:00
|
|
|
var registeredBorders = [];
|
|
|
|
|
2015-02-22 15:41:45 +00:00
|
|
|
function isRelevant(client) {
|
|
|
|
return client.minimizable &&
|
|
|
|
(client.onAllDesktops || client.desktop === workspace.currentDesktop);
|
|
|
|
(!client.activities.length || client.activities.indexOf(workspace.currentActivity.toString()) > -1);
|
|
|
|
}
|
|
|
|
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
function minimizeAllWindows() {
|
2015-02-22 15:41:45 +00:00
|
|
|
var allClients = workspace.clientList();
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
var relevantClients = [];
|
2015-12-02 21:37:20 +00:00
|
|
|
var minimize = false;
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
|
2015-02-22 15:41:45 +00:00
|
|
|
for (var i = 0; i < allClients.length; ++i) {
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
if (!isRelevant(allClients[i])) {
|
|
|
|
continue;
|
2015-02-22 15:41:45 +00:00
|
|
|
}
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
if (!allClients[i].minimized) {
|
|
|
|
minimize = true;
|
|
|
|
}
|
|
|
|
relevantClients.push(allClients[i]);
|
2015-02-22 15:41:45 +00:00
|
|
|
}
|
Emphasize minimization in MinimizeAll script
Summary:
MinimizeAll should work as follows:
> As long as there's something to minimize, do that.
> Otherwise unminimize only the windows we minimized
> on last invocation.
Quote above is from Comment 11 by Thomas Lübking of BUG: 356161.
But current code does not fulfill these duties. Try next case: run minimizeall on some windows, then click on one of windows, then run minimizeall again. All windows would be unminimized!
I have tried to make small changes to original code of main.js, but i can't because i don't understand it.
Thats why i wrote my own version. Then i changed my version to version of zzag, because his code is more simple. I have tested both versions.
BUG: 356161
Reviewers: colomar, #kwin, zzag
Reviewed By: #kwin, zzag
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D24044
2019-09-18 15:09:42 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < relevantClients.length; ++i) {
|
|
|
|
var wasMinimizedByScript = relevantClients[i].minimizedByScript;
|
|
|
|
delete relevantClients[i].minimizedByScript;
|
|
|
|
|
|
|
|
if (minimize) {
|
|
|
|
if (relevantClients[i].minimized) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
relevantClients[i].minimized = true;
|
|
|
|
relevantClients[i].minimizedByScript = true;
|
|
|
|
} else {
|
|
|
|
if (!wasMinimizedByScript) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
relevantClients[i].minimized = false;
|
2015-12-02 21:37:20 +00:00
|
|
|
}
|
2015-02-22 15:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-07 14:21:56 +00:00
|
|
|
function init() {
|
|
|
|
for (var i in registeredBorders) {
|
|
|
|
unregisterScreenEdge(registeredBorders[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
registeredBorders = [];
|
|
|
|
|
|
|
|
var borders = readConfig("BorderActivate", "").toString().split(",");
|
|
|
|
for (var i in borders) {
|
2017-01-16 16:12:20 +00:00
|
|
|
var border = parseInt(borders[i]);
|
|
|
|
if (isFinite(border)) {
|
2017-01-13 15:18:18 +00:00
|
|
|
registeredBorders.push(border);
|
|
|
|
registerScreenEdge(border, minimizeAllWindows);
|
|
|
|
}
|
2016-10-07 14:21:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
options.configChanged.connect(init);
|
|
|
|
|
2015-02-22 15:41:45 +00:00
|
|
|
registerShortcut("MinimizeAll", "MinimizeAll", "Meta+Shift+D", minimizeAllWindows);
|
2016-10-07 14:21:56 +00:00
|
|
|
init();
|