2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-02-22 15:41:45 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2014 Thomas Lübking <thomas.luebking@gmail.com>
|
2015-02-22 15:41:45 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-02-22 15:41:45 +00:00
|
|
|
|
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();
|