kwin/layers.cpp

813 lines
28 KiB
C++
Raw Normal View History

/********************************************************************
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>
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/>.
*********************************************************************/
// 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 7 layers,
from bottom : DesktopLayer, BelowLayer, NormalLayer, DockLayer, AboveLayer, NotificationLayer,
ActiveLayer and OnScreenDisplayLayer (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. We extend the layers
provided in NETWM by the NotificationLayer and OnScreenDisplayLayer.
The NoficationLayer contains notification windows which are kept above all windows except the active
fullscreen window. The OnScreenDisplayLayer is used for eg. volume and brightness change feedback and
is kept above all windows since it provides immediate response to a user action.
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 "utils.h"
#include "client.h"
#include "focuschain.h"
#include "netinfo.h"
#include "workspace.h"
#include "tabbox.h"
#include "group.h"
#include "rules.h"
#include "screens.h"
#include "unmanaged.h"
#include "deleted.h"
#include "effects.h"
#include "composite.h"
#include "screenedge.h"
#include "shell_client.h"
#include "wayland_server.h"
#include <QDebug>
namespace KWin
{
//*******************************
// Workspace
//*******************************
void Workspace::updateClientLayer(AbstractClient* c)
2011-01-30 17:34:42 +03:00
{
if (c)
c->updateLayer();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Workspace::updateStackingOrder(bool propagate_new_clients)
{
if (block_stacking_updates > 0) {
if (propagate_new_clients)
blocked_propagating_new_clients = true;
return;
2011-01-30 17:34:42 +03:00
}
ToplevelList new_stacking_order = constrainedStackingOrder();
bool changed = (force_restacking || new_stacking_order != stacking_order);
force_restacking = false;
stacking_order = new_stacking_order;
2011-01-30 17:34:42 +03:00
if (changed || propagate_new_clients) {
propagateClients(propagate_new_clients);
emit stackingOrderChanged();
if (m_compositor) {
m_compositor->addRepaintFull();
}
2011-01-30 17:34:42 +03:00
if (active_client)
active_client->updateMouseGrab();
}
2011-01-30 17:34:42 +03:00
}
/*!
* Some fullscreen effects have to raise the screenedge on top of an input window, thus all windows
* this function puts them back where they belong for regular use and is some cheap variant of
* the regular propagateClients function in that it completely ignores managed clients and everything
* else and also does not update the NETWM property.
* Called from Effects::destroyInputWindow so far.
*/
void Workspace::stackScreenEdgesUnderOverrideRedirect()
{
if (!rootInfo()) {
return;
}
Xcb::restackWindows(QVector<xcb_window_t>() << rootInfo()->supportWindow() << ScreenEdges::self()->windows());
}
/*!
Propagates the managed clients to the world.
Called ONLY from updateStackingOrder().
*/
2011-01-30 17:34:42 +03:00
void Workspace::propagateClients(bool propagate_new_clients)
{
if (!rootInfo()) {
return;
}
// restack the windows according to the stacking order
// supportWindow > electric borders > clients > hidden clients
QVector<xcb_window_t> newWindowStack;
// 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).
newWindowStack << rootInfo()->supportWindow();
newWindowStack << ScreenEdges::self()->windows();
newWindowStack.reserve(newWindowStack.size() + 2*stacking_order.size()); // *2 for inputWindow
for (int i = stacking_order.size() - 1; i >= 0; --i) {
Client *client = qobject_cast<Client*>(stacking_order.at(i));
if (!client || client->hiddenPreview()) {
continue;
}
if (client->inputId())
// Stack the input window above the frame
newWindowStack << client->inputId();
newWindowStack << client->frameId();
2011-01-30 17:34:42 +03: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
for (int i = stacking_order.size() - 1; i >= 0; --i) {
Client *client = qobject_cast<Client*>(stacking_order.at(i));
if (!client || !client->hiddenPreview())
continue;
newWindowStack << client->frameId();
}
// TODO isn't it too inefficient to restack always all clients?
// TODO don't restack not visible windows?
assert(newWindowStack.at(0) == rootInfo()->supportWindow());
Xcb::restackWindows(newWindowStack);
int pos = 0;
2013-11-18 16:57:46 +04:00
xcb_window_t *cl(nullptr);
2011-01-30 17:34:42 +03:00
if (propagate_new_clients) {
2013-11-18 16:57:46 +04:00
cl = new xcb_window_t[ desktops.count() + clients.count()];
2011-01-30 17:34:42 +03: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);
delete [] cl;
2011-01-30 17:34:42 +03:00
}
2013-11-18 16:57:46 +04:00
cl = new xcb_window_t[ stacking_order.count()];
pos = 0;
for (ToplevelList::ConstIterator it = stacking_order.constBegin(); it != stacking_order.constEnd(); ++it) {
if ((*it)->isClient())
cl[pos++] = (*it)->window();
}
rootInfo()->setClientListStacking(cl, pos);
delete [] cl;
2011-01-30 17:34:42 +03: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.
markXStackingOrderAsDirty();
2011-01-30 17:34:42 +03: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.
*/
// TODO misleading name for this method, too many slightly different ways to use it
AbstractClient* Workspace::topClientOnDesktop(int desktop, int screen, bool unconstrained, bool only_normal) const
2011-01-30 17:34:42 +03:00
{
// TODO Q_ASSERT( block_stacking_updates == 0 );
ToplevelList list;
2011-01-30 17:34:42 +03:00
if (!unconstrained)
list = stacking_order;
else
list = unconstrained_stacking_order;
2011-01-30 17:34:42 +03:00
for (int i = list.size() - 1;
i >= 0;
--i) {
AbstractClient *c = qobject_cast<AbstractClient*>(list.at(i));
if (!c) {
continue;
}
if (c->isOnDesktop(desktop) && c->isShown(false) && c->isOnCurrentActivity()) {
if (screen != -1 && c->screen() != screen)
continue;
2011-01-30 17:34:42 +03:00
if (!only_normal)
return c;
if (c->wantsTabFocus() && !c->isSpecialWindow())
return c;
}
}
2011-01-30 17:34:42 +03:00
return 0;
}
AbstractClient* Workspace::findDesktop(bool topmost, int desktop) const
2011-01-30 17:34:42 +03:00
{
// TODO Q_ASSERT( block_stacking_updates == 0 );
2011-01-30 17:34:42 +03:00
if (topmost) {
for (int i = stacking_order.size() - 1; i >= 0; i--) {
AbstractClient *c = qobject_cast<AbstractClient*>(stacking_order.at(i));
if (c && c->isOnDesktop(desktop) && c->isDesktop()
2011-01-30 17:34:42 +03:00
&& c->isShown(true))
return c;
}
} else { // bottom-most
foreach (Toplevel * c, stacking_order) {
AbstractClient *client = qobject_cast<AbstractClient*>(c);
if (client && c->isOnDesktop(desktop) && c->isDesktop()
&& client->isShown(true))
return client;
}
}
2011-01-30 17:34:42 +03:00
return NULL;
}
void Workspace::raiseOrLowerClient(AbstractClient *c)
2011-01-30 17:34:42 +03:00
{
if (!c) return;
AbstractClient* topmost = NULL;
// TODO Q_ASSERT( block_stacking_updates == 0 );
2011-01-30 17:34:42 +03:00
if (most_recently_raised && stacking_order.contains(most_recently_raised) &&
most_recently_raised->isShown(true) && c->isOnCurrentDesktop())
topmost = most_recently_raised;
else
topmost = topClientOnDesktop(c->isOnAllDesktops() ? VirtualDesktopManager::self()->current() : c->desktop(),
options->isSeparateScreenFocus() ? c->screen() : -1);
2011-01-30 17:34:42 +03:00
if (c == topmost)
lowerClient(c);
else
raiseClient(c);
2011-01-30 17:34:42 +03:00
}
void Workspace::lowerClient(AbstractClient* c, bool nogroup)
2011-01-30 17:34:42 +03:00
{
if (!c)
return;
c->cancelAutoRaise();
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(this);
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.removeAll(c);
unconstrained_stacking_order.prepend(c);
if (!nogroup && c->isTransient()) {
// lower also all windows in the group, in their reversed stacking order
ClientList wins;
if (Client *client = dynamic_cast<Client*>(c)) {
wins = ensureStackingOrder(client->group()->members());
}
2011-01-30 17:34:42 +03:00
for (int i = wins.size() - 1;
i >= 0;
--i) {
if (wins[ i ] != c)
lowerClient(wins[ i ], true);
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
if (c == most_recently_raised)
most_recently_raised = 0;
2011-01-30 17:34:42 +03:00
}
void Workspace::lowerClientWithinApplication(AbstractClient* c)
2011-01-30 17:34:42 +03:00
{
if (!c)
return;
c->cancelAutoRaise();
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(this);
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.removeAll(c);
bool lowered = false;
// first try to put it below the bottom-most window of the application
for (ToplevelList::Iterator it = unconstrained_stacking_order.begin();
2011-01-30 17:34:42 +03:00
it != unconstrained_stacking_order.end();
++it) {
AbstractClient *client = qobject_cast<AbstractClient*>(*it);
if (!client) {
continue;
}
if (AbstractClient::belongToSameApplication(client, c)) {
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.insert(it, c);
lowered = true;
break;
2011-01-30 17:34:42 +03:00
}
}
2011-01-30 17:34:42 +03:00
if (!lowered)
unconstrained_stacking_order.prepend(c);
// ignore mainwindows
2011-01-30 17:34:42 +03:00
}
void Workspace::raiseClient(AbstractClient* c, bool nogroup)
2011-01-30 17:34:42 +03:00
{
if (!c)
return;
c->cancelAutoRaise();
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(this);
2011-01-30 17:34:42 +03:00
if (!nogroup && c->isTransient()) {
QList<AbstractClient*> transients;
AbstractClient *transient_parent = c;
while ((transient_parent = transient_parent->transientFor()))
transients << transient_parent;
2011-01-30 17:34:42 +03:00
foreach (transient_parent, transients)
raiseClient(transient_parent, true);
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.removeAll(c);
unconstrained_stacking_order.append(c);
2011-01-30 17:34:42 +03:00
if (!c->isSpecialWindow()) {
most_recently_raised = c;
}
2011-01-30 17:34:42 +03:00
}
void Workspace::raiseClientWithinApplication(AbstractClient* c)
2011-01-30 17:34:42 +03:00
{
if (!c)
return;
c->cancelAutoRaise();
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(this);
// ignore mainwindows
2011-01-30 17:34:42 +03:00
// first try to put it above the top-most window of the application
for (int i = unconstrained_stacking_order.size() - 1; i > -1 ; --i) {
AbstractClient *other = qobject_cast<AbstractClient*>(unconstrained_stacking_order.at(i));
if (!other) {
continue;
}
if (other == c) // don't lower it just because it asked to be raised
return;
if (AbstractClient::belongToSameApplication(other, c)) {
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.removeAll(c);
unconstrained_stacking_order.insert(unconstrained_stacking_order.indexOf(other) + 1, c); // insert after the found one
break;
}
}
2011-01-30 17:34:42 +03:00
}
void Workspace::raiseClientRequest(KWin::AbstractClient *c, NET::RequestSource src, xcb_timestamp_t timestamp)
2011-01-30 17:34:42 +03:00
{
if (src == NET::FromTool || allowFullClientRaising(c, timestamp))
raiseClient(c);
else {
raiseClientWithinApplication(c);
c->demandAttention();
}
2011-01-30 17:34:42 +03:00
}
void Workspace::lowerClientRequest(KWin::Client *c, NET::RequestSource src, xcb_timestamp_t /*timestamp*/)
2011-01-30 17:34:42 +03: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 17:34:42 +03:00
if (src == NET::FromTool || !c->hasUserTimeSupport())
lowerClient(c);
else
2011-01-30 17:34:42 +03:00
lowerClientWithinApplication(c);
}
void Workspace::lowerClientRequest(KWin::AbstractClient *c)
{
lowerClientWithinApplication(c);
}
void Workspace::restack(AbstractClient* c, AbstractClient* under, bool force)
2011-01-30 17:34:42 +03:00
{
assert(unconstrained_stacking_order.contains(under));
if (!force && !AbstractClient::belongToSameApplication(under, c)) {
// put in the stacking order below _all_ windows belonging to the active application
for (int i = 0; i < unconstrained_stacking_order.size(); ++i) {
AbstractClient *other = qobject_cast<AbstractClient*>(unconstrained_stacking_order.at(i));
if (other && other->layer() == c->layer() && AbstractClient::belongToSameApplication(under, other)) {
under = (c == other) ? 0 : other;
2011-01-30 17:34:42 +03:00
break;
}
}
2011-01-30 17:34:42 +03:00
}
if (under) {
unconstrained_stacking_order.removeAll(c);
unconstrained_stacking_order.insert(unconstrained_stacking_order.indexOf(under), c);
}
2011-01-30 17:34:42 +03:00
assert(unconstrained_stacking_order.contains(c));
FocusChain::self()->moveAfterClient(c, under);
2011-01-30 17:34:42 +03:00
updateStackingOrder();
}
void Workspace::restackClientUnderActive(AbstractClient* c)
2011-01-30 17:34:42 +03:00
{
if (!active_client || active_client == c || active_client->layer() != c->layer()) {
2011-01-30 17:34:42 +03:00
raiseClient(c);
return;
}
2011-01-30 17:34:42 +03:00
restack(c, active_client);
}
void Workspace::restoreSessionStackingOrder(Client* c)
{
if (c->sessionStackingOrder() < 0)
return;
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(this);
unconstrained_stacking_order.removeAll(c);
for (ToplevelList::Iterator it = unconstrained_stacking_order.begin(); // from bottom
2011-01-30 17:34:42 +03:00
it != unconstrained_stacking_order.end();
++it) {
Client *current = qobject_cast<Client*>(*it);
if (!current) {
continue;
}
if (current->sessionStackingOrder() > c->sessionStackingOrder()) {
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.insert(it, c);
return;
}
}
2011-01-30 17:34:42 +03:00
unconstrained_stacking_order.append(c);
}
/*!
Returns a stacking order based upon \a list that fulfills certain contained.
*/
ToplevelList Workspace::constrainedStackingOrder()
2011-01-30 17:34:42 +03:00
{
ToplevelList layer[ NumLayers ];
// build the order from layers
QVector< QMap<Group*, Layer> > minimum_layer(screens()->count());
for (ToplevelList::ConstIterator it = unconstrained_stacking_order.constBegin(),
end = unconstrained_stacking_order.constEnd(); it != end; ++it) {
Layer l = (*it)->layer();
const int screen = (*it)->screen();
Client *c = qobject_cast<Client*>(*it);
QMap< Group*, Layer >::iterator mLayer = minimum_layer[screen].find(c ? c->group() : NULL);
if (mLayer != minimum_layer[screen].end()) {
// 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).
if (*mLayer == ActiveLayer && (l > BelowLayer))
l = ActiveLayer;
*mLayer = l;
} else if (c) {
minimum_layer[screen].insertMulti(c->group(), l);
}
2011-01-30 17:34:42 +03:00
layer[ l ].append(*it);
}
ToplevelList stacking;
2011-01-30 17:34:42 +03:00
for (Layer lay = FirstLayer;
lay < NumLayers;
++lay)
stacking += layer[ lay ];
// now keep transients above their mainwindows
// TODO this could(?) use some optimization
2011-01-30 17:34:42 +03:00
for (int i = stacking.size() - 1;
i >= 0;
) {
AbstractClient *current = qobject_cast<AbstractClient*>(stacking[i]);
if (!current || !current->isTransient()) {
--i;
continue;
2011-01-30 17:34:42 +03:00
}
int i2 = -1;
Client *ccurrent = qobject_cast<Client*>(current);
if (ccurrent && ccurrent->groupTransient()) {
if (ccurrent->group()->members().count() > 0) {
2011-01-30 17:34:42 +03:00
// find topmost client this one is transient for
for (i2 = stacking.size() - 1;
i2 >= 0;
--i2) {
if (stacking[ i2 ] == stacking[ i ]) {
i2 = -1; // don't reorder, already the topmost in the group
break;
}
AbstractClient *c2 = qobject_cast<AbstractClient*>(stacking[ i2 ]);
if (!c2) {
continue;
}
if (c2->hasTransient(current, true)
&& keepTransientAbove(c2, current))
2011-01-30 17:34:42 +03:00
break;
}
} // else i2 remains pointing at -1
} else {
for (i2 = stacking.size() - 1;
i2 >= 0;
--i2) {
AbstractClient *c2 = qobject_cast<AbstractClient*>(stacking[ i2 ]);
if (!c2) {
continue;
}
if (c2 == current) {
i2 = -1; // don't reorder, already on top of its mainwindow
break;
}
if (c2 == current->transientFor()
&& keepTransientAbove(c2, current))
2011-01-30 17:34:42 +03:00
break;
}
2011-01-30 17:34:42 +03:00
}
if (i2 == -1) {
--i;
continue;
2011-01-30 17:34:42 +03:00
}
stacking.removeAt(i);
--i; // move onto the next item (for next for () iteration)
--i2; // adjust index of the mainwindow after the remove above
2011-01-30 17:34:42 +03:00
if (!current->transients().isEmpty()) // this one now can be possibly above its transients,
i = i2; // so go again higher in the stack order and possibly move those transients again
++i2; // insert after (on top of) the mainwindow, it's ok if it2 is now stacking.end()
2011-01-30 17:34:42 +03:00
stacking.insert(i2, current);
}
return stacking;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Workspace::blockStackingUpdates(bool block)
{
if (block) {
if (block_stacking_updates == 0)
blocked_propagating_new_clients = false;
++block_stacking_updates;
2011-01-30 17:34:42 +03:00
} else // !block
if (--block_stacking_updates == 0) {
updateStackingOrder(blocked_propagating_new_clients);
if (effects)
static_cast<EffectsHandlerImpl*>(effects)->checkInputWindowStacking();
}
2011-01-30 17:34:42 +03:00
}
namespace {
template <class T>
QList<T*> ensureStackingOrderInList(const ToplevelList &stackingOrder, const QList<T*> &list)
2011-01-30 17:34:42 +03:00
{
static_assert(std::is_base_of<Toplevel, T>::value,
"U must be derived from T");
// TODO Q_ASSERT( block_stacking_updates == 0 );
2011-01-30 17:34:42 +03:00
if (list.count() < 2)
return list;
// TODO is this worth optimizing?
QList<T*> result = list;
for (auto it = stackingOrder.begin();
it != stackingOrder.end();
++it) {
T *c = qobject_cast<T*>(*it);
if (!c) {
continue;
}
if (result.removeAll(c) != 0)
result.append(c);
}
return result;
2011-01-30 17:34:42 +03:00
}
}
// Ensure list is in stacking order
ClientList Workspace::ensureStackingOrder(const ClientList& list) const
{
return ensureStackingOrderInList(stacking_order, list);
}
QList<AbstractClient*> Workspace::ensureStackingOrder(const QList<AbstractClient*> &list) const
{
return ensureStackingOrderInList(stacking_order, list);
}
// check whether a transient should be actually kept above its mainwindow
// there may be some special cases where this rule shouldn't be enfored
bool Workspace::keepTransientAbove(const AbstractClient* mainwindow, const AbstractClient* transient)
2011-01-30 17:34:42 +03:00
{
// #93832 - don't keep splashscreens above dialogs
2011-01-30 17:34:42 +03:00
if (transient->isSplash() && mainwindow->isDialog())
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.
if (const Client *ct = dynamic_cast<const Client*>(transient)) {
if (ct->isDialog() && !ct->isModal() && ct->groupTransient())
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
// ignore this if the transient has a placement hint which indicates it should go above it's parent
if (mainwindow->isDock() && !transient->hasTransientPlacementHint())
return false;
return true;
2011-01-30 17:34:42 +03:00
}
// Returns all windows in their stacking order on the root window.
ToplevelList Workspace::xStackingOrder() const
2011-01-30 17:34:42 +03:00
{
if (m_xStackingDirty) {
2017-06-21 22:10:12 +03:00
const_cast<Workspace*>(this)->updateXStackingOrder();
}
return x_stacking;
}
void Workspace::updateXStackingOrder()
{
x_stacking.clear();
2017-06-21 22:10:12 +03:00
std::unique_ptr<Xcb::Tree> tree{std::move(m_xStackingQueryTree)};
// use our own stacking order, not the X one, as they may differ
foreach (Toplevel * c, stacking_order)
2011-01-30 17:34:42 +03:00
x_stacking.append(c);
if (tree && !tree->isNull()) {
2017-06-21 22:10:12 +03:00
xcb_window_t *windows = tree->children();
const auto count = tree->data()->children_len;
int foundUnmanagedCount = unmanaged.count();
for (unsigned int i = 0;
i < count;
++i) {
for (auto it = unmanaged.constBegin(); it != unmanaged.constEnd(); ++it) {
Unmanaged *u = *it;
if (u->window() == windows[i]) {
x_stacking.append(u);
foundUnmanagedCount--;
break;
}
}
if (foundUnmanagedCount == 0) {
break;
}
}
}
if (waylandServer()) {
const auto clients = waylandServer()->internalClients();
for (auto c: clients) {
if (c->isShown(false)) {
x_stacking << c;
}
}
}
m_xStackingDirty = false;
2011-01-30 17:34:42 +03:00
}
//*******************************
// Client
//*******************************
void Client::restackWindow(xcb_window_t above, int detail, NET::RequestSource src, xcb_timestamp_t timestamp, bool send_event)
2011-01-30 17:34:42 +03:00
{
Client *other = 0;
if (detail == XCB_STACK_MODE_OPPOSITE) {
other = workspace()->findClient(Predicate::WindowMatch, above);
if (!other) {
workspace()->raiseOrLowerClient(this);
return;
}
ToplevelList::const_iterator it = workspace()->stackingOrder().constBegin(),
end = workspace()->stackingOrder().constEnd();
while (it != end) {
if (*it == this) {
detail = XCB_STACK_MODE_ABOVE;
break;
} else if (*it == other) {
detail = XCB_STACK_MODE_BELOW;
break;
}
++it;
}
}
else if (detail == XCB_STACK_MODE_TOP_IF) {
other = workspace()->findClient(Predicate::WindowMatch, above);
if (other && other->geometry().intersects(geometry()))
workspace()->raiseClientRequest(this, src, timestamp);
return;
}
else if (detail == XCB_STACK_MODE_BOTTOM_IF) {
other = workspace()->findClient(Predicate::WindowMatch, above);
if (other && other->geometry().intersects(geometry()))
workspace()->lowerClientRequest(this, src, timestamp);
return;
}
if (!other)
other = workspace()->findClient(Predicate::WindowMatch, above);
if (other && detail == XCB_STACK_MODE_ABOVE) {
ToplevelList::const_iterator it = workspace()->stackingOrder().constEnd(),
begin = workspace()->stackingOrder().constBegin();
while (--it != begin) {
if (*it == other) { // the other one is top on stack
it = begin; // invalidate
src = NET::FromTool; // force
break;
}
Client *c = qobject_cast<Client*>(*it);
if (!c || !( (*it)->isNormalWindow() && c->isShown(true) &&
(*it)->isOnCurrentDesktop() && (*it)->isOnCurrentActivity() && (*it)->isOnScreen(screen()) ))
continue; // irrelevant clients
if (*(it - 1) == other)
break; // "it" is the one above the target one, stack below "it"
}
if (it != begin && (*(it - 1) == other))
other = qobject_cast<Client*>(*it);
else
other = 0;
}
if (other)
workspace()->restack(this, other);
else if (detail == XCB_STACK_MODE_BELOW)
workspace()->lowerClientRequest(this, src, timestamp);
else if (detail == XCB_STACK_MODE_ABOVE)
workspace()->raiseClientRequest(this, src, timestamp);
2011-01-30 17:34:42 +03:00
if (send_event)
sendSyntheticConfigureNotify();
}
void Client::doSetKeepAbove()
2011-01-30 17:34:42 +03:00
{
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Layer);
2011-01-30 17:34:42 +03:00
}
void Client::doSetKeepBelow()
2011-01-30 17:34:42 +03:00
{
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Layer);
2011-01-30 17:34:42 +03:00
}
bool Client::belongsToDesktop() const
2011-01-30 17:34:42 +03:00
{
foreach (const Client *c, group()->members()) {
if (c->isDesktop())
return true;
}
return false;
}
} // namespace