2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
// SELI zmenit doc
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
This file contains things relevant to stacking order and layers.
|
|
|
|
|
|
|
|
Design:
|
|
|
|
|
|
|
|
Normal unconstrained stacking order, as requested by the user (by clicking
|
|
|
|
on windows to raise them, etc.), is in Workspace::unconstrained_stacking_order.
|
|
|
|
That list shouldn't be used at all, except for building
|
|
|
|
Workspace::stacking_order. The building is done
|
|
|
|
in Workspace::constrainedStackingOrder(). Only Workspace::stackingOrder() should
|
|
|
|
be used to get the stacking order, because it also checks the stacking order
|
|
|
|
is up to date.
|
|
|
|
All clients are also stored in Workspace::clients (except for isDesktop() clients,
|
|
|
|
as those are very special, and are stored in Workspace::desktops), in the order
|
|
|
|
the clients were created.
|
|
|
|
|
|
|
|
Every window has one layer assigned in which it is. There are 6 layers,
|
|
|
|
from bottom : DesktopLayer, BelowLayer, NormalLayer, DockLayer, AboveLayer
|
|
|
|
and ActiveLayer (see also NETWM sect.7.10.). The layer a window is in depends
|
|
|
|
on the window type, and on other things like whether the window is active.
|
|
|
|
|
|
|
|
NET::Splash clients belong to the Normal layer. NET::TopMenu clients
|
|
|
|
belong to Dock layer. Clients that are both NET::Dock and NET::KeepBelow
|
|
|
|
are in the Normal layer in order to keep the 'allow window to cover
|
|
|
|
the panel' Kicker setting to work as intended (this may look like a slight
|
|
|
|
spec violation, but a) I have no better idea, b) the spec allows adjusting
|
|
|
|
the stacking order if the WM thinks it's a good idea . We put all
|
|
|
|
NET::KeepAbove above all Docks too, even though the spec suggests putting
|
|
|
|
them in the same layer.
|
|
|
|
|
|
|
|
Most transients are in the same layer as their mainwindow,
|
|
|
|
see Workspace::constrainedStackingOrder(), they may also be in higher layers, but
|
|
|
|
they should never be below their mainwindow.
|
|
|
|
|
|
|
|
When some client attribute changes (above/below flag, transiency...),
|
|
|
|
Workspace::updateClientLayer() should be called in order to make
|
|
|
|
sure it's moved to the appropriate layer ClientList if needed.
|
|
|
|
|
|
|
|
Currently the things that affect client in which layer a client
|
|
|
|
belongs: KeepAbove/Keep Below flags, window type, fullscreen
|
|
|
|
state and whether the client is active, mainclient (transiency).
|
|
|
|
|
|
|
|
Make sure updateStackingOrder() is called in order to make
|
|
|
|
Workspace::stackingOrder() up to date and propagated to the world.
|
|
|
|
Using Workspace::blockStackingUpdates() (or the StackingUpdatesBlocker
|
|
|
|
helper class) it's possible to temporarily disable updates
|
|
|
|
and the stacking order will be updated once after it's allowed again.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "workspace.h"
|
|
|
|
#include "tabbox.h"
|
|
|
|
#include "group.h"
|
|
|
|
#include "rules.h"
|
2007-05-23 16:22:59 +00:00
|
|
|
#include "unmanaged.h"
|
2008-04-24 12:53:03 +00:00
|
|
|
#include "deleted.h"
|
2010-09-25 18:51:18 +00:00
|
|
|
#include "effects.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <QX11Info>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
//*******************************
|
|
|
|
// Workspace
|
|
|
|
//*******************************
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::updateClientLayer(Client* c)
|
|
|
|
{
|
|
|
|
if (c == NULL)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->layer() == c->belongsToLayer())
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
c->invalidateLayer(); // invalidate, will be updated when doing restacking
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = c->transients().constBegin();
|
|
|
|
it != c->transients().constEnd();
|
|
|
|
++it)
|
|
|
|
updateClientLayer(*it);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::updateStackingOrder(bool propagate_new_clients)
|
|
|
|
{
|
|
|
|
if (block_stacking_updates > 0) {
|
|
|
|
if (propagate_new_clients)
|
2007-04-29 17:35:43 +00:00
|
|
|
blocked_propagating_new_clients = true;
|
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
ClientList new_stacking_order = constrainedStackingOrder();
|
2011-01-30 14:34:42 +00:00
|
|
|
bool changed = (new_stacking_order != stacking_order || force_restacking);
|
2007-07-04 09:51:10 +00:00
|
|
|
force_restacking = false;
|
2007-04-29 17:35:43 +00:00
|
|
|
stacking_order = new_stacking_order;
|
|
|
|
#if 0
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << "stacking:" << changed;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (changed || propagate_new_clients) {
|
|
|
|
for (ClientList::ConstIterator it = stacking_order.begin();
|
|
|
|
it != stacking_order.end();
|
|
|
|
++it)
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << (void*)(*it) << *it << ":" << (*it)->layer();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
#endif
|
2011-01-30 14:34:42 +00:00
|
|
|
if (changed || propagate_new_clients) {
|
|
|
|
propagateClients(propagate_new_clients);
|
2007-04-29 17:35:43 +00:00
|
|
|
addRepaintFull();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (active_client)
|
2007-04-29 22:37:19 +00:00
|
|
|
active_client->updateMouseGrab();
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
Propagates the managed clients to the world.
|
|
|
|
Called ONLY from updateStackingOrder().
|
|
|
|
*/
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::propagateClients(bool propagate_new_clients)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Window *cl; // MW we should not assume WId and Window to be compatible
|
2011-01-30 14:34:42 +00:00
|
|
|
// when passig pointers around.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
// restack the windows according to the stacking order
|
|
|
|
// 1 - supportWindow, 1 - topmenu_space, 8 - electric borders
|
|
|
|
Window* new_stack = new Window[ stacking_order.count() + 1 + 1 + 8 ];
|
|
|
|
int pos = 0;
|
|
|
|
// Stack all windows under the support window. The support window is
|
|
|
|
// not used for anything (besides the NETWM property), and it's not shown,
|
|
|
|
// but it was lowered after kwin startup. Stacking all clients below
|
|
|
|
// it ensures that no client will be ever shown above override-redirect
|
|
|
|
// windows (e.g. popups).
|
|
|
|
new_stack[ pos++ ] = supportWindow->winId();
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = 0;
|
|
|
|
i < ELECTRIC_COUNT;
|
|
|
|
++i)
|
|
|
|
if (electric_windows[ i ] != None)
|
2007-04-29 17:35:43 +00:00
|
|
|
new_stack[ pos++ ] = electric_windows[ i ];
|
|
|
|
int topmenu_space_pos = 1; // not 0, that's supportWindow !!!
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = stacking_order.size() - 1; i >= 0; i--) {
|
|
|
|
if (stacking_order.at(i)->hiddenPreview())
|
2007-07-04 09:51:10 +00:00
|
|
|
continue;
|
2011-01-30 14:34:42 +00:00
|
|
|
new_stack[ pos++ ] = stacking_order.at(i)->frameId();
|
|
|
|
if (stacking_order.at(i)->belongsToLayer() >= DockLayer)
|
2007-04-29 17:35:43 +00:00
|
|
|
topmenu_space_pos = pos;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (topmenu_space != NULL) {
|
|
|
|
// make sure the topmenu space is below all topmenus, fullscreens, etc.
|
|
|
|
for (int i = pos;
|
|
|
|
i > topmenu_space_pos;
|
|
|
|
--i)
|
2007-04-29 17:35:43 +00:00
|
|
|
new_stack[ i ] = new_stack[ i - 1 ];
|
|
|
|
new_stack[ topmenu_space_pos ] = topmenu_space->winId();
|
|
|
|
++pos;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-04 09:51:10 +00:00
|
|
|
// when having hidden previews, stack hidden windows below everything else
|
|
|
|
// (as far as pure X stacking order is concerned), in order to avoid having
|
|
|
|
// these windows that should be unmapped to interfere with other windows
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = stacking_order.size() - 1; i >= 0; i--) {
|
|
|
|
if (!stacking_order.at(i)->hiddenPreview())
|
2007-07-04 09:51:10 +00:00
|
|
|
continue;
|
2011-01-30 14:34:42 +00:00
|
|
|
new_stack[ pos++ ] = stacking_order.at(i)->frameId();
|
|
|
|
if (stacking_order.at(i)->belongsToLayer() >= DockLayer)
|
2007-07-04 09:51:10 +00:00
|
|
|
topmenu_space_pos = pos;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
// TODO isn't it too inefficient to restack always all clients?
|
|
|
|
// TODO don't restack not visible windows?
|
2011-01-30 14:34:42 +00:00
|
|
|
assert(new_stack[ 0 ] == supportWindow->winId());
|
2007-04-29 17:35:43 +00:00
|
|
|
XRestackWindows(display(), new_stack, pos);
|
|
|
|
delete [] new_stack;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (propagate_new_clients) {
|
2007-04-29 17:35:43 +00:00
|
|
|
cl = new Window[ desktops.count() + clients.count()];
|
|
|
|
pos = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
// TODO this is still not completely in the map order
|
|
|
|
for (ClientList::ConstIterator it = desktops.constBegin(); it != desktops.constEnd(); ++it)
|
|
|
|
cl[pos++] = (*it)->window();
|
|
|
|
for (ClientList::ConstIterator it = clients.constBegin(); it != clients.constEnd(); ++it)
|
|
|
|
cl[pos++] = (*it)->window();
|
|
|
|
rootInfo->setClientList(cl, pos);
|
2007-04-29 17:35:43 +00:00
|
|
|
delete [] cl;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
cl = new Window[ stacking_order.count()];
|
|
|
|
pos = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = stacking_order.constBegin(); it != stacking_order.constEnd(); ++it)
|
|
|
|
cl[pos++] = (*it)->window();
|
|
|
|
rootInfo->setClientListStacking(cl, pos);
|
2007-04-29 17:35:43 +00:00
|
|
|
delete [] cl;
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2008-10-01 12:49:52 +00:00
|
|
|
// Make the cached stacking order invalid here, in case we need the new stacking order before we get
|
|
|
|
// the matching event, due to X being asynchronous.
|
2009-02-06 14:21:20 +00:00
|
|
|
x_stacking_dirty = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-02-06 14:21:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Raise electric border windows to the real top of the screen. We only need
|
|
|
|
* to do this if an effect input window is active.
|
|
|
|
*/
|
|
|
|
void Workspace::raiseElectricBorderWindows()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-02-06 14:21:20 +00:00
|
|
|
Window* windows = new Window[ 8 ]; // There are up to 8 borders
|
|
|
|
int pos = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = 0; i < ELECTRIC_COUNT; ++i)
|
|
|
|
if (electric_windows[ i ] != None)
|
2009-02-06 14:21:20 +00:00
|
|
|
windows[ pos++ ] = electric_windows[ i ];
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!pos) {
|
2009-04-09 20:48:44 +00:00
|
|
|
delete [] windows;
|
2009-02-06 14:21:20 +00:00
|
|
|
return; // No borders at all
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
XRaiseWindow(display(), windows[ 0 ]);
|
|
|
|
XRestackWindows(display(), windows, pos);
|
|
|
|
delete [] windows;
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Returns topmost visible client. Windows on the dock, the desktop
|
|
|
|
or of any other special kind are excluded. Also if the window
|
|
|
|
doesn't accept focus it's excluded.
|
|
|
|
*/
|
2008-08-23 09:20:42 +00:00
|
|
|
// TODO misleading name for this method, too many slightly different ways to use it
|
2011-01-30 14:34:42 +00:00
|
|
|
Client* Workspace::topClientOnDesktop(int desktop, int screen, bool unconstrained, bool only_normal) const
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
// TODO Q_ASSERT( block_stacking_updates == 0 );
|
|
|
|
ClientList list;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!unconstrained)
|
2007-04-29 22:39:07 +00:00
|
|
|
list = stacking_order;
|
2007-04-29 17:35:43 +00:00
|
|
|
else
|
2007-04-29 22:39:07 +00:00
|
|
|
list = unconstrained_stacking_order;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = list.size() - 1;
|
|
|
|
i >= 0;
|
|
|
|
--i) {
|
|
|
|
if (list.at(i)->isOnDesktop(desktop) && list.at(i)->isShown(false) && list.at(i)->isOnCurrentActivity()) {
|
|
|
|
if (screen != -1 && list.at(i)->screen() != screen)
|
2008-08-23 09:20:42 +00:00
|
|
|
continue;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!only_normal)
|
|
|
|
return list.at(i);
|
|
|
|
if (list.at(i)->wantsTabFocus() && !list.at(i)->isSpecialWindow())
|
|
|
|
return list.at(i);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
Client* Workspace::findDesktop(bool topmost, int desktop) const
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
// TODO Q_ASSERT( block_stacking_updates == 0 );
|
2011-01-30 14:34:42 +00:00
|
|
|
if (topmost) {
|
|
|
|
for (int i = stacking_order.size() - 1; i >= 0; i--) {
|
|
|
|
if (stacking_order.at(i)->isOnDesktop(desktop) && stacking_order.at(i)->isDesktop()
|
|
|
|
&& stacking_order.at(i)->isShown(true))
|
|
|
|
return stacking_order.at(i);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else { // bottom-most
|
|
|
|
foreach (Client * c, stacking_order) {
|
|
|
|
if (c->isOnDesktop(desktop) && c->isDesktop()
|
|
|
|
&& c->isShown(true))
|
2007-04-29 17:35:43 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::raiseOrLowerClient(Client *c)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
if (!c) return;
|
|
|
|
Client* topmost = NULL;
|
|
|
|
// TODO Q_ASSERT( block_stacking_updates == 0 );
|
2011-01-30 14:34:42 +00:00
|
|
|
if (most_recently_raised && stacking_order.contains(most_recently_raised) &&
|
|
|
|
most_recently_raised->isShown(true) && c->isOnCurrentDesktop())
|
2007-04-29 17:35:43 +00:00
|
|
|
topmost = most_recently_raised;
|
|
|
|
else
|
2011-01-30 14:34:42 +00:00
|
|
|
topmost = topClientOnDesktop(c->isOnAllDesktops() ? currentDesktop() : c->desktop(),
|
|
|
|
options->separateScreenFocus ? c->screen() : -1);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c == topmost)
|
2007-04-29 17:35:43 +00:00
|
|
|
lowerClient(c);
|
|
|
|
else
|
|
|
|
raiseClient(c);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::lowerClient(Client* c, bool nogroup)
|
|
|
|
{
|
|
|
|
if (!c)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->isTopMenu())
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
c->cancelAutoRaise();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
unconstrained_stacking_order.removeAll(c);
|
|
|
|
unconstrained_stacking_order.prepend(c);
|
|
|
|
if (!nogroup && c->isTransient()) {
|
2008-03-21 17:12:21 +00:00
|
|
|
// lower also all windows in the group, in their reversed stacking order
|
2011-01-30 14:34:42 +00:00
|
|
|
ClientList wins = ensureStackingOrder(c->group()->members());
|
|
|
|
for (int i = wins.size() - 1;
|
|
|
|
i >= 0;
|
|
|
|
--i) {
|
|
|
|
if (wins[ i ] != c)
|
|
|
|
lowerClient(wins[ i ], true);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c == most_recently_raised)
|
2007-04-29 17:35:43 +00:00
|
|
|
most_recently_raised = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::lowerClientWithinApplication(Client* c)
|
|
|
|
{
|
|
|
|
if (!c)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->isTopMenu())
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
c->cancelAutoRaise();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
unconstrained_stacking_order.removeAll(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
bool lowered = false;
|
|
|
|
// first try to put it below the bottom-most window of the application
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::Iterator it = unconstrained_stacking_order.begin();
|
|
|
|
it != unconstrained_stacking_order.end();
|
|
|
|
++it)
|
|
|
|
if (Client::belongToSameApplication(*it, c)) {
|
|
|
|
unconstrained_stacking_order.insert(it, c);
|
2007-04-29 17:35:43 +00:00
|
|
|
lowered = true;
|
|
|
|
break;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (!lowered)
|
|
|
|
unconstrained_stacking_order.prepend(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
// ignore mainwindows
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::raiseClient(Client* c, bool nogroup)
|
|
|
|
{
|
|
|
|
if (!c)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->isTopMenu())
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
c->cancelAutoRaise();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!nogroup && c->isTransient()) {
|
2009-10-03 15:40:58 +00:00
|
|
|
ClientList transients;
|
|
|
|
Client *transient_parent = c;
|
|
|
|
while ((transient_parent = transient_parent->transientFor()))
|
|
|
|
transients << transient_parent;
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (transient_parent, transients)
|
|
|
|
raiseClient(transient_parent, true);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
unconstrained_stacking_order.removeAll(c);
|
|
|
|
unconstrained_stacking_order.append(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!c->isSpecialWindow()) {
|
2007-04-29 17:35:43 +00:00
|
|
|
most_recently_raised = c;
|
|
|
|
pending_take_activity = NULL;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::raiseClientWithinApplication(Client* c)
|
|
|
|
{
|
|
|
|
if (!c)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->isTopMenu())
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
c->cancelAutoRaise();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
// ignore mainwindows
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
// first try to put it above the top-most window of the application
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = unconstrained_stacking_order.size() - 1; i >= 0 ; i--) {
|
|
|
|
if (unconstrained_stacking_order.at(i) == c) // don't lower it just because it asked to be raised
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (Client::belongToSameApplication(unconstrained_stacking_order.at(i), c)) {
|
|
|
|
unconstrained_stacking_order.removeAll(c);
|
|
|
|
unconstrained_stacking_order.insert(++i, c); // insert after the found one
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::raiseClientRequest(Client* c, NET::RequestSource src, Time timestamp)
|
|
|
|
{
|
|
|
|
if (src == NET::FromTool || allowFullClientRaising(c, timestamp))
|
|
|
|
raiseClient(c);
|
|
|
|
else {
|
|
|
|
raiseClientWithinApplication(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
c->demandAttention();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::lowerClientRequest(Client* c, NET::RequestSource src, Time /*timestamp*/)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
// If the client has support for all this focus stealing prevention stuff,
|
|
|
|
// do only lowering within the application, as that's the more logical
|
|
|
|
// variant of lowering when application requests it.
|
|
|
|
// No demanding of attention here of course.
|
2011-01-30 14:34:42 +00:00
|
|
|
if (src == NET::FromTool || !c->hasUserTimeSupport())
|
|
|
|
lowerClient(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
else
|
2011-01-30 14:34:42 +00:00
|
|
|
lowerClientWithinApplication(c);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::restack(Client* c, Client* under)
|
|
|
|
{
|
|
|
|
assert(unconstrained_stacking_order.contains(under));
|
|
|
|
if (Client::belongToSameApplication(under, c)) {
|
|
|
|
// put it below the active window if it's the same app
|
|
|
|
unconstrained_stacking_order.removeAll(c);
|
|
|
|
unconstrained_stacking_order.insert(unconstrained_stacking_order.indexOf(under), c);
|
|
|
|
} else {
|
|
|
|
// put in the stacking order below _all_ windows belonging to the active application
|
|
|
|
for (ClientList::Iterator it = unconstrained_stacking_order.begin();
|
|
|
|
it != unconstrained_stacking_order.end();
|
|
|
|
++it) {
|
|
|
|
// TODO ignore topmenus?
|
|
|
|
if (Client::belongToSameApplication(under, *it)) {
|
|
|
|
if (*it != c) {
|
|
|
|
unconstrained_stacking_order.removeAll(c);
|
|
|
|
unconstrained_stacking_order.insert(it, c);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
break;
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
assert(unconstrained_stacking_order.contains(c));
|
|
|
|
for (int desktop = 1;
|
|
|
|
desktop <= numberOfDesktops();
|
|
|
|
++desktop) {
|
|
|
|
// do for every virtual desktop to handle the case of onalldesktop windows
|
|
|
|
if (c->wantsTabFocus() && c->isOnDesktop(desktop) && focus_chain[ desktop ].contains(under)) {
|
|
|
|
if (Client::belongToSameApplication(under, c)) {
|
|
|
|
// put it after the active window if it's the same app
|
|
|
|
focus_chain[ desktop ].removeAll(c);
|
|
|
|
focus_chain[ desktop ].insert(focus_chain[ desktop ].indexOf(under), c);
|
|
|
|
} else {
|
|
|
|
// put it in focus_chain[currentDesktop()] after all windows belonging to the active applicationa
|
|
|
|
focus_chain[ desktop ].removeAll(c);
|
|
|
|
for (int i = focus_chain[ desktop ].size() - 1;
|
|
|
|
i >= 0;
|
|
|
|
--i) {
|
|
|
|
if (Client::belongToSameApplication(under, focus_chain[ desktop ].at(i))) {
|
|
|
|
focus_chain[ desktop ].insert(i, c);
|
2007-04-29 22:34:35 +00:00
|
|
|
break;
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
// the same for global_focus_chain
|
2011-01-30 14:34:42 +00:00
|
|
|
if (c->wantsTabFocus() && global_focus_chain.contains(under)) {
|
|
|
|
if (Client::belongToSameApplication(under, c)) {
|
|
|
|
global_focus_chain.removeAll(c);
|
|
|
|
global_focus_chain.insert(global_focus_chain.indexOf(under), c);
|
|
|
|
} else {
|
|
|
|
global_focus_chain.removeAll(c);
|
|
|
|
for (int i = global_focus_chain.size() - 1;
|
|
|
|
i >= 0;
|
|
|
|
--i) {
|
|
|
|
if (Client::belongToSameApplication(under, global_focus_chain.at(i))) {
|
|
|
|
global_focus_chain.insert(i, c);
|
2007-04-29 22:34:35 +00:00
|
|
|
break;
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
updateStackingOrder();
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::restackClientUnderActive(Client* c)
|
|
|
|
{
|
|
|
|
if (c->isTopMenu())
|
2010-10-17 19:49:07 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!active_client || active_client == c) {
|
|
|
|
raiseClient(c);
|
2010-10-17 19:49:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
restack(c, active_client);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Workspace::restoreSessionStackingOrder(Client* c)
|
|
|
|
{
|
|
|
|
if (c->sessionStackingOrder() < 0)
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(this);
|
|
|
|
unconstrained_stacking_order.removeAll(c);
|
2007-04-29 17:35:43 +00:00
|
|
|
ClientList::Iterator best_pos = unconstrained_stacking_order.end();
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::Iterator it = unconstrained_stacking_order.begin(); // from bottom
|
|
|
|
it != unconstrained_stacking_order.end();
|
|
|
|
++it) {
|
|
|
|
if ((*it)->sessionStackingOrder() > c->sessionStackingOrder()) {
|
|
|
|
unconstrained_stacking_order.insert(it, c);
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
unconstrained_stacking_order.append(c);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void Workspace::circulateDesktopApplications()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (desktops.count() > 1) {
|
2007-04-29 17:35:43 +00:00
|
|
|
bool change_active = activeClient()->isDesktop();
|
2011-01-30 14:34:42 +00:00
|
|
|
raiseClient(findDesktop(false, currentDesktop()));
|
|
|
|
if (change_active) // if the previously topmost Desktop was active, activate this new one
|
|
|
|
activateClient(findDesktop(true, currentDesktop()));
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
// if there's no active client, make desktop the active one
|
|
|
|
if (desktops.count() > 0 && activeClient() == NULL && should_get_focus.count() == 0)
|
|
|
|
activateClient(findDesktop(true, currentDesktop()));
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
Returns a stacking order based upon \a list that fulfills certain contained.
|
|
|
|
*/
|
|
|
|
ClientList Workspace::constrainedStackingOrder()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
ClientList layer[ NumLayers ];
|
|
|
|
|
|
|
|
#if 0
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << "stacking1:";
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = unconstrained_stacking_order.begin();
|
|
|
|
it != unconstrained_stacking_order.end();
|
|
|
|
++it)
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << (void*)(*it) << *it << ":" << (*it)->layer();
|
2007-04-29 17:35:43 +00:00
|
|
|
#endif
|
|
|
|
// build the order from layers
|
|
|
|
QHash< Group*, Layer > minimum_layer;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = unconstrained_stacking_order.constBegin();
|
|
|
|
it != unconstrained_stacking_order.constEnd();
|
|
|
|
++it) {
|
2007-04-29 17:35:43 +00:00
|
|
|
Layer l = (*it)->layer();
|
|
|
|
// If a window is raised above some other window in the same window group
|
|
|
|
// which is in the ActiveLayer (i.e. it's fulscreened), make sure it stays
|
|
|
|
// above that window (see #95731).
|
2011-01-30 14:34:42 +00:00
|
|
|
if (minimum_layer.contains((*it)->group())
|
|
|
|
&& minimum_layer[(*it)->group()] == ActiveLayer
|
|
|
|
&& (l == NormalLayer || l == AboveLayer)) {
|
|
|
|
l = minimum_layer[(*it)->group()];
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
minimum_layer[(*it)->group()] = l;
|
|
|
|
layer[ l ].append(*it);
|
|
|
|
}
|
|
|
|
ClientList stacking;
|
|
|
|
for (Layer lay = FirstLayer;
|
|
|
|
lay < NumLayers;
|
|
|
|
++lay)
|
2007-04-29 17:35:43 +00:00
|
|
|
stacking += layer[ lay ];
|
|
|
|
#if 0
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << "stacking2:";
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = stacking.begin();
|
|
|
|
it != stacking.end();
|
|
|
|
++it)
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << (void*)(*it) << *it << ":" << (*it)->layer();
|
2007-04-29 17:35:43 +00:00
|
|
|
#endif
|
|
|
|
// now keep transients above their mainwindows
|
|
|
|
// TODO this could(?) use some optimization
|
2011-01-30 14:34:42 +00:00
|
|
|
for (int i = stacking.size() - 1;
|
|
|
|
i >= 0;
|
|
|
|
) {
|
|
|
|
if (!stacking[ i ]->isTransient()) {
|
2007-04-29 17:35:43 +00:00
|
|
|
--i;
|
|
|
|
continue;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
int i2 = -1;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (stacking[ i ]->groupTransient()) {
|
|
|
|
if (stacking[ i ]->group()->members().count() > 0) {
|
|
|
|
// find topmost client this one is transient for
|
|
|
|
for (i2 = stacking.size() - 1;
|
|
|
|
i2 >= 0;
|
|
|
|
--i2) {
|
|
|
|
if (stacking[ i2 ] == stacking[ i ]) {
|
2008-07-01 14:09:41 +00:00
|
|
|
i2 = -1; // don't reorder, already the topmost in the group
|
2007-04-29 17:35:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
if (stacking[ i2 ]->hasTransient(stacking[ i ], true)
|
|
|
|
&& keepTransientAbove(stacking[ i2 ], stacking[ i ]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // else i2 remains pointing at -1
|
|
|
|
} else {
|
|
|
|
for (i2 = stacking.size() - 1;
|
|
|
|
i2 >= 0;
|
|
|
|
--i2) {
|
|
|
|
if (stacking[ i2 ] == stacking[ i ]) {
|
2008-07-01 14:09:41 +00:00
|
|
|
i2 = -1; // don't reorder, already on top of its mainwindow
|
2007-04-29 17:35:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
if (stacking[ i2 ] == stacking[ i ]->transientFor()
|
|
|
|
&& keepTransientAbove(stacking[ i2 ], stacking[ i ]))
|
|
|
|
break;
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (i2 == -1) {
|
2007-04-29 17:35:43 +00:00
|
|
|
--i;
|
|
|
|
continue;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
Client* current = stacking[ i ];
|
2011-01-30 14:34:42 +00:00
|
|
|
stacking.removeAt(i);
|
|
|
|
--i; // move onto the next item (for next for () iteration)
|
2008-07-01 14:09:41 +00:00
|
|
|
--i2; // adjust index of the mainwindow after the remove above
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!current->transients().isEmpty()) // this one now can be possibly above its transients,
|
2007-04-29 17:35:43 +00:00
|
|
|
i = i2; // so go again higher in the stack order and possibly move those transients again
|
2008-07-01 14:09:41 +00:00
|
|
|
++i2; // insert after (on top of) the mainwindow, it's ok if it2 is now stacking.end()
|
2011-01-30 14:34:42 +00:00
|
|
|
stacking.insert(i2, current);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
#if 0
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << "stacking3:";
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = stacking.begin();
|
|
|
|
it != stacking.end();
|
|
|
|
++it)
|
2008-11-17 15:04:52 +00:00
|
|
|
kDebug(1212) << (void*)(*it) << *it << ":" << (*it)->layer();
|
|
|
|
kDebug(1212) << "\n\n";
|
2007-04-29 17:35:43 +00:00
|
|
|
#endif
|
|
|
|
return stacking;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Workspace::blockStackingUpdates(bool block)
|
|
|
|
{
|
|
|
|
if (block) {
|
|
|
|
if (block_stacking_updates == 0)
|
2007-04-29 17:35:43 +00:00
|
|
|
blocked_propagating_new_clients = false;
|
|
|
|
++block_stacking_updates;
|
2011-01-30 14:34:42 +00:00
|
|
|
} else // !block
|
|
|
|
if (--block_stacking_updates == 0) {
|
|
|
|
updateStackingOrder(blocked_propagating_new_clients);
|
|
|
|
if (effects)
|
|
|
|
static_cast<EffectsHandlerImpl*>(effects)->checkInputWindowStacking();
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
// Ensure list is in stacking order
|
2011-01-30 14:34:42 +00:00
|
|
|
ClientList Workspace::ensureStackingOrder(const ClientList& list) const
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
// TODO Q_ASSERT( block_stacking_updates == 0 );
|
2011-01-30 14:34:42 +00:00
|
|
|
if (list.count() < 2)
|
2007-04-29 17:35:43 +00:00
|
|
|
return list;
|
|
|
|
// TODO is this worth optimizing?
|
|
|
|
ClientList result = list;
|
2011-01-30 14:34:42 +00:00
|
|
|
for (ClientList::ConstIterator it = stacking_order.constBegin();
|
|
|
|
it != stacking_order.constEnd();
|
|
|
|
++it)
|
|
|
|
if (result.removeAll(*it) != 0)
|
|
|
|
result.append(*it);
|
2007-04-29 17:35:43 +00:00
|
|
|
return result;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
// check whether a transient should be actually kept above its mainwindow
|
|
|
|
// there may be some special cases where this rule shouldn't be enfored
|
2011-01-30 14:34:42 +00:00
|
|
|
bool Workspace::keepTransientAbove(const Client* mainwindow, const Client* transient)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
// When topmenu's mainwindow becomes active, topmenu is raised and shown.
|
|
|
|
// They also belong to the Dock layer. This makes them to be very high.
|
|
|
|
// Therefore don't keep group transients above them, otherwise this would move
|
|
|
|
// group transients way too high.
|
2011-01-30 14:34:42 +00:00
|
|
|
if (mainwindow->isTopMenu() && transient->groupTransient())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
|
|
|
// #93832 - don't keep splashscreens above dialogs
|
2011-01-30 14:34:42 +00:00
|
|
|
if (transient->isSplash() && mainwindow->isDialog())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
|
|
|
// This is rather a hack for #76026. Don't keep non-modal dialogs above
|
|
|
|
// the mainwindow, but only if they're group transient (since only such dialogs
|
|
|
|
// have taskbar entry in Kicker). A proper way of doing this (both kwin and kicker)
|
|
|
|
// needs to be found.
|
2011-01-30 14:34:42 +00:00
|
|
|
if (transient->isDialog() && !transient->isModal() && transient->groupTransient())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
|
|
|
// #63223 - don't keep transients above docks, because the dock is kept high,
|
|
|
|
// and e.g. dialogs for them would be too high too
|
2011-01-30 14:34:42 +00:00
|
|
|
if (mainwindow->isDock())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-08-24 10:35:45 +00:00
|
|
|
// Returns all windows in their stacking order on the root window.
|
|
|
|
ToplevelList Workspace::xStackingOrder() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (!x_stacking_dirty)
|
2008-08-24 10:35:45 +00:00
|
|
|
return x_stacking;
|
|
|
|
x_stacking_dirty = false;
|
|
|
|
x_stacking.clear();
|
2008-04-24 12:53:03 +00:00
|
|
|
Window dummy;
|
2008-05-05 07:22:45 +00:00
|
|
|
Window* windows = NULL;
|
2008-04-24 12:53:03 +00:00
|
|
|
unsigned int count = 0;
|
2011-01-30 14:34:42 +00:00
|
|
|
XQueryTree(display(), rootWindow(), &dummy, &dummy, &windows, &count);
|
2008-07-04 14:06:23 +00:00
|
|
|
// use our own stacking order, not the X one, as they may differ
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (Client * c, stacking_order)
|
|
|
|
x_stacking.append(c);
|
|
|
|
for (unsigned int i = 0;
|
|
|
|
i < count;
|
|
|
|
++i) {
|
|
|
|
if (Unmanaged* c = findUnmanaged(WindowMatchPredicate(windows[ i ])))
|
|
|
|
x_stacking.append(c);
|
2007-05-23 16:22:59 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
foreach (Deleted * c, deleted)
|
|
|
|
x_stacking.append(c);
|
|
|
|
if (windows != NULL)
|
|
|
|
XFree(windows);
|
|
|
|
const_cast< Workspace* >(this)->checkUnredirect();
|
|
|
|
return x_stacking;
|
|
|
|
}
|
2007-05-23 16:22:59 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
//*******************************
|
|
|
|
// Client
|
|
|
|
//*******************************
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Client::restackWindow(Window /*above TODO */, int detail, NET::RequestSource src, Time timestamp, bool send_event)
|
|
|
|
{
|
|
|
|
switch(detail) {
|
|
|
|
case Above:
|
|
|
|
case TopIf:
|
|
|
|
workspace()->raiseClientRequest(this, src, timestamp);
|
|
|
|
break;
|
|
|
|
case Below:
|
|
|
|
case BottomIf:
|
|
|
|
workspace()->lowerClientRequest(this, src, timestamp);
|
|
|
|
break;
|
|
|
|
case Opposite:
|
|
|
|
default:
|
|
|
|
break;
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
if (send_event)
|
|
|
|
sendSyntheticConfigureNotify();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Client::setKeepAbove(bool b)
|
|
|
|
{
|
|
|
|
b = rules()->checkKeepAbove(b);
|
|
|
|
if (b && !rules()->checkKeepBelow(false))
|
|
|
|
setKeepBelow(false);
|
|
|
|
if (b == keepAbove()) {
|
|
|
|
// force hint change if different
|
|
|
|
if (bool(info->state() & NET::KeepAbove) != keepAbove())
|
|
|
|
info->setState(keepAbove() ? NET::KeepAbove : 0, NET::KeepAbove);
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
keep_above = b;
|
2011-01-30 14:34:42 +00:00
|
|
|
info->setState(keepAbove() ? NET::KeepAbove : 0, NET::KeepAbove);
|
|
|
|
if (decoration != NULL)
|
|
|
|
decoration->emitKeepAboveChanged(keepAbove());
|
|
|
|
workspace()->updateClientLayer(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
updateWindowRules();
|
2009-11-15 03:24:04 +00:00
|
|
|
|
|
|
|
// Update states of all other windows in this group
|
2011-01-30 14:34:42 +00:00
|
|
|
if (clientGroup())
|
|
|
|
clientGroup()->updateStates(this);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Client::setKeepBelow(bool b)
|
|
|
|
{
|
|
|
|
b = rules()->checkKeepBelow(b);
|
|
|
|
if (b && !rules()->checkKeepAbove(false))
|
|
|
|
setKeepAbove(false);
|
|
|
|
if (b == keepBelow()) {
|
|
|
|
// force hint change if different
|
|
|
|
if (bool(info->state() & NET::KeepBelow) != keepBelow())
|
|
|
|
info->setState(keepBelow() ? NET::KeepBelow : 0, NET::KeepBelow);
|
2007-04-29 17:35:43 +00:00
|
|
|
return;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
keep_below = b;
|
2011-01-30 14:34:42 +00:00
|
|
|
info->setState(keepBelow() ? NET::KeepBelow : 0, NET::KeepBelow);
|
|
|
|
if (decoration != NULL)
|
|
|
|
decoration->emitKeepBelowChanged(keepBelow());
|
|
|
|
workspace()->updateClientLayer(this);
|
2007-04-29 17:35:43 +00:00
|
|
|
updateWindowRules();
|
2009-11-15 03:24:04 +00:00
|
|
|
|
|
|
|
// Update states of all other windows in this group
|
2011-01-30 14:34:42 +00:00
|
|
|
if (clientGroup())
|
|
|
|
clientGroup()->updateStates(this);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
Layer Client::layer() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (in_layer == UnknownLayer)
|
|
|
|
const_cast< Client* >(this)->in_layer = belongsToLayer();
|
2007-04-29 17:35:43 +00:00
|
|
|
return in_layer;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
Layer Client::belongsToLayer() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (isDesktop())
|
2007-04-29 17:35:43 +00:00
|
|
|
return DesktopLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (isSplash()) // no damn annoying splashscreens
|
2007-04-29 17:35:43 +00:00
|
|
|
return NormalLayer; // getting in the way of everything else
|
2011-01-30 14:34:42 +00:00
|
|
|
if (isDock() && keepBelow())
|
2007-04-29 17:35:43 +00:00
|
|
|
// slight hack for the 'allow window to cover panel' Kicker setting
|
|
|
|
// don't move keepbelow docks below normal window, but only to the same
|
|
|
|
// layer, so that both may be raised to cover the other
|
|
|
|
return NormalLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (keepBelow())
|
2007-04-29 17:35:43 +00:00
|
|
|
return BelowLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (isDock() && !keepBelow())
|
2007-04-29 17:35:43 +00:00
|
|
|
return DockLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (isTopMenu())
|
2007-04-29 17:35:43 +00:00
|
|
|
return DockLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (isActiveFullScreen())
|
2007-04-29 17:35:43 +00:00
|
|
|
return ActiveLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (keepAbove())
|
2007-04-29 17:35:43 +00:00
|
|
|
return AboveLayer;
|
|
|
|
return NormalLayer;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-08-23 09:20:42 +00:00
|
|
|
bool Client::isActiveFullScreen() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2008-08-23 09:20:42 +00:00
|
|
|
// only raise fullscreen above docks if it's the topmost window in unconstrained stacking order,
|
|
|
|
// i.e. the window set to be topmost by the user (also includes transients of the fullscreen window)
|
|
|
|
const Client* ac = workspace()->mostRecentlyActivatedClient(); // instead of activeClient() - avoids flicker
|
2011-01-30 14:34:42 +00:00
|
|
|
const Client* top = workspace()->topClientOnDesktop(workspace()->currentDesktop(), screen(), true, false);
|
|
|
|
return(isFullScreen() && ac != NULL && top != NULL
|
2008-08-23 09:20:42 +00:00
|
|
|
// not needed, for xinerama && ( ac == this || this->group() == ac->group())
|
2011-01-30 14:34:42 +00:00
|
|
|
&& (top == this || this->group() == top->group()));
|
|
|
|
}
|
2008-08-23 09:20:42 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|