kwin/client.cpp

2512 lines
82 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/>.
*********************************************************************/
// own
#include "client.h"
// kwin
#ifdef KWIN_BUILD_ACTIVITIES
#include "activities.h"
#endif
#ifdef KWIN_BUILD_KAPPMENU
#include "appmenu.h"
#endif
#include "atoms.h"
#include "bridge.h"
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
#include "client_machine.h"
#include "composite.h"
#include "cursor.h"
#include "decorations.h"
#include "deleted.h"
#include "focuschain.h"
#include "group.h"
#include "paintredirector.h"
#include "shadow.h"
#ifdef KWIN_BUILD_TABBOX
#include "tabbox.h"
#endif
#include "workspace.h"
// KDE
#include <KDE/KIconLoader>
#include <KDE/KStandardDirs>
#include <KDE/KWindowSystem>
// Qt
#include <QApplication>
#include <QProcess>
#ifdef KWIN_BUILD_SCRIPTING
#include <QScriptEngine>
#include <QScriptProgram>
#endif
#include <QWhatsThis>
// X
#ifdef HAVE_XSYNC
#include <X11/extensions/sync.h>
#endif
// system
#include <unistd.h>
#include <signal.h>
// Put all externs before the namespace statement to allow the linker
// to resolve them properly
namespace KWin
{
bool Client::s_haveResizeEffect = false;
// Creating a client:
// - only by calling Workspace::createClient()
// - it creates a new client and calls manage() for it
//
// Destroying a client:
// - destroyClient() - only when the window itself has been destroyed
// - releaseWindow() - the window is kept, only the client itself is destroyed
/**
* \class Client client.h
* \brief The Client class encapsulates a window decoration frame.
*/
/**
* This ctor is "dumb" - it only initializes data. All the real initialization
* is done in manage().
*/
2011-01-30 17:34:42 +03:00
Client::Client(Workspace* ws)
: Toplevel(ws)
, client(None)
, wrapper(None)
, decoration(NULL)
, bridge(new Bridge(this))
, m_activityUpdatesBlocked(false)
, m_blockedActivityUpdatesRequireTransients(false)
2011-01-30 17:34:42 +03:00
, move_resize_grab_window(None)
, move_resize_has_keyboard_grab(false)
, m_managed(false)
2011-01-30 17:34:42 +03:00
, transient_for (NULL)
, transient_for_id(None)
, original_transient_for_id(None)
, shade_below(NULL)
, skip_switcher(false)
, blocks_compositing(false)
, m_cursor(Qt::ArrowCursor)
2011-01-30 17:34:42 +03:00
, autoRaiseTimer(NULL)
, shadeHoverTimer(NULL)
, delayedMoveResizeTimer(NULL)
, in_group(NULL)
, window_group(None)
, tab_group(NULL)
2011-01-30 17:34:42 +03:00
, in_layer(UnknownLayer)
, ping_timer(NULL)
, m_killHelperPID(0)
2011-01-30 17:34:42 +03:00
, user_time(CurrentTime) // Not known yet
, allowed_actions(0)
, block_geometry_updates(0)
, pending_geometry_update(PendingGeometryNone)
, shade_geometry_change(false)
, border_left(0)
, border_right(0)
, border_top(0)
, border_bottom(0)
, padding_left(0)
, padding_right(0)
, padding_top(0)
, padding_bottom(0)
, sm_stacking_order(-1)
, paintRedirector(0)
, m_firstInTabBox(false)
2011-01-30 17:34:42 +03:00
, electricMaximizing(false)
, activitiesDefined(false)
, needsSessionInteract(false)
, needsXWindowMove(false)
#ifdef KWIN_BUILD_KAPPMENU
, m_menuAvailable(false)
#endif
, m_decoInputExtent()
2011-01-30 17:34:42 +03:00
{
// TODO: Do all as initialization
#ifdef HAVE_XSYNC
syncRequest.counter = syncRequest.alarm = None;
syncRequest.timeout = syncRequest.failsafeTimeout = NULL;
syncRequest.isPending = false;
#endif
// Set the initial mapping state
mapping_state = Withdrawn;
quick_tile_mode = QuickTileNone;
desk = 0; // No desktop yet
mode = PositionCenter;
buttonDown = false;
moveResizeMode = false;
info = NULL;
shade_mode = ShadeNone;
active = false;
deleting = false;
keep_above = false;
keep_below = false;
motif_may_move = true;
motif_may_resize = true;
motif_may_close = true;
fullscreen_mode = FullScreenNone;
skip_taskbar = false;
original_skip_taskbar = false;
minimized = false;
hidden = false;
modal = false;
noborder = false;
app_noborder = false;
motif_noborder = false;
urgency = false;
ignore_focus_stealing = false;
demands_attention = false;
check_active_modal = false;
Pdeletewindow = 0;
Ptakefocus = 0;
Ptakeactivity = 0;
Pcontexthelp = 0;
Pping = 0;
input = false;
skip_pager = false;
max_mode = MaximizeRestore;
cmap = None;
2011-01-30 17:34:42 +03:00
//Client to workspace connections require that each
//client constructed be connected to the workspace wrapper
#ifdef KWIN_BUILD_TABBOX
// TabBoxClient
m_tabBoxClient = QSharedPointer<TabBox::TabBoxClientImpl>(new TabBox::TabBoxClientImpl(this));
#endif
2011-01-30 17:34:42 +03:00
geom = QRect(0, 0, 100, 100); // So that decorations don't start with size being (0,0)
client_size = QSize(100, 100);
ready_for_painting = false; // wait for first damage or sync reply
connect(this, SIGNAL(geometryShapeChanged(KWin::Toplevel*,QRect)), SIGNAL(geometryChanged()));
connect(this, SIGNAL(clientMaximizedStateChanged(KWin::Client*,KDecorationDefines::MaximizeMode)), SIGNAL(geometryChanged()));
connect(this, SIGNAL(clientStepUserMovedResized(KWin::Client*,QRect)), SIGNAL(geometryChanged()));
connect(this, SIGNAL(clientStartUserMovedResized(KWin::Client*)), SIGNAL(moveResizedChanged()));
connect(this, SIGNAL(clientFinishUserMovedResized(KWin::Client*)), SIGNAL(moveResizedChanged()));
connect(this, SIGNAL(clientStartUserMovedResized(KWin::Client*)), SLOT(removeCheckScreenConnection()));
connect(this, SIGNAL(clientFinishUserMovedResized(KWin::Client*)), SLOT(setupCheckScreenConnection()));
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
connect(clientMachine(), SIGNAL(localhostChanged()), SLOT(updateCaption()));
2013-01-27 23:09:16 +04:00
connect(options, SIGNAL(condensedTitleChanged()), SLOT(updateCaption()));
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
// SELI TODO: Initialize xsizehints??
2011-01-30 17:34:42 +03:00
}
/**
* "Dumb" destructor.
*/
Client::~Client()
2011-01-30 17:34:42 +03:00
{
if (m_killHelperPID && !::kill(m_killHelperPID, 0)) { // means the process is alive
::kill(m_killHelperPID, SIGTERM);
m_killHelperPID = 0;
}
//SWrapper::Client::clientRelease(this);
#ifdef HAVE_XSYNC
if (syncRequest.alarm != None)
XSyncDestroyAlarm(display(), syncRequest.alarm);
#endif
assert(!moveResizeMode);
2011-01-30 17:34:42 +03:00
assert(client == None);
assert(wrapper == None);
//assert( frameId() == None );
2011-01-30 17:34:42 +03:00
assert(decoration == NULL);
assert(block_geometry_updates == 0);
assert(!check_active_modal);
delete bridge;
2011-01-30 17:34:42 +03:00
}
// Use destroyClient() or releaseWindow(), Client instances cannot be deleted directly
void Client::deleteClient(Client* c)
2011-01-30 17:34:42 +03:00
{
delete c;
2011-01-30 17:34:42 +03:00
}
/**
* Releases the window. The client has done its job and the window is still existing.
*/
2011-01-30 17:34:42 +03:00
void Client::releaseWindow(bool on_shutdown)
{
assert(!deleting);
deleting = true;
Deleted* del = NULL;
if (!on_shutdown) {
del = Deleted::create(this);
}
if (moveResizeMode)
emit clientFinishUserMovedResized(this);
emit windowClosed(this, del);
finishCompositing();
RuleBook::self()->discardUsed(this, true); // Remove ForceTemporarily rules
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(workspace());
if (moveResizeMode)
2011-01-30 17:34:42 +03:00
leaveMoveResize();
finishWindowRules();
++block_geometry_updates;
2011-01-30 17:34:42 +03:00
if (isOnCurrentDesktop() && isShown(true))
addWorkspaceRepaint(visibleRect());
// Grab X during the release to make removing of properties, setting to withdrawn state
// and repareting to root an atomic operation (http://lists.kde.org/?l=kde-devel&m=116448102901184&w=2)
grabXServer();
2011-01-30 17:34:42 +03:00
exportMappingState(WithdrawnState);
setModal(false); // Otherwise its mainwindow wouldn't get focus
hidden = true; // So that it's not considered visible anymore (can't use hideClient(), it would set flags)
2011-01-30 17:34:42 +03:00
if (!on_shutdown)
workspace()->clientHidden(this);
XUnmapWindow(display(), frameId()); // Destroying decoration would cause ugly visual effect
destroyDecoration();
cleanGrouping();
2011-01-30 17:34:42 +03:00
if (!on_shutdown) {
workspace()->removeClient(this);
// Only when the window is being unmapped, not when closing down KWin (NETWM sections 5.5,5.7)
2011-01-30 17:34:42 +03:00
info->setDesktop(0);
desk = 0;
2011-01-30 17:34:42 +03:00
info->setState(0, info->state()); // Reset all state flags
} else
untab();
2011-01-30 17:34:42 +03:00
XDeleteProperty(display(), client, atoms->kde_net_wm_user_creation_time);
XDeleteProperty(display(), client, atoms->net_frame_extents);
XDeleteProperty(display(), client, atoms->kde_net_wm_frame_strut);
XReparentWindow(display(), client, rootWindow(), x(), y());
XRemoveFromSaveSet(display(), client);
XSelectInput(display(), client, NoEventMask);
if (on_shutdown)
// Map the window, so it can be found after another WM is started
2011-01-30 17:34:42 +03:00
XMapWindow(display(), client);
// TODO: Preserve minimized, shaded etc. state?
else // Make sure it's not mapped if the app unmapped it (#65279). The app
2011-01-30 17:34:42 +03:00
// may do map+unmap before we initially map the window by calling rawShow() from manage().
XUnmapWindow(display(), client);
client = None;
2011-01-30 17:34:42 +03:00
XDestroyWindow(display(), wrapper);
wrapper = None;
2011-01-30 17:34:42 +03:00
XDestroyWindow(display(), frameId());
//frame = None;
--block_geometry_updates; // Don't use GeometryUpdatesBlocker, it would now set the geometry
if (!on_shutdown) {
disownDataPassedToDeleted();
del->unrefWindow();
}
checkNonExistentClients();
deleteClient(this);
ungrabXServer();
2011-01-30 17:34:42 +03:00
}
/**
* Like releaseWindow(), but this one is called when the window has been already destroyed
* (E.g. The application closed it)
*/
void Client::destroyClient()
2011-01-30 17:34:42 +03:00
{
assert(!deleting);
deleting = true;
2011-01-30 17:34:42 +03:00
Deleted* del = Deleted::create(this);
if (moveResizeMode)
emit clientFinishUserMovedResized(this);
emit windowClosed(this, del);
finishCompositing();
RuleBook::self()->discardUsed(this, true); // Remove ForceTemporarily rules
2011-01-30 17:34:42 +03:00
StackingUpdatesBlocker blocker(workspace());
if (moveResizeMode)
2011-01-30 17:34:42 +03:00
leaveMoveResize();
finishWindowRules();
++block_geometry_updates;
2011-01-30 17:34:42 +03:00
if (isOnCurrentDesktop() && isShown(true))
addWorkspaceRepaint(visibleRect());
setModal(false);
hidden = true; // So that it's not considered visible anymore
2011-01-30 17:34:42 +03:00
workspace()->clientHidden(this);
destroyDecoration();
cleanGrouping();
workspace()->removeClient(this);
client = None; // invalidate
2011-01-30 17:34:42 +03:00
XDestroyWindow(display(), wrapper);
wrapper = None;
2011-01-30 17:34:42 +03:00
XDestroyWindow(display(), frameId());
//frame = None;
--block_geometry_updates; // Don't use GeometryUpdatesBlocker, it would now set the geometry
disownDataPassedToDeleted();
del->unrefWindow();
checkNonExistentClients();
deleteClient(this);
2011-01-30 17:34:42 +03:00
}
// DnD handling for input shaping is broken in the clients for all Qt versions before 4.8.3
// NOTICE do not query the Qt version macro, this is a runtime problem!
// TODO KDE5 remove this
static inline bool qtBefore483()
{
QStringList l = QString(qVersion()).split(".");
// "4.x.y"
return l.at(1).toUInt() < 5 && l.at(1).toUInt() < 9 && l.at(2).toUInt() < 3;
}
void Client::updateInputWindow()
{
static bool brokenQtInputHandling = qtBefore483();
if (brokenQtInputHandling)
return;
QRegion region;
if (!noBorder()) {
// This function is implemented as a slot to avoid breaking binary
// compatibility
QMetaObject::invokeMethod(decoration, "region", Qt::DirectConnection,
Q_RETURN_ARG(QRegion, region),
Q_ARG(KDecorationDefines::Region, KDecorationDefines::ExtendedBorderRegion));
}
if (region.isEmpty()) {
m_decoInputExtent.reset();
return;
}
QRect bounds = region.boundingRect();
input_offset = bounds.topLeft();
// Move the bounding rect to screen coordinates
bounds.translate(geometry().topLeft());
// Move the region to input window coordinates
region.translate(-input_offset);
if (!m_decoInputExtent.isValid()) {
const uint32_t mask = XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK;
const uint32_t values[] = {true,
XCB_EVENT_MASK_ENTER_WINDOW |
XCB_EVENT_MASK_LEAVE_WINDOW |
XCB_EVENT_MASK_BUTTON_PRESS |
XCB_EVENT_MASK_BUTTON_RELEASE |
XCB_EVENT_MASK_POINTER_MOTION
};
m_decoInputExtent.create(bounds, XCB_WINDOW_CLASS_INPUT_ONLY, mask, values);
if (mapping_state == Mapped)
m_decoInputExtent.map();
} else {
m_decoInputExtent.setGeometry(bounds);
}
const QVector<xcb_rectangle_t> rects = Xcb::regionToRects(region);
xcb_shape_rectangles(connection(), XCB_SHAPE_SO_SET, XCB_SHAPE_SK_INPUT, XCB_CLIP_ORDERING_UNSORTED,
m_decoInputExtent, 0, 0, rects.count(), rects.constData());
}
2011-01-30 17:34:42 +03:00
void Client::updateDecoration(bool check_workspace_pos, bool force)
{
if (!force &&
((decoration == NULL && noBorder()) || (decoration != NULL && !noBorder())))
return;
QRect oldgeom = geometry();
2011-01-30 17:34:42 +03:00
blockGeometryUpdates(true);
if (force)
destroyDecoration();
2011-01-30 17:34:42 +03:00
if (!noBorder()) {
setMask(QRegion()); // Reset shape mask
if (decorationPlugin()->isDisabled()) {
decoration = NULL;
} else {
decoration = decorationPlugin()->createDecoration(bridge);
}
#ifdef KWIN_BUILD_KAPPMENU
connect(this, SIGNAL(showRequest()), decoration, SIGNAL(showRequest()));
connect(this, SIGNAL(appMenuAvailable()), decoration, SIGNAL(appMenuAvailable()));
connect(this, SIGNAL(appMenuUnavailable()), decoration, SIGNAL(appMenuUnavailable()));
connect(this, SIGNAL(menuHidden()), decoration, SIGNAL(menuHidden()));
#endif
// TODO: Check decoration's minimum size?
decoration->init();
2011-01-30 17:34:42 +03:00
decoration->widget()->installEventFilter(this);
XReparentWindow(display(), decoration->widget()->winId(), frameId(), 0, 0);
decoration->widget()->lower();
2011-01-30 17:34:42 +03:00
decoration->borders(border_left, border_right, border_top, border_bottom);
padding_left = padding_right = padding_top = padding_bottom = 0;
if (KDecorationUnstable *deco2 = dynamic_cast<KDecorationUnstable*>(decoration))
2011-01-30 17:34:42 +03:00
deco2->padding(padding_left, padding_right, padding_top, padding_bottom);
XMoveWindow(display(), decoration->widget()->winId(), -padding_left, -padding_top);
move(calculateGravitation(false));
plainResize(sizeForClientSize(clientSize()), ForceGeometrySet);
if (Compositor::compositing()) {
paintRedirector = PaintRedirector::create(this, decoration->widget());
discardWindowPixmap();
}
emit geometryShapeChanged(this, oldgeom);
2011-01-30 17:34:42 +03:00
} else
destroyDecoration();
2011-01-30 17:34:42 +03:00
if (check_workspace_pos)
checkWorkspacePosition(oldgeom);
updateInputWindow();
2011-01-30 17:34:42 +03:00
blockGeometryUpdates(false);
if (!noBorder())
decoration->widget()->show();
updateFrameExtents();
2011-01-30 17:34:42 +03:00
}
void Client::destroyDecoration()
2011-01-30 17:34:42 +03:00
{
QRect oldgeom = geometry();
2011-01-30 17:34:42 +03:00
if (decoration != NULL) {
delete decoration;
decoration = NULL;
paintRedirector = NULL;
2011-01-30 17:34:42 +03:00
QPoint grav = calculateGravitation(true);
border_left = border_right = border_top = border_bottom = 0;
2011-01-30 17:34:42 +03:00
setMask(QRegion()); // Reset shape mask
plainResize(sizeForClientSize(clientSize()), ForceGeometrySet);
move(grav);
if (compositing())
discardWindowPixmap();
if (!deleting) {
emit geometryShapeChanged(this, oldgeom);
}
}
m_decoInputExtent.reset();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
bool Client::checkBorderSizes(bool also_resize)
{
if (decoration == NULL)
return false;
int new_left = 0, new_right = 0, new_top = 0, new_bottom = 0;
if (KDecorationUnstable *deco2 = dynamic_cast<KDecorationUnstable*>(decoration))
2011-01-30 17:34:42 +03:00
deco2->padding(new_left, new_right, new_top, new_bottom);
if (padding_left != new_left || padding_top != new_top)
2011-01-30 17:34:42 +03:00
XMoveWindow(display(), decoration->widget()->winId(), -new_left, -new_top);
padding_left = new_left;
padding_right = new_right;
padding_top = new_top;
padding_bottom = new_bottom;
2011-01-30 17:34:42 +03:00
decoration->borders(new_left, new_right, new_top, new_bottom);
if (new_left == border_left && new_right == border_right &&
new_top == border_top && new_bottom == border_bottom)
return false;
2011-01-30 17:34:42 +03:00
if (!also_resize) {
border_left = new_left;
border_right = new_right;
border_top = new_top;
border_bottom = new_bottom;
return true;
2011-01-30 17:34:42 +03:00
}
GeometryUpdatesBlocker blocker(this);
move(calculateGravitation(true));
border_left = new_left;
border_right = new_right;
border_top = new_top;
border_bottom = new_bottom;
2011-01-30 17:34:42 +03:00
move(calculateGravitation(false));
QRect oldgeom = geometry();
2011-01-30 17:34:42 +03:00
plainResize(sizeForClientSize(clientSize()), ForceGeometrySet);
checkWorkspacePosition(oldgeom);
return true;
2011-01-30 17:34:42 +03:00
}
void Client::triggerDecorationRepaint()
2011-01-30 17:34:42 +03:00
{
if (decoration != NULL)
decoration->widget()->update();
2011-01-30 17:34:42 +03:00
}
void Client::layoutDecorationRects(QRect &left, QRect &top, QRect &right, QRect &bottom, Client::CoordinateMode mode) const
2011-01-30 17:34:42 +03:00
{
QRect r = decoration->widget()->rect();
if (mode == WindowRelative)
r.translate(-padding_left, -padding_top);
NETStrut strut = info->frameOverlap();
// Ignore the overlap strut when compositing is disabled
if (!compositing() || !decorationPlugin()->supportsFrameOverlap())
strut.left = strut.top = strut.right = strut.bottom = 0;
2011-01-30 17:34:42 +03:00
else if (strut.left == -1 && strut.top == -1 && strut.right == -1 && strut.bottom == -1) {
top = QRect(r.x(), r.y(), r.width(), r.height() / 3);
left = QRect(r.x(), r.y() + top.height(), width() / 2, r.height() / 3);
right = QRect(r.x() + left.width(), r.y() + top.height(), r.width() - left.width(), left.height());
bottom = QRect(r.x(), r.y() + top.height() + left.height(), r.width(), r.height() - left.height() - top.height());
return;
2011-01-30 17:34:42 +03:00
}
top = QRect(r.x(), r.y(), r.width(), padding_top + border_top + strut.top);
bottom = QRect(r.x(), r.y() + r.height() - padding_bottom - border_bottom - strut.bottom,
r.width(), padding_bottom + border_bottom + strut.bottom);
left = QRect(r.x(), r.y() + top.height(),
padding_left + border_left + strut.left, r.height() - top.height() - bottom.height());
right = QRect(r.x() + r.width() - padding_right - border_right - strut.right, r.y() + top.height(),
padding_right + border_right + strut.right, r.height() - top.height() - bottom.height());
2011-01-30 17:34:42 +03:00
}
QRegion Client::decorationPendingRegion() const
2011-01-30 17:34:42 +03:00
{
if (!paintRedirector)
return QRegion();
2011-01-30 17:34:42 +03:00
return paintRedirector->scheduledRepaintRegion().translated(x() - padding_left, y() - padding_top);
}
QRect Client::transparentRect() const
2011-01-30 17:34:42 +03:00
{
if (isShade())
return QRect();
NETStrut strut = info->frameOverlap();
// Ignore the strut when compositing is disabled or the decoration doesn't support it
if (!compositing() || !decorationPlugin()->supportsFrameOverlap())
strut.left = strut.top = strut.right = strut.bottom = 0;
else if (strut.left == -1 && strut.top == -1 && strut.right == -1 && strut.bottom == -1)
return QRect();
const QRect r = QRect(clientPos(), clientSize())
2011-01-30 17:34:42 +03:00
.adjusted(strut.left, strut.top, -strut.right, -strut.bottom);
if (r.isValid())
return r;
return QRect();
2011-01-30 17:34:42 +03:00
}
void Client::detectNoBorder()
2011-01-30 17:34:42 +03:00
{
if (shape()) {
noborder = true;
app_noborder = true;
return;
2011-01-30 17:34:42 +03:00
}
switch(windowType()) {
case NET::Desktop :
case NET::Dock :
case NET::TopMenu :
case NET::Splash :
noborder = true;
app_noborder = true;
break;
case NET::Unknown :
case NET::Normal :
case NET::Toolbar :
case NET::Menu :
case NET::Dialog :
case NET::Utility :
noborder = false;
break;
default:
abort();
}
// NET::Override is some strange beast without clear definition, usually
// just meaning "noborder", so let's treat it only as such flag, and ignore it as
// a window type otherwise (SUPPORTED_WINDOW_TYPES_MASK doesn't include it)
2011-01-30 17:34:42 +03:00
if (info->windowType(SUPPORTED_MANAGED_WINDOW_TYPES_MASK | NET::OverrideMask) == NET::Override) {
noborder = true;
app_noborder = true;
}
2011-01-30 17:34:42 +03:00
}
void Client::updateFrameExtents()
2011-01-30 17:34:42 +03:00
{
NETStrut strut;
strut.left = border_left;
strut.right = border_right;
strut.top = border_top;
strut.bottom = border_bottom;
2011-01-30 17:34:42 +03:00
info->setFrameExtents(strut);
}
/**
* Resizes the decoration, and makes sure the decoration widget gets resize event
* even if the size hasn't changed. This is needed to make sure the decoration
* re-layouts (e.g. when maximization state changes,
* the decoration may alter some borders, but the actual size
* of the decoration stays the same).
*/
2011-01-30 17:34:42 +03:00
void Client::resizeDecoration(const QSize& s)
{
if (decoration == NULL)
return;
QSize newSize = s + QSize(padding_left + padding_right, padding_top + padding_bottom);
QSize oldSize = decoration->widget()->size();
2011-01-30 17:34:42 +03:00
decoration->resize(newSize);
if (oldSize == newSize) {
QResizeEvent e(newSize, oldSize);
QApplication::sendEvent(decoration->widget(), &e);
} else if (paintRedirector) { // oldSize != newSize
paintRedirector->resizePixmaps();
} else {
triggerDecorationRepaint();
}
updateInputWindow();
2011-01-30 17:34:42 +03:00
}
bool Client::noBorder() const
2011-01-30 17:34:42 +03:00
{
return decorationPlugin()->isDisabled() || noborder || isFullScreen();
2011-01-30 17:34:42 +03:00
}
bool Client::userCanSetNoBorder() const
2011-01-30 17:34:42 +03:00
{
return !isFullScreen() && !isShade() && !tabGroup();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setNoBorder(bool set)
{
if (!userCanSetNoBorder())
return;
2011-01-30 17:34:42 +03:00
set = rules()->checkNoBorder(set);
if (noborder == set)
return;
noborder = set;
2011-01-30 17:34:42 +03:00
updateDecoration(true, false);
updateWindowRules(Rules::NoBorder);
2011-01-30 17:34:42 +03:00
}
void Client::checkNoBorder()
2011-01-30 17:34:42 +03:00
{
setNoBorder(app_noborder);
}
void Client::updateShape()
2011-01-30 17:34:42 +03:00
{
if (shape()) {
// Workaround for #19644 - Shaped windows shouldn't have decoration
if (!app_noborder) {
// Only when shape is detected for the first time, still let the user to override
app_noborder = true;
noborder = rules()->checkNoBorder(true);
2011-01-30 17:34:42 +03:00
updateDecoration(true);
}
if (noBorder()) {
xcb_shape_combine(connection(), XCB_SHAPE_SO_SET, XCB_SHAPE_SK_BOUNDING, XCB_SHAPE_SK_BOUNDING,
frameId(), clientPos().x(), clientPos().y(), window());
}
} else if (app_noborder) {
xcb_shape_mask(connection(), XCB_SHAPE_SO_SET, XCB_SHAPE_SK_BOUNDING, frameId(), 0, 0, XCB_PIXMAP_NONE);
detectNoBorder();
app_noborder = noborder = rules()->checkNoBorder(noborder);
updateDecoration(true);
}
// Decoration mask (i.e. 'else' here) setting is done in setMask()
// when the decoration calls it or when the decoration is created/destroyed
updateInputShape();
2011-01-30 17:34:42 +03:00
if (compositing()) {
addRepaintFull();
2011-01-30 17:34:42 +03:00
addWorkspaceRepaint(visibleRect()); // In case shape change removes part of this window
}
emit geometryShapeChanged(this, geometry());
2011-01-30 17:34:42 +03:00
}
static Xcb::Window shape_helper_window(XCB_WINDOW_NONE);
void Client::updateInputShape()
2011-01-30 17:34:42 +03:00
{
if (hiddenPreview()) // Sets it to none, don't change
return;
if (Xcb::Extensions::self()->isShapeInputAvailable()) {
2011-01-30 17:34:42 +03:00
// There appears to be no way to find out if a window has input
// shape set or not, so always propagate the input shape
// (it's the same like the bounding shape by default).
// Also, build the shape using a helper window, not directly
// in the frame window, because the sequence set-shape-to-frame,
// remove-shape-of-client, add-input-shape-of-client has the problem
// that after the second step there's a hole in the input shape
// until the real shape of the client is added and that can make
// the window lose focus (which is a problem with mouse focus policies)
// TODO: It seems there is, after all - XShapeGetRectangles() - but maybe this is better
if (!shape_helper_window.isValid())
shape_helper_window.create(QRect(0, 0, 1, 1));
shape_helper_window.resize(width(), height());
xcb_connection_t *c = connection();
xcb_shape_combine(c, XCB_SHAPE_SO_SET, XCB_SHAPE_SK_INPUT, XCB_SHAPE_SK_BOUNDING,
shape_helper_window, 0, 0, frameId());
xcb_shape_combine(c, XCB_SHAPE_SO_SUBTRACT, XCB_SHAPE_SK_INPUT, XCB_SHAPE_SK_BOUNDING,
shape_helper_window, clientPos().x(), clientPos().y(), window());
xcb_shape_combine(c, XCB_SHAPE_SO_UNION, XCB_SHAPE_SK_INPUT, XCB_SHAPE_SK_INPUT,
shape_helper_window, clientPos().x(), clientPos().y(), window());
xcb_shape_combine(c, XCB_SHAPE_SO_SET, XCB_SHAPE_SK_INPUT, XCB_SHAPE_SK_INPUT,
frameId(), 0, 0, shape_helper_window);
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setMask(const QRegion& reg, int mode)
{
QRegion r = reg.translated(-padding_left, -padding_right) & QRect(0, 0, width(), height());
if (_mask == r)
return;
_mask = r;
xcb_connection_t *c = connection();
xcb_window_t shape_window = frameId();
2011-01-30 17:34:42 +03:00
if (shape()) {
// The same way of applying a shape without strange intermediate states like above
if (!shape_helper_window.isValid())
shape_helper_window.create(QRect(0, 0, 1, 1));
shape_window = shape_helper_window;
2011-01-30 17:34:42 +03:00
}
if (_mask.isEmpty()) {
xcb_shape_mask(c, XCB_SHAPE_SO_SET, XCB_SHAPE_SK_BOUNDING, shape_window, 0, 0, XCB_PIXMAP_NONE);
} else {
const QVector< QRect > rects = _mask.rects();
QVector< xcb_rectangle_t > xrects(rects.count());
2011-01-30 17:34:42 +03:00
for (int i = 0; i < rects.count(); ++i) {
const QRect &rect = rects.at(i);
xcb_rectangle_t xrect;
xrect.x = rect.x();
xrect.y = rect.y();
xrect.width = rect.width();
xrect.height = rect.height();
xrects[i] = xrect;
}
xcb_shape_rectangles(c, XCB_SHAPE_SO_SET, XCB_SHAPE_SK_BOUNDING, mode, shape_window,
0, 0, xrects.count(), xrects.constData());
2011-01-30 17:34:42 +03:00
}
if (shape()) {
// The rest of the applying using a temporary window
xcb_rectangle_t rec = { 0, 0, static_cast<uint16_t>(clientSize().width()),
static_cast<uint16_t>(clientSize().height()) };
xcb_shape_rectangles(c, XCB_SHAPE_SO_SUBTRACT, XCB_SHAPE_SK_BOUNDING, XCB_CLIP_ORDERING_UNSORTED,
shape_helper_window, clientPos().x(), clientPos().y(), 1, &rec);
xcb_shape_combine(c, XCB_SHAPE_SO_UNION, XCB_SHAPE_SK_BOUNDING, XCB_SHAPE_SK_BOUNDING,
shape_helper_window, clientPos().x(), clientPos().y(), window());
xcb_shape_combine(c, XCB_SHAPE_SO_SET, XCB_SHAPE_SK_BOUNDING, XCB_SHAPE_SK_BOUNDING,
frameId(), 0, 0, shape_helper_window);
2011-01-30 17:34:42 +03:00
}
emit geometryShapeChanged(this, geometry());
updateShape();
2011-01-30 17:34:42 +03:00
}
QRegion Client::mask() const
2011-01-30 17:34:42 +03:00
{
if (_mask.isEmpty())
return QRegion(0, 0, width(), height());
return _mask;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::hideClient(bool hide)
{
if (hidden == hide)
return;
hidden = hide;
updateVisibility();
2011-01-30 17:34:42 +03:00
}
/**
* Returns whether the window is minimizable or not
*/
bool Client::isMinimizable() const
2011-01-30 17:34:42 +03:00
{
if (isSpecialWindow())
return false;
if (!rules()->checkMinimize(true))
return false;
2011-01-30 17:34:42 +03:00
if (isTransient()) {
// #66868 - Let other xmms windows be minimized when the mainwindow is minimized
bool shown_mainwindow = false;
ClientList mainclients = mainClients();
2011-01-30 17:34:42 +03:00
for (ClientList::ConstIterator it = mainclients.constBegin();
it != mainclients.constEnd();
++it)
if ((*it)->isShown(true))
shown_mainwindow = true;
2011-01-30 17:34:42 +03:00
if (!shown_mainwindow)
return true;
2011-01-30 17:34:42 +03:00
}
#if 0
// This is here because kicker's taskbar doesn't provide separate entries
// for windows with an explicitly given parent
// TODO: perhaps this should be redone
// Disabled for now, since at least modal dialogs should be minimizable
// (resulting in the mainwindow being minimized too).
2011-01-30 17:34:42 +03:00
if (transientFor() != NULL)
return false;
#endif
2011-01-30 17:34:42 +03:00
if (!wantsTabFocus()) // SELI, TODO: - NET::Utility? why wantsTabFocus() - skiptaskbar? ?
return false;
return true;
2011-01-30 17:34:42 +03:00
}
void Client::setMinimized(bool set)
{
set ? minimize() : unminimize();
}
/**
* Minimizes this client plus its transients
*/
2011-01-30 17:34:42 +03:00
void Client::minimize(bool avoid_animation)
{
if (!isMinimizable() || isMinimized())
return;
2011-01-30 17:34:42 +03:00
if (isShade()) // NETWM restriction - KWindowInfo::isMinimized() == Hidden && !Shaded
info->setState(0, NET::Shaded);
minimized = true;
updateVisibility();
updateAllowedActions();
2011-01-30 17:34:42 +03:00
workspace()->updateMinimizedOfTransients(this);
updateWindowRules(Rules::Minimize);
FocusChain::self()->update(this, FocusChain::MakeLast);
2011-03-06 12:55:27 +03:00
// TODO: merge signal with s_minimized
emit clientMinimized(this, !avoid_animation);
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Minimized);
emit minimizedChanged();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::unminimize(bool avoid_animation)
{
if (!isMinimized())
return;
2011-01-30 17:34:42 +03:00
if (rules()->checkMinimize(false)) {
return;
}
if (isShade()) // NETWM restriction - KWindowInfo::isMinimized() == Hidden && !Shaded
info->setState(NET::Shaded, NET::Shaded);
minimized = false;
updateVisibility();
updateAllowedActions();
2011-01-30 17:34:42 +03:00
workspace()->updateMinimizedOfTransients(this);
updateWindowRules(Rules::Minimize);
2011-03-06 13:08:19 +03:00
emit clientUnminimized(this, !avoid_animation);
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Minimized);
emit minimizedChanged();
2011-01-30 17:34:42 +03:00
}
QRect Client::iconGeometry() const
2011-01-30 17:34:42 +03:00
{
NETRect r = info->iconGeometry();
2011-01-30 17:34:42 +03:00
QRect geom(r.pos.x, r.pos.y, r.size.width, r.size.height);
if (geom.isValid())
return geom;
2011-01-30 17:34:42 +03:00
else {
// Check all mainwindows of this window (recursively)
foreach (Client * mainwin, mainClients()) {
geom = mainwin->iconGeometry();
2011-01-30 17:34:42 +03:00
if (geom.isValid())
return geom;
2011-01-30 17:34:42 +03:00
}
// No mainwindow (or their parents) with icon geometry was found
return QRect();
}
2011-01-30 17:34:42 +03:00
}
bool Client::isShadeable() const
2011-01-30 17:34:42 +03:00
{
return !isSpecialWindow() && !noBorder() && (rules()->checkShade(ShadeNormal) != rules()->checkShade(ShadeNone));
2011-01-30 17:34:42 +03:00
}
void Client::setShade(bool set) {
set ? setShade(ShadeNormal) : setShade(ShadeNone);
}
2011-01-30 17:34:42 +03:00
void Client::setShade(ShadeMode mode)
{
if (mode == ShadeHover && isMove())
return; // causes geometry breaks and is probably nasty
if (isSpecialWindow() || noBorder())
mode = ShadeNone;
2011-01-30 17:34:42 +03:00
mode = rules()->checkShade(mode);
if (shade_mode == mode)
return;
bool was_shade = isShade();
ShadeMode was_shade_mode = shade_mode;
shade_mode = mode;
// Decorations may turn off some borders when shaded
// this has to happen _before_ the tab alignment since it will restrict the minimum geometry
if (decoration)
decoration->borders(border_left, border_right, border_top, border_bottom);
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Shaded);
2011-01-30 17:34:42 +03:00
if (was_shade == isShade()) {
if (decoration != NULL) // Decoration may want to update after e.g. hover-shade changes
decoration->shadeChange();
return; // No real change in shaded state
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
assert(decoration != NULL); // noborder windows can't be shaded
GeometryUpdatesBlocker blocker(this);
// TODO: All this unmapping, resizing etc. feels too much duplicated from elsewhere
2011-01-30 17:34:42 +03:00
if (isShade()) {
// shade_mode == ShadeNormal
addWorkspaceRepaint(visibleRect());
// Shade
shade_geometry_change = true;
2011-01-30 17:34:42 +03:00
QSize s(sizeForClientSize(QSize(clientSize())));
s.setHeight(border_top + border_bottom);
XSelectInput(display(), wrapper, ClientWinMask); // Avoid getting UnmapNotify
XUnmapWindow(display(), wrapper);
XUnmapWindow(display(), client);
XSelectInput(display(), wrapper, ClientWinMask | SubstructureNotifyMask);
exportMappingState(IconicState);
2011-01-30 17:34:42 +03:00
plainResize(s);
shade_geometry_change = false;
if (was_shade_mode == ShadeHover) {
if (shade_below && workspace()->stackingOrder().indexOf(shade_below) > -1)
workspace()->restack(this, shade_below);
if (isActive())
2011-01-30 17:34:42 +03:00
workspace()->activateNextClient(this);
} else if (isActive()) {
workspace()->focusToNull();
}
2011-01-30 17:34:42 +03:00
} else {
shade_geometry_change = true;
2011-01-30 17:34:42 +03:00
QSize s(sizeForClientSize(clientSize()));
shade_geometry_change = false;
2011-01-30 17:34:42 +03:00
plainResize(s);
if ((shade_mode == ShadeHover || shade_mode == ShadeActivated) && rules()->checkAcceptFocus(input))
2011-01-30 17:34:42 +03:00
setActive(true);
if (shade_mode == ShadeHover) {
ToplevelList order = workspace()->stackingOrder();
// invalidate, since "this" could be the topmost toplevel and shade_below dangeling
shade_below = NULL;
// this is likely related to the index parameter?!
for (int idx = order.indexOf(this) + 1; idx < order.count(); ++idx) {
shade_below = qobject_cast<Client*>(order.at(idx));
if (shade_below) {
break;
}
}
if (shade_below && shade_below->isNormalWindow())
workspace()->raiseClient(this);
else
shade_below = NULL;
}
2011-01-30 17:34:42 +03:00
XMapWindow(display(), wrapperId());
XMapWindow(display(), window());
exportMappingState(NormalState);
2011-01-30 17:34:42 +03:00
if (isActive())
workspace()->requestFocus(this);
}
info->setState(isShade() ? NET::Shaded : 0, NET::Shaded);
info->setState(isShown(false) ? 0 : NET::Hidden, NET::Hidden);
discardWindowPixmap();
updateVisibility();
updateAllowedActions();
2011-01-30 17:34:42 +03:00
if (decoration)
decoration->shadeChange();
updateWindowRules(Rules::Shade);
emit shadeChanged();
2011-01-30 17:34:42 +03:00
}
void Client::shadeHover()
2011-01-30 17:34:42 +03:00
{
setShade(ShadeHover);
cancelShadeHoverTimer();
2011-01-30 17:34:42 +03:00
}
void Client::shadeUnhover()
2011-01-30 17:34:42 +03:00
{
if (!tabGroup() || tabGroup()->current() == this ||
tabGroup()->current()->shadeMode() == ShadeNormal)
setShade(ShadeNormal);
cancelShadeHoverTimer();
2011-01-30 17:34:42 +03:00
}
void Client::cancelShadeHoverTimer()
2011-01-30 17:34:42 +03:00
{
delete shadeHoverTimer;
shadeHoverTimer = 0;
2011-01-30 17:34:42 +03:00
}
void Client::toggleShade()
2011-01-30 17:34:42 +03:00
{
// If the mode is ShadeHover or ShadeActive, cancel shade too
setShade(shade_mode == ShadeNone ? ShadeNormal : ShadeNone);
}
void Client::updateVisibility()
2011-01-30 17:34:42 +03:00
{
if (deleting)
return;
if (hidden && isCurrentTab()) {
2011-01-30 17:34:42 +03:00
info->setState(NET::Hidden, NET::Hidden);
setSkipTaskbar(true, false); // Also hide from taskbar
if (compositing() && options->hiddenPreviews() == HiddenPreviewsAlways)
internalKeep();
else
internalHide();
return;
2011-01-30 17:34:42 +03:00
}
if (isCurrentTab())
2011-01-30 17:34:42 +03:00
setSkipTaskbar(original_skip_taskbar, false); // Reset from 'hidden'
if (minimized) {
info->setState(NET::Hidden, NET::Hidden);
if (compositing() && options->hiddenPreviews() == HiddenPreviewsAlways)
internalKeep();
else
internalHide();
return;
2011-01-30 17:34:42 +03:00
}
info->setState(0, NET::Hidden);
if (!isOnCurrentDesktop()) {
if (compositing() && options->hiddenPreviews() != HiddenPreviewsNever)
internalKeep();
else
internalHide();
return;
2011-01-30 17:34:42 +03:00
}
if (!isOnCurrentActivity()) {
if (compositing() && options->hiddenPreviews() != HiddenPreviewsNever)
internalKeep();
else
internalHide();
return;
2011-01-30 17:34:42 +03:00
}
if (isManaged())
resetShowingDesktop(true);
internalShow();
2011-01-30 17:34:42 +03:00
}
void Client::resetShowingDesktop(bool keep_hidden)
{
if (isDock() || !workspace()->showingDesktop())
return;
bool belongs_to_desktop = false;
for (ClientList::ConstIterator it = group()->members().constBegin(),
end = group()->members().constEnd(); it != end; ++it)
if ((belongs_to_desktop = (*it)->isDesktop()))
break;
if (!belongs_to_desktop)
workspace()->resetShowingDesktop(keep_hidden);
}
/**
* Sets the client window's mapping state. Possible values are
* WithdrawnState, IconicState, NormalState.
*/
2011-01-30 17:34:42 +03:00
void Client::exportMappingState(int s)
{
assert(client != None);
assert(!deleting || s == WithdrawnState);
if (s == WithdrawnState) {
XDeleteProperty(display(), window(), atoms->wm_state);
return;
2011-01-30 17:34:42 +03:00
}
assert(s == NormalState || s == IconicState);
unsigned long data[2];
data[0] = (unsigned long) s;
data[1] = (unsigned long) None;
XChangeProperty(display(), window(), atoms->wm_state, atoms->wm_state, 32,
2011-01-30 17:34:42 +03:00
PropModeReplace, (unsigned char*)(data), 2);
}
void Client::internalShow()
2011-01-30 17:34:42 +03:00
{
if (mapping_state == Mapped)
return;
MappingState old = mapping_state;
mapping_state = Mapped;
2011-01-30 17:34:42 +03:00
if (old == Unmapped || old == Withdrawn)
map();
if (old == Kept) {
m_decoInputExtent.map();
updateHiddenPreview();
}
if (Compositor::isCreated()) {
Compositor::self()->checkUnredirect();
}
2011-01-30 17:34:42 +03:00
}
void Client::internalHide()
2011-01-30 17:34:42 +03:00
{
if (mapping_state == Unmapped)
return;
MappingState old = mapping_state;
mapping_state = Unmapped;
2011-01-30 17:34:42 +03:00
if (old == Mapped || old == Kept)
unmap();
2011-01-30 17:34:42 +03:00
if (old == Kept)
updateHiddenPreview();
2011-01-30 17:34:42 +03:00
addWorkspaceRepaint(visibleRect());
workspace()->clientHidden(this);
if (Compositor::isCreated()) {
Compositor::self()->checkUnredirect();
}
2011-01-30 17:34:42 +03:00
}
void Client::internalKeep()
2011-01-30 17:34:42 +03:00
{
assert(compositing());
if (mapping_state == Kept)
return;
MappingState old = mapping_state;
mapping_state = Kept;
2011-01-30 17:34:42 +03:00
if (old == Unmapped || old == Withdrawn)
map();
m_decoInputExtent.unmap();
updateHiddenPreview();
2011-01-30 17:34:42 +03:00
addWorkspaceRepaint(visibleRect());
workspace()->clientHidden(this);
if (Compositor::isCreated()) {
Compositor::self()->checkUnredirect();
}
2011-01-30 17:34:42 +03:00
}
/**
* Maps (shows) the client. Note that it is mapping state of the frame,
* not necessarily the client window itself (i.e. a shaded window is here
* considered mapped, even though it is in IconicState).
*/
void Client::map()
2011-01-30 17:34:42 +03:00
{
// XComposite invalidates backing pixmaps on unmap (minimize, different
// virtual desktop, etc.). We kept the last known good pixmap around
// for use in effects, but now we want to have access to the new pixmap
2011-01-30 17:34:42 +03:00
if (compositing())
discardWindowPixmap();
2011-01-30 17:34:42 +03:00
if (decoration != NULL)
decoration->widget()->show(); // Not really necessary, but let it know the state
2011-01-30 17:34:42 +03:00
XMapWindow(display(), frameId());
if (!isShade()) {
XMapWindow(display(), wrapper);
XMapWindow(display(), client);
m_decoInputExtent.map();
2011-01-30 17:34:42 +03:00
exportMappingState(NormalState);
} else
exportMappingState(IconicState);
}
/**
* Unmaps the client. Again, this is about the frame.
*/
void Client::unmap()
2011-01-30 17:34:42 +03:00
{
// Here it may look like a race condition, as some other client might try to unmap
// the window between these two XSelectInput() calls. However, they're supposed to
// use XWithdrawWindow(), which also sends a synthetic event to the root window,
// which won't be missed, so this shouldn't be a problem. The chance the real UnmapNotify
// will be missed is also very minimal, so I don't think it's needed to grab the server
// here.
2011-01-30 17:34:42 +03:00
XSelectInput(display(), wrapper, ClientWinMask); // Avoid getting UnmapNotify
XUnmapWindow(display(), frameId());
XUnmapWindow(display(), wrapper);
XUnmapWindow(display(), client);
m_decoInputExtent.unmap();
2011-01-30 17:34:42 +03:00
XSelectInput(display(), wrapper, ClientWinMask | SubstructureNotifyMask);
if (decoration != NULL)
decoration->widget()->hide(); // Not really necessary, but let it know the state
2011-01-30 17:34:42 +03:00
exportMappingState(IconicState);
}
/**
* XComposite doesn't keep window pixmaps of unmapped windows, which means
* there wouldn't be any previews of windows that are minimized or on another
* virtual desktop. Therefore rawHide() actually keeps such windows mapped.
* However special care needs to be taken so that such windows don't interfere.
* Therefore they're put very low in the stacking order and they have input shape
* set to none, which hopefully is enough. If there's no input shape available,
* then it's hoped that there will be some other desktop above it *shrug*.
* Using normal shape would be better, but that'd affect other things, e.g. painting
* of the actual preview.
*/
void Client::updateHiddenPreview()
2011-01-30 17:34:42 +03:00
{
if (hiddenPreview()) {
workspace()->forceRestacking();
if (Xcb::Extensions::self()->isShapeInputAvailable()) {
xcb_shape_rectangles(connection(), XCB_SHAPE_SO_SET, XCB_SHAPE_SK_INPUT,
XCB_CLIP_ORDERING_UNSORTED, frameId(), 0, 0, 0, NULL);
}
2011-01-30 17:34:42 +03:00
} else {
workspace()->forceRestacking();
updateInputShape();
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::sendClientMessage(Window w, Atom a, Atom protocol, long data1, long data2, long data3)
{
XEvent ev;
long mask;
2011-01-30 17:34:42 +03:00
memset(&ev, 0, sizeof(ev));
ev.xclient.type = ClientMessage;
ev.xclient.window = w;
ev.xclient.message_type = a;
ev.xclient.format = 32;
ev.xclient.data.l[0] = protocol;
ev.xclient.data.l[1] = xTime();
ev.xclient.data.l[2] = data1;
ev.xclient.data.l[3] = data2;
ev.xclient.data.l[4] = data3;
mask = 0L;
2011-01-30 17:34:42 +03:00
if (w == rootWindow())
mask = SubstructureRedirectMask; // Magic!
XSendEvent(display(), w, False, mask, &ev);
}
/**
* Returns whether the window may be closed (have a close button)
*/
bool Client::isCloseable() const
2011-01-30 17:34:42 +03:00
{
return rules()->checkCloseable(motif_may_close && !isSpecialWindow());
}
/**
* Closes the window by either sending a delete_window message or using XKill.
*/
void Client::closeWindow()
2011-01-30 17:34:42 +03:00
{
if (!isCloseable())
return;
// Update user time, because the window may create a confirming dialog.
updateUserTime();
2011-01-30 17:34:42 +03:00
if (Pdeletewindow) {
sendClientMessage(window(), atoms->wm_protocols, atoms->wm_delete_window);
pingWindow();
2011-01-30 17:34:42 +03:00
} else // Client will not react on wm_delete_window. We have not choice
// but destroy his connection to the XServer.
killWindow();
2011-01-30 17:34:42 +03:00
}
/**
* Kills the window via XKill
*/
void Client::killWindow()
2011-01-30 17:34:42 +03:00
{
kDebug(1212) << "Client::killWindow():" << caption();
killProcess(false);
XKillClient(display(), window()); // Always kill this client at the server
destroyClient();
2011-01-30 17:34:42 +03:00
}
/**
* Send a ping to the window using _NET_WM_PING if possible if it
* doesn't respond within a reasonable time, it will be killed.
*/
void Client::pingWindow()
2011-01-30 17:34:42 +03:00
{
if (!Pping)
return; // Can't ping :(
if (options->killPingTimeout() == 0)
return; // Turned off
2011-01-30 17:34:42 +03:00
if (ping_timer != NULL)
return; // Pinging already
2011-01-30 17:34:42 +03:00
ping_timer = new QTimer(this);
connect(ping_timer, SIGNAL(timeout()), SLOT(pingTimeout()));
ping_timer->setSingleShot(true);
ping_timer->start(options->killPingTimeout());
ping_timestamp = xTime();
2011-01-30 17:34:42 +03:00
workspace()->sendPingToWindow(window(), ping_timestamp);
}
2011-01-30 17:34:42 +03:00
void Client::gotPing(Time timestamp)
{
// Just plain compare is not good enough because of 64bit and truncating and whatnot
2011-01-30 17:34:42 +03:00
if (NET::timestampCompare(timestamp, ping_timestamp) != 0)
return;
delete ping_timer;
ping_timer = NULL;
if (m_killHelperPID && !::kill(m_killHelperPID, 0)) { // means the process is alive
::kill(m_killHelperPID, SIGTERM);
m_killHelperPID = 0;
}
2011-01-30 17:34:42 +03:00
}
void Client::pingTimeout()
2011-01-30 17:34:42 +03:00
{
kDebug(1212) << "Ping timeout:" << caption();
ping_timer->deleteLater();
ping_timer = NULL;
2011-01-30 17:34:42 +03:00
killProcess(true, ping_timestamp);
}
2011-01-30 17:34:42 +03:00
void Client::killProcess(bool ask, Time timestamp)
{
if (m_killHelperPID && !::kill(m_killHelperPID, 0)) // means the process is alive
return;
2011-01-30 17:34:42 +03:00
Q_ASSERT(!ask || timestamp != CurrentTime);
pid_t pid = info->pid();
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
if (pid <= 0 || clientMachine()->hostName().isEmpty()) // Needed properties missing
return;
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
kDebug(1212) << "Kill process:" << pid << "(" << clientMachine()->hostName() << ")";
2011-01-30 17:34:42 +03:00
if (!ask) {
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
if (!clientMachine()->isLocal()) {
QStringList lst;
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
lst << clientMachine()->hostName() << "kill" << QString::number(pid);
2011-01-30 17:34:42 +03:00
QProcess::startDetached("xon", lst);
} else
::kill(pid, SIGTERM);
} else {
QProcess::startDetached(KStandardDirs::findExe("kwin_killer_helper"),
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
QStringList() << "--pid" << QByteArray().setNum(unsigned(pid)) << "--hostname" << clientMachine()->hostName()
<< "--windowname" << caption()
<< "--applicationname" << resourceClass()
<< "--wid" << QString::number(window())
<< "--timestamp" << QString::number(timestamp),
QString(), &m_killHelperPID);
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setSkipTaskbar(bool b, bool from_outside)
{
int was_wants_tab_focus = wantsTabFocus();
2011-01-30 17:34:42 +03:00
if (from_outside) {
b = rules()->checkSkipTaskbar(b);
original_skip_taskbar = b;
2011-01-30 17:34:42 +03:00
}
if (b == skipTaskbar())
return;
skip_taskbar = b;
2011-01-30 17:34:42 +03:00
info->setState(b ? NET::SkipTaskbar : 0, NET::SkipTaskbar);
updateWindowRules(Rules::SkipTaskbar);
2011-01-30 17:34:42 +03:00
if (was_wants_tab_focus != wantsTabFocus())
FocusChain::self()->update(this,
isActive() ? FocusChain::MakeFirst : FocusChain::Update);
emit skipTaskbarChanged();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setSkipPager(bool b)
{
b = rules()->checkSkipPager(b);
if (b == skipPager())
return;
skip_pager = b;
2011-01-30 17:34:42 +03:00
info->setState(b ? NET::SkipPager : 0, NET::SkipPager);
updateWindowRules(Rules::SkipPager);
emit skipPagerChanged();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setSkipSwitcher(bool set)
{
set = rules()->checkSkipSwitcher(set);
if (set == skipSwitcher())
return;
skip_switcher = set;
updateWindowRules(Rules::SkipSwitcher);
emit skipSwitcherChanged();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setModal(bool m)
{
// Qt-3.2 can have even modal normal windows :(
if (modal == m)
return;
modal = m;
2011-12-22 20:54:07 +04:00
emit modalChanged();
// Changing modality for a mapped window is weird (?)
// _NET_WM_STATE_MODAL should possibly rather be _NET_WM_WINDOW_TYPE_MODAL_DIALOG
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setDesktop(int desktop)
{
const int numberOfDesktops = VirtualDesktopManager::self()->count();
2011-01-30 17:34:42 +03:00
if (desktop != NET::OnAllDesktops) // Do range check
desktop = qMax(1, qMin(numberOfDesktops, desktop));
desktop = qMin(numberOfDesktops, rules()->checkDesktop(desktop));
2011-01-30 17:34:42 +03:00
if (desk == desktop)
return;
int was_desk = desk;
desk = desktop;
2011-01-30 17:34:42 +03:00
info->setDesktop(desktop);
if ((was_desk == NET::OnAllDesktops) != (desktop == NET::OnAllDesktops)) {
// onAllDesktops changed
workspace()->updateOnAllDesktopsOfTransients(this);
}
if (decoration != NULL)
decoration->desktopChange();
2011-01-30 17:34:42 +03:00
ClientList transients_stacking_order = workspace()->ensureStackingOrder(transients());
for (ClientList::ConstIterator it = transients_stacking_order.constBegin();
it != transients_stacking_order.constEnd();
++it)
(*it)->setDesktop(desktop);
2011-01-30 17:34:42 +03:00
if (isModal()) // if a modal dialog is moved, move the mainwindow with it as otherwise
// the (just moved) modal dialog will confusingly return to the mainwindow with
// the next desktop change
{
foreach (Client * c2, mainClients())
c2->setDesktop(desktop);
}
FocusChain::self()->update(this, FocusChain::MakeFirst);
updateVisibility();
updateWindowRules(Rules::Desktop);
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Desktop);
2011-12-22 18:02:35 +04:00
emit desktopChanged();
2011-01-30 17:34:42 +03:00
}
/**
* Sets whether the client is on @p activity.
* If you remove it from its last activity, then it's on all activities.
*
* Note: If it was on all activities and you try to remove it from one, nothing will happen;
* I don't think that's an important enough use case to handle here.
*/
2011-01-30 17:34:42 +03:00
void Client::setOnActivity(const QString &activity, bool enable)
{
#ifdef KWIN_BUILD_ACTIVITIES
QStringList newActivitiesList = activities();
2011-01-30 17:34:42 +03:00
if (newActivitiesList.contains(activity) == enable) //nothing to do
return;
2011-01-30 17:34:42 +03:00
if (enable) {
QStringList allActivities = Activities::self()->all();
2011-01-30 17:34:42 +03:00
if (!allActivities.contains(activity)) //bogus ID
return;
newActivitiesList.append(activity);
2011-01-30 17:34:42 +03:00
} else
newActivitiesList.removeOne(activity);
2011-01-30 17:34:42 +03:00
setOnActivities(newActivitiesList);
#else
Q_UNUSED(activity)
Q_UNUSED(enable)
#endif
2011-01-30 17:34:42 +03:00
}
/**
* set exactly which activities this client is on
*/
2011-01-30 17:34:42 +03:00
void Client::setOnActivities(QStringList newActivitiesList)
{
#ifdef KWIN_BUILD_ACTIVITIES
QString joinedActivitiesList = newActivitiesList.join(",");
joinedActivitiesList = rules()->checkActivity(joinedActivitiesList, false);
newActivitiesList = joinedActivitiesList.split(',', QString::SkipEmptyParts);
QStringList allActivities = Activities::self()->all();
if ( newActivitiesList.isEmpty() ||
(newActivitiesList.count() > 1 && newActivitiesList.count() == allActivities.count()) ||
(newActivitiesList.count() == 1 && newActivitiesList.at(0) == Activities::nullUuid())) {
activityList.clear();
const QByteArray nullUuid = Activities::nullUuid().toUtf8();
XChangeProperty(display(), window(), atoms->activities, XA_STRING, 8,
PropModeReplace, (const unsigned char *)nullUuid.constData(), nullUuid.length());
} else {
QByteArray joined = joinedActivitiesList.toAscii();
char *data = joined.data();
activityList = newActivitiesList;
XChangeProperty(display(), window(), atoms->activities, XA_STRING, 8,
2011-01-30 17:34:42 +03:00
PropModeReplace, (unsigned char *)data, joined.size());
}
2011-01-30 17:34:42 +03:00
updateActivities(false);
#else
Q_UNUSED(newActivitiesList)
#endif
2011-01-30 17:34:42 +03:00
}
void Client::blockActivityUpdates(bool b)
{
if (b) {
++m_activityUpdatesBlocked;
} else {
Q_ASSERT(m_activityUpdatesBlocked);
--m_activityUpdatesBlocked;
if (!m_activityUpdatesBlocked)
updateActivities(m_blockedActivityUpdatesRequireTransients);
}
}
/**
* update after activities changed
*/
2011-01-30 17:34:42 +03:00
void Client::updateActivities(bool includeTransients)
{
if (m_activityUpdatesBlocked) {
m_blockedActivityUpdatesRequireTransients |= includeTransients;
return;
}
emit activitiesChanged(this);
m_blockedActivityUpdatesRequireTransients = false; // reset
FocusChain::self()->update(this, FocusChain::MakeFirst);
updateVisibility();
updateWindowRules(Rules::Activity);
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Activity);
2011-01-30 17:34:42 +03:00
}
/**
* Returns the virtual desktop within the workspace() the client window
* is located in, 0 if it isn't located on any special desktop (not mapped yet),
* or NET::OnAllDesktops. Do not use desktop() directly, use
* isOnDesktop() instead.
*/
int Client::desktop() const
{
if (needsSessionInteract) {
return NET::OnAllDesktops;
}
return desk;
}
/**
* Returns the list of activities the client window is on.
* if it's on all activities, the list will be empty.
* Don't use this, use isOnActivity() and friends (from class Toplevel)
*/
QStringList Client::activities() const
2011-01-30 17:34:42 +03:00
{
if (needsSessionInteract) {
return QStringList();
}
return activityList;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::setOnAllDesktops(bool b)
{
if ((b && isOnAllDesktops()) ||
(!b && !isOnAllDesktops()))
return;
2011-01-30 17:34:42 +03:00
if (b)
setDesktop(NET::OnAllDesktops);
else
setDesktop(VirtualDesktopManager::self()->current());
// Update states of all other windows in this group
if (tabGroup())
tabGroup()->updateStates(this, TabGroup::Desktop);
2011-01-30 17:34:42 +03:00
}
/**
* if @p on is true, sets on all activities.
* if it's false, sets it to only be on the current activity
*/
2011-01-30 17:34:42 +03:00
void Client::setOnAllActivities(bool on)
{
#ifdef KWIN_BUILD_ACTIVITIES
2011-01-30 17:34:42 +03:00
if (on == isOnAllActivities())
return;
2011-01-30 17:34:42 +03:00
if (on) {
setOnActivities(QStringList());
2011-01-30 17:34:42 +03:00
} else {
setOnActivity(Activities::self()->current(), true);
}
#endif
2011-01-30 17:34:42 +03:00
}
/**
* Performs activation and/or raising of the window
*/
void Client::takeActivity(int flags, bool handled)
2011-01-30 17:34:42 +03:00
{
if (!handled || !Ptakeactivity) {
if (flags & ActivityFocus)
takeFocus();
2011-01-30 17:34:42 +03:00
if (flags & ActivityRaise)
workspace()->raiseClient(this);
return;
2011-01-30 17:34:42 +03:00
}
#ifndef NDEBUG
static Time previous_activity_timestamp;
static Client* previous_client;
2011-01-30 17:34:42 +03:00
//if ( previous_activity_timestamp == xTime() && previous_client != this )
// {
// kDebug( 1212 ) << "Repeated use of the same X timestamp for activity";
// kDebug( 1212 ) << kBacktrace();
// }
previous_activity_timestamp = xTime();
previous_client = this;
#endif
2011-01-30 17:34:42 +03:00
workspace()->sendTakeActivity(this, xTime(), flags);
}
/**
* Performs the actual focusing of the window using XSetInputFocus and WM_TAKE_FOCUS
*/
void Client::takeFocus()
2011-01-30 17:34:42 +03:00
{
#ifndef NDEBUG
static Time previous_focus_timestamp;
static Client* previous_client;
2011-01-30 17:34:42 +03:00
//if ( previous_focus_timestamp == xTime() && previous_client != this )
// {
// kDebug( 1212 ) << "Repeated use of the same X timestamp for focus";
// kDebug( 1212 ) << kBacktrace();
// }
previous_focus_timestamp = xTime();
previous_client = this;
#endif
2011-01-30 17:34:42 +03:00
if (rules()->checkAcceptFocus(input))
XSetInputFocus(display(), window(), RevertToPointerRoot, xTime());
else
demandAttention(false); // window cannot take input, at least withdraw urgency
2011-01-30 17:34:42 +03:00
if (Ptakefocus)
sendClientMessage(window(), atoms->wm_protocols, atoms->wm_take_focus);
workspace()->setShouldGetFocus(this);
}
/**
* Returns whether the window provides context help or not. If it does,
* you should show a help menu item or a help button like '?' and call
* contextHelp() if this is invoked.
*
* \sa contextHelp()
*/
bool Client::providesContextHelp() const
2011-01-30 17:34:42 +03:00
{
return Pcontexthelp;
2011-01-30 17:34:42 +03:00
}
/**
* Invokes context help on the window. Only works if the window
* actually provides context help.
*
* \sa providesContextHelp()
*/
void Client::showContextHelp()
2011-01-30 17:34:42 +03:00
{
if (Pcontexthelp) {
sendClientMessage(window(), atoms->wm_protocols, atoms->net_wm_context_help);
QWhatsThis::enterWhatsThisMode(); // SELI TODO: ?
}
2011-01-30 17:34:42 +03:00
}
/**
* Fetches the window's caption (WM_NAME property). It will be
* stored in the client's caption().
*/
void Client::fetchName()
2011-01-30 17:34:42 +03:00
{
setCaption(readName());
}
QString Client::readName() const
2011-01-30 17:34:42 +03:00
{
if (info->name() && info->name()[0] != '\0')
return QString::fromUtf8(info->name());
else
2011-01-30 17:34:42 +03:00
return KWindowSystem::readNameProperty(window(), XA_WM_NAME);
}
2011-01-30 17:34:42 +03:00
KWIN_COMPARE_PREDICATE(FetchNameInternalPredicate, Client, const Client*, (!cl->isSpecialWindow() || cl->isToolbar()) && cl != value && cl->caption() == value->caption());
// The list is taken from http://www.unicode.org/reports/tr9/ (#154840)
QChar LRM(0x200E);
QChar RLM(0x200F);
QChar LRE(0x202A);
QChar RLE(0x202B);
QChar LRO(0x202D);
QChar RLO(0x202E);
QChar PDF(0x202C);
2011-01-30 17:34:42 +03:00
void Client::setCaption(const QString& _s, bool force)
{
if (!force && _s == cap_normal)
return;
QString s(_s);
for (int i = 0; i < s.length(); ++i)
if (!s[i].isPrint())
s[i] = QChar(' ');
cap_normal = s;
#ifdef KWIN_BUILD_SCRIPTING
if (options->condensedTitle()) {
static QScriptEngine engine;
static QScriptProgram stripTitle;
static QScriptValue script;
if (stripTitle.isNull()) {
const QString scriptFile = KStandardDirs::locate("data", QLatin1String(KWIN_NAME) + "/stripTitle.js");
if (!scriptFile.isEmpty()) {
QFile f(scriptFile);
if (f.open(QIODevice::ReadOnly|QIODevice::Text)) {
f.reset();
stripTitle = QScriptProgram(QString::fromLocal8Bit(f.readAll()), "stripTitle.js");
f.close();
}
}
if (stripTitle.isNull())
stripTitle = QScriptProgram("(function(title, wm_name, wm_class){ return title ; })", "stripTitle.js");
script = engine.evaluate(stripTitle);
}
QScriptValueList args;
args << _s << QString(resourceName()) << QString(resourceClass());
s = script.call(QScriptValue(), args).toString();
}
#endif
if (!force && s == cap_deco)
return;
cap_deco = s;
bool reset_name = force;
bool was_suffix = (!cap_suffix.isEmpty());
cap_suffix.clear();
QString machine_suffix;
if (!options->condensedTitle()) { // machine doesn't qualify for "clean"
Improved resolving whether a window is on local machine Most windows use the hostname in WM_CLIENT_MACHINE, but there are windows using the FQDN (for example libreoffice). So instead of "foo" it is "foo.local.net" or similar. The logic so far has been unable to properly determine whether windows with FQDN are on the local system. In order to solve this problem the handling is split out into an own class which stores the information of hostname and whether it is a local machine. This is to not query multiple times. To determine whether the Client is on the local system getaddrinfo is used for the own hostname and the FQDN provided in WM_CLIENT_MACHINE. If one of the queried names matches, we know that it is on the local machine. The old logic to compare the hostname is still used and getaddrinfo is only a fallback in case hostname does not match. The problem with getaddrinfo is, that it accesses the network and by that could block. To circumvent this problem the calls are moved into threads by using QtConcurrent::run. Obviously this brings disadvantages. When trying to resolve whether a Client is on the local machine and a FQDN is used, the information is initially wrong. The new ClientMachine class emits a signal when the information that the system is local becomes available, but for some things this is just too late: * window rules are already gathered * Session Management has already taken place In both cases this is an acceptable loss. For window rules it just needs a proper matching of the machine in case of localhost (remote hosts are not affected). And the case of session management is very academic as it is unlikely that a restoring session contains remote windows. BUG: 308391 FIXED-IN: 4.11 REVIEW: 108235
2013-01-07 11:07:27 +04:00
if (clientMachine()->hostName() != ClientMachine::localhost() && !clientMachine()->isLocal())
machine_suffix = QString(" <@") + clientMachine()->hostName() + '>' + LRM;
}
QString shortcut_suffix = !shortcut().isEmpty() ? (" {" + shortcut().toString() + '}') : QString();
cap_suffix = machine_suffix + shortcut_suffix;
if ((!isSpecialWindow() || isToolbar()) && workspace()->findClient(FetchNameInternalPredicate(this))) {
int i = 2;
do {
cap_suffix = machine_suffix + " <" + QString::number(i) + '>' + LRM;
i++;
} while (workspace()->findClient(FetchNameInternalPredicate(this)));
info->setVisibleName(caption().toUtf8());
reset_name = false;
}
if ((was_suffix && cap_suffix.isEmpty()) || reset_name) {
// If it was new window, it may have old value still set, if the window is reused
info->setVisibleName("");
info->setVisibleIconName("");
} else if (!cap_suffix.isEmpty() && !cap_iconic.isEmpty())
// Keep the same suffix in iconic name if it's set
info->setVisibleIconName(QString(cap_iconic + cap_suffix).toUtf8());
if (isManaged() && decoration) {
decoration->captionChange();
}
emit captionChanged();
2011-01-30 17:34:42 +03:00
}
void Client::updateCaption()
2011-01-30 17:34:42 +03:00
{
setCaption(cap_normal, true);
}
void Client::fetchIconicName()
2011-01-30 17:34:42 +03:00
{
QString s;
2011-01-30 17:34:42 +03:00
if (info->iconName() && info->iconName()[0] != '\0')
s = QString::fromUtf8(info->iconName());
else
2011-01-30 17:34:42 +03:00
s = KWindowSystem::readNameProperty(window(), XA_WM_ICON_NAME);
if (s != cap_iconic) {
bool was_set = !cap_iconic.isEmpty();
cap_iconic = s;
2011-01-30 17:34:42 +03:00
if (!cap_suffix.isEmpty()) {
if (!cap_iconic.isEmpty()) // Keep the same suffix in iconic name if it's set
info->setVisibleIconName(QString(s + cap_suffix).toUtf8());
2011-01-30 17:34:42 +03:00
else if (was_set)
info->setVisibleIconName("");
}
}
2011-01-30 17:34:42 +03:00
}
/**
* \reimp
*/
QString Client::caption(bool full, bool stripped) const
2011-01-30 17:34:42 +03:00
{
QString cap = stripped ? cap_deco : cap_normal;
if (full)
cap += cap_suffix;
return cap;
2011-01-30 17:34:42 +03:00
}
bool Client::tabTo(Client *other, bool behind, bool activate)
{
Q_ASSERT(other && other != this);
if (tab_group && tab_group == other->tabGroup()) { // special case: move inside group
tab_group->move(this, other, behind);
return true;
}
GeometryUpdatesBlocker blocker(this);
const bool wasBlocking = signalsBlocked();
blockSignals(true); // prevent client emitting "retabbed to nowhere" cause it's about to be entabbed the next moment
untab();
blockSignals(wasBlocking);
TabGroup *newGroup = other->tabGroup() ? other->tabGroup() : new TabGroup(other);
if (!newGroup->add(this, other, behind, activate)) {
if (newGroup->count() < 2) { // adding "c" to "to" failed for whatever reason
newGroup->remove(other);
delete newGroup;
}
return false;
}
return true;
}
bool Client::untab(const QRect &toGeometry, bool clientRemoved)
2012-01-15 14:26:38 +04:00
{
TabGroup *group = tab_group;
if (group && group->remove(this)) { // remove sets the tabgroup to "0", therefore the pointer is cached
if (group->isEmpty()) {
delete group;
}
if (clientRemoved)
return true; // there's been a broadcast signal that this client is now removed - don't touch it
setClientShown(!(isMinimized() || isShade()));
bool keepSize = toGeometry.size() == size();
bool changedSize = false;
if (quickTileMode() != QuickTileNone) {
changedSize = true;
setQuickTileMode(QuickTileNone); // if we leave a quicktiled group, assume that the user wants to untile
}
if (toGeometry.isValid()) {
if (maximizeMode() != Client::MaximizeRestore) {
changedSize = true;
maximize(Client::MaximizeRestore); // explicitly calling for a geometry -> unmaximize
}
if (keepSize && changedSize) {
geom_restore = geometry(); // checkWorkspacePosition() invokes it
QPoint cpoint = Cursor::pos();
QPoint point = cpoint;
point.setX((point.x() - toGeometry.x()) * geom_restore.width() / toGeometry.width());
point.setY((point.y() - toGeometry.y()) * geom_restore.height() / toGeometry.height());
geom_restore.moveTo(cpoint-point);
} else {
geom_restore = toGeometry; // checkWorkspacePosition() invokes it
}
setGeometry(geom_restore);
checkWorkspacePosition();
}
2012-01-15 14:26:38 +04:00
return true;
}
return false;
}
void Client::setTabGroup(TabGroup *group)
{
tab_group = group;
if (group) {
unsigned long data = qHash(group); //->id();
XChangeProperty(display(), window(), atoms->kde_net_wm_tab_group, XA_CARDINAL, 32,
PropModeReplace, (unsigned char*)(&data), 1);
}
else
XDeleteProperty(display(), window(), atoms->kde_net_wm_tab_group);
emit tabGroupChanged();
}
bool Client::isCurrentTab() const
{
return !tab_group || tab_group->current() == this;
2012-01-15 14:26:38 +04:00
}
void Client::syncTabGroupFor(QString property, bool fromThisClient)
{
if (tab_group)
tab_group->sync(property.toAscii().data(), fromThisClient ? this : tab_group->current());
}
void Client::dontMoveResize()
2011-01-30 17:34:42 +03:00
{
buttonDown = false;
stopDelayedMoveResize();
2011-01-30 17:34:42 +03:00
if (moveResizeMode)
finishMoveResize(false);
}
2011-01-30 17:34:42 +03:00
void Client::setClientShown(bool shown)
{
if (deleting)
return; // Don't change shown status if this client is being deleted
if (shown != hidden)
return; // nothing to change
hidden = !shown;
if (options->isInactiveTabsSkipTaskbar())
setSkipTaskbar(hidden, false); // TODO: Causes reshuffle of the taskbar
if (shown) {
map();
takeFocus();
autoRaise();
FocusChain::self()->update(this, FocusChain::MakeFirst);
} else {
unmap();
// Don't move tabs to the end of the list when another tab get's activated
if (isCurrentTab())
FocusChain::self()->update(this, FocusChain::MakeLast);
2011-01-30 17:34:42 +03:00
addWorkspaceRepaint(visibleRect());
}
2011-01-30 17:34:42 +03:00
}
void Client::getWMHints()
2011-01-30 17:34:42 +03:00
{
XWMHints* hints = XGetWMHints(display(), window());
input = true;
window_group = None;
urgency = false;
2011-01-30 17:34:42 +03:00
if (hints) {
if (hints->flags & InputHint)
input = hints->input;
2011-01-30 17:34:42 +03:00
if (hints->flags & WindowGroupHint)
window_group = hints->window_group;
2011-01-30 17:34:42 +03:00
urgency = !!(hints->flags & UrgencyHint); // Need boolean, it's a uint bitfield
XFree((char*)hints);
}
checkGroup();
updateUrgency();
updateAllowedActions(); // Group affects isMinimizable()
2011-01-30 17:34:42 +03:00
}
void Client::getMotifHints()
2011-01-30 17:34:42 +03:00
{
bool mgot_noborder, mnoborder, mresize, mmove, mminimize, mmaximize, mclose;
2011-01-30 17:34:42 +03:00
Motif::readFlags(client, mgot_noborder, mnoborder, mresize, mmove, mminimize, mmaximize, mclose);
if (mgot_noborder && motif_noborder != mnoborder) {
motif_noborder = mnoborder;
// If we just got a hint telling us to hide decorations, we do so.
2011-01-30 17:34:42 +03:00
if (motif_noborder)
noborder = rules()->checkNoBorder(true);
// If the Motif hint is now telling us to show decorations, we only do so if the app didn't
// instruct us to hide decorations in some other way, though.
else if (!app_noborder)
noborder = rules()->checkNoBorder(false);
2011-01-30 17:34:42 +03:00
}
if (!hasNETSupport()) {
// NETWM apps should set type and size constraints
motif_may_resize = mresize; // This should be set using minsize==maxsize, but oh well
motif_may_move = mmove;
2011-01-30 17:34:42 +03:00
} else
motif_may_resize = motif_may_move = true;
// mminimize; - Ignore, bogus - E.g. shading or sending to another desktop is "minimizing" too
// mmaximize; - Ignore, bogus - Maximizing is basically just resizing
const bool closabilityChanged = motif_may_close != mclose;
motif_may_close = mclose; // Motif apps like to crash when they set this hint and WM closes them anyway
2011-01-30 17:34:42 +03:00
if (isManaged())
updateDecoration(true); // Check if noborder state has changed
if (decoration && closabilityChanged)
decoration->reset(KDecoration::SettingButtons);
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::readIcons(Window win, QPixmap* icon, QPixmap* miniicon, QPixmap* bigicon, QPixmap* hugeicon)
{
// Get the icons, allow scaling
2011-01-30 17:34:42 +03:00
if (icon != NULL)
*icon = KWindowSystem::icon(win, 32, 32, true, KWindowSystem::NETWM | KWindowSystem::WMHints);
if (miniicon != NULL) {
if (icon == NULL || !icon->isNull())
*miniicon = KWindowSystem::icon(win, 16, 16, true, KWindowSystem::NETWM | KWindowSystem::WMHints);
else
*miniicon = QPixmap();
2011-01-30 17:34:42 +03:00
}
if (bigicon != NULL) {
if (icon == NULL || !icon->isNull())
*bigicon = KWindowSystem::icon(win, 64, 64, false, KWindowSystem::NETWM | KWindowSystem::WMHints);
else
*bigicon = QPixmap();
2011-01-30 17:34:42 +03:00
}
if (hugeicon != NULL) {
if (icon == NULL || !icon->isNull())
*hugeicon = KWindowSystem::icon(win, 128, 128, false, KWindowSystem::NETWM | KWindowSystem::WMHints);
else
*hugeicon = QPixmap();
}
2011-01-30 17:34:42 +03:00
}
void Client::getIcons()
2011-01-30 17:34:42 +03:00
{
// First read icons from the window itself
2011-01-30 17:34:42 +03:00
readIcons(window(), &icon_pix, &miniicon_pix, &bigicon_pix, &hugeicon_pix);
if (icon_pix.isNull()) {
// Then try window group
icon_pix = group()->icon();
miniicon_pix = group()->miniIcon();
bigicon_pix = group()->bigIcon();
hugeicon_pix = group()->hugeIcon();
2011-01-30 17:34:42 +03:00
}
if (icon_pix.isNull() && isTransient()) {
// Then mainclients
ClientList mainclients = mainClients();
2011-01-30 17:34:42 +03:00
for (ClientList::ConstIterator it = mainclients.constBegin();
it != mainclients.constEnd() && icon_pix.isNull();
++it) {
icon_pix = (*it)->icon();
miniicon_pix = (*it)->miniIcon();
bigicon_pix = (*it)->bigIcon();
hugeicon_pix = (*it)->hugeIcon();
}
}
2011-01-30 17:34:42 +03:00
if (icon_pix.isNull()) {
// And if nothing else, load icon from classhint or xapp icon
icon_pix = KWindowSystem::icon(window(), 32, 32, true, KWindowSystem::ClassHint | KWindowSystem::XApp);
miniicon_pix = KWindowSystem::icon(window(), 16, 16, true, KWindowSystem::ClassHint | KWindowSystem::XApp);
bigicon_pix = KWindowSystem::icon(window(), 64, 64, false, KWindowSystem::ClassHint | KWindowSystem::XApp);
hugeicon_pix = KWindowSystem::icon(window(), 128, 128, false, KWindowSystem::ClassHint | KWindowSystem::XApp);
}
if (isManaged() && decoration != NULL)
decoration->iconChange();
emit iconChanged();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
QPixmap Client::icon(const QSize& size) const
{
const int iconSize = qMin(size.width(), size.height());
if (iconSize <= 16)
return miniIcon();
2011-01-30 17:34:42 +03:00
else if (iconSize <= 32)
return icon();
2011-01-30 17:34:42 +03:00
if (iconSize <= 64)
return bigIcon();
else
return hugeIcon();
2011-01-30 17:34:42 +03:00
}
void Client::getWindowProtocols()
2011-01-30 17:34:42 +03:00
{
Atom* p;
2011-01-30 17:34:42 +03:00
int i, n;
Pdeletewindow = 0;
Ptakefocus = 0;
Ptakeactivity = 0;
Pcontexthelp = 0;
Pping = 0;
2011-01-30 17:34:42 +03:00
if (XGetWMProtocols(display(), window(), &p, &n)) {
for (i = 0; i < n; ++i) {
if (p[i] == atoms->wm_delete_window)
Pdeletewindow = 1;
2011-01-30 17:34:42 +03:00
else if (p[i] == atoms->wm_take_focus)
Ptakefocus = 1;
2011-01-30 17:34:42 +03:00
else if (p[i] == atoms->net_wm_take_activity)
Ptakeactivity = 1;
2011-01-30 17:34:42 +03:00
else if (p[i] == atoms->net_wm_context_help)
Pcontexthelp = 1;
2011-01-30 17:34:42 +03:00
else if (p[i] == atoms->net_wm_ping)
Pping = 1;
}
2011-01-30 17:34:42 +03:00
if (n > 0)
XFree(p);
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::getSyncCounter()
{
#ifdef HAVE_XSYNC
if (!Xcb::Extensions::self()->isSyncAvailable())
return;
Atom retType;
unsigned long nItemRet;
unsigned long byteRet;
int formatRet;
unsigned char* propRet;
2011-01-30 17:34:42 +03:00
int ret = XGetWindowProperty(display(), window(), atoms->net_wm_sync_request_counter,
0, 1, false, XA_CARDINAL, &retType, &formatRet, &nItemRet, &byteRet, &propRet);
2011-01-30 17:34:42 +03:00
if (ret == Success && formatRet == 32) {
syncRequest.counter = *(long*)(propRet);
XSyncIntToValue(&syncRequest.value, 0);
XSyncValue zero;
2011-01-30 17:34:42 +03:00
XSyncIntToValue(&zero, 0);
XSyncSetCounter(display(), syncRequest.counter, zero);
if (syncRequest.alarm == None) {
XSyncAlarmAttributes attrs;
attrs.trigger.counter = syncRequest.counter;
attrs.trigger.value_type = XSyncRelative;
attrs.trigger.test_type = XSyncPositiveTransition;
2011-01-30 17:34:42 +03:00
XSyncIntToValue(&attrs.trigger.wait_value, 1);
XSyncIntToValue(&attrs.delta, 1);
syncRequest.alarm = XSyncCreateAlarm(display(),
2011-01-30 17:34:42 +03:00
XSyncCACounter | XSyncCAValueType | XSyncCATestType | XSyncCADelta | XSyncCAValue,
&attrs);
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
if (ret == Success)
XFree(propRet);
#endif
}
/**
* Send the client a _NET_SYNC_REQUEST
*/
void Client::sendSyncRequest()
{
#ifdef HAVE_XSYNC
if (syncRequest.counter == None || syncRequest.isPending)
return; // do NOT, NEVER send a sync request when there's one on the stack. the clients will just stop respoding. FOREVER! ...
if (!syncRequest.failsafeTimeout) {
syncRequest.failsafeTimeout = new QTimer(this);
connect(syncRequest.failsafeTimeout, SIGNAL(timeout()), SLOT(removeSyncSupport()));
syncRequest.failsafeTimeout->setSingleShot(true);
}
// if there's no response within 10 seconds, sth. went wrong and we remove XSYNC support from this client.
// see events.cpp Client::syncEvent()
syncRequest.failsafeTimeout->start(ready_for_painting ? 10000 : 1000);
// We increment before the notify so that after the notify
// syncCounterSerial will equal the value we are expecting
// in the acknowledgement
int overflow;
XSyncValue one;
2011-01-30 17:34:42 +03:00
XSyncIntToValue(&one, 1);
#undef XSyncValueAdd // It causes a warning :-/
XSyncValueAdd(&syncRequest.value, syncRequest.value, one, &overflow);
// Send the message to client
XEvent ev;
ev.xclient.type = ClientMessage;
ev.xclient.window = window();
ev.xclient.format = 32;
ev.xclient.message_type = atoms->wm_protocols;
ev.xclient.data.l[0] = atoms->net_wm_sync_request;
ev.xclient.data.l[1] = xTime();
ev.xclient.data.l[2] = XSyncValueLow32(syncRequest.value);
ev.xclient.data.l[3] = XSyncValueHigh32(syncRequest.value);
ev.xclient.data.l[4] = 0;
syncRequest.isPending = true;
2011-01-30 17:34:42 +03:00
XSendEvent(display(), window(), False, NoEventMask, &ev);
XSync(display(), false);
#endif
}
void Client::removeSyncSupport()
{
if (!ready_for_painting) {
setReadyForPainting();
return;
}
#ifdef HAVE_XSYNC
syncRequest.isPending = false;
syncRequest.counter = syncRequest.alarm = None;
delete syncRequest.timeout; delete syncRequest.failsafeTimeout;
syncRequest.timeout = syncRequest.failsafeTimeout = NULL;
#endif
}
bool Client::wantsTabFocus() const
2011-01-30 17:34:42 +03:00
{
return (isNormalWindow() || isDialog()) && wantsInput();
}
bool Client::wantsInput() const
2011-01-30 17:34:42 +03:00
{
return rules()->checkAcceptFocus(input || Ptakefocus);
}
bool Client::isSpecialWindow() const
2011-01-30 17:34:42 +03:00
{
// TODO
return isDesktop() || isDock() || isSplash() || isToolbar();
2011-01-30 17:34:42 +03:00
}
/**
* Sets an appropriate cursor shape for the logical mouse position \a m
*/
void Client::updateCursor()
2011-01-30 17:34:42 +03:00
{
Position m = mode;
2011-01-30 17:34:42 +03:00
if (!isResizable() || isShade())
m = PositionCenter;
Qt::CursorShape c = Qt::ArrowCursor;
2011-01-30 17:34:42 +03:00
switch(m) {
case PositionTopLeft:
case PositionBottomRight:
c = Qt::SizeFDiagCursor;
break;
case PositionBottomLeft:
case PositionTopRight:
c = Qt::SizeBDiagCursor;
break;
case PositionTop:
case PositionBottom:
c = Qt::SizeVerCursor;
break;
case PositionLeft:
case PositionRight:
c = Qt::SizeHorCursor;
break;
default:
if (moveResizeMode)
c = Qt::SizeAllCursor;
else
c = Qt::ArrowCursor;
break;
}
if (c == m_cursor)
return;
m_cursor = c;
2011-01-30 17:34:42 +03:00
if (decoration != NULL)
decoration->widget()->setCursor(m_cursor);
xcb_cursor_t nativeCursor = Cursor::x11Cursor(m_cursor);
Xcb::defineCursor(frameId(), nativeCursor);
if (m_decoInputExtent.isValid())
m_decoInputExtent.defineCursor(nativeCursor);
if (moveResizeMode) {
// changing window attributes doesn't change cursor if there's pointer grab active
xcb_change_active_pointer_grab(connection(), nativeCursor, xTime(),
XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE | XCB_EVENT_MASK_POINTER_MOTION | XCB_EVENT_MASK_ENTER_WINDOW | XCB_EVENT_MASK_LEAVE_WINDOW);
}
2011-01-30 17:34:42 +03:00
}
void Client::updateCompositeBlocking(bool readProperty)
{
if (readProperty) {
const unsigned long properties[2] = {0, NET::WM2BlockCompositing};
NETWinInfo2 i(display(), window(), rootWindow(), properties, 2);
setBlockingCompositing(i.isBlockingCompositing());
}
else
setBlockingCompositing(blocks_compositing);
}
void Client::setBlockingCompositing(bool block)
{
const bool usedToBlock = blocks_compositing;
blocks_compositing = rules()->checkBlockCompositing(block);
if (usedToBlock != blocks_compositing) {
emit blockingCompositingChanged(blocks_compositing ? this : 0);
}
}
2011-01-30 17:34:42 +03:00
Client::Position Client::mousePosition(const QPoint& p) const
{
if (decoration != NULL)
return decoration->mousePosition(p);
return PositionCenter;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::updateAllowedActions(bool force)
{
if (!isManaged() && !force)
return;
unsigned long old_allowed_actions = allowed_actions;
allowed_actions = 0;
2011-01-30 17:34:42 +03:00
if (isMovable())
allowed_actions |= NET::ActionMove;
2011-01-30 17:34:42 +03:00
if (isResizable())
allowed_actions |= NET::ActionResize;
2011-01-30 17:34:42 +03:00
if (isMinimizable())
allowed_actions |= NET::ActionMinimize;
2011-01-30 17:34:42 +03:00
if (isShadeable())
allowed_actions |= NET::ActionShade;
// Sticky state not supported
2011-01-30 17:34:42 +03:00
if (isMaximizable())
allowed_actions |= NET::ActionMax;
2011-01-30 17:34:42 +03:00
if (userCanSetFullScreen())
allowed_actions |= NET::ActionFullScreen;
allowed_actions |= NET::ActionChangeDesktop; // Always (Pagers shouldn't show Docks etc.)
2011-01-30 17:34:42 +03:00
if (isCloseable())
allowed_actions |= NET::ActionClose;
2011-01-30 17:34:42 +03:00
if (old_allowed_actions == allowed_actions)
return;
// TODO: This could be delayed and compressed - It's only for pagers etc. anyway
2011-01-30 17:34:42 +03:00
info->setAllowedActions(allowed_actions);
// ONLY if relevant features have changed (and the window didn't just get/loose moveresize for maximization state changes)
const unsigned long relevant = ~(NET::ActionMove|NET::ActionResize);
if (decoration && (allowed_actions & relevant) != (old_allowed_actions & relevant))
decoration->reset(KDecoration::SettingButtons);
2011-01-30 17:34:42 +03:00
}
void Client::autoRaise()
2011-01-30 17:34:42 +03:00
{
workspace()->raiseClient(this);
cancelAutoRaise();
2011-01-30 17:34:42 +03:00
}
void Client::cancelAutoRaise()
2011-01-30 17:34:42 +03:00
{
delete autoRaiseTimer;
autoRaiseTimer = 0;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Client::debug(QDebug& stream) const
{
print<QDebug>(stream);
2011-01-30 17:34:42 +03:00
}
QPixmap* kwin_get_menu_pix_hack()
2011-01-30 17:34:42 +03:00
{
static QPixmap p;
2011-01-30 17:34:42 +03:00
if (p.isNull())
p = SmallIcon("bx2");
return &p;
2011-01-30 17:34:42 +03:00
}
void Client::checkActivities()
2011-01-30 17:34:42 +03:00
{
#ifdef KWIN_BUILD_ACTIVITIES
QStringList newActivitiesList;
QByteArray prop = getStringProperty(window(), atoms->activities);
activitiesDefined = !prop.isEmpty();
if (prop == Activities::nullUuid()) {
//copied from setOnAllActivities to avoid a redundant XChangeProperty.
if (!activityList.isEmpty()) {
activityList.clear();
2011-01-30 17:34:42 +03:00
updateActivities(true);
}
return;
}
if (prop.isEmpty()) {
//note: this makes it *act* like it's on all activities but doesn't set the property to 'ALL'
if (!activityList.isEmpty()) {
activityList.clear();
2011-01-30 17:34:42 +03:00
updateActivities(true);
}
return;
}
newActivitiesList = QString(prop).split(',');
if (newActivitiesList == activityList)
return; //expected change, it's ok.
//otherwise, somebody else changed it. we need to validate before reacting
QStringList allActivities = Activities::self()->all();
2011-01-30 17:34:42 +03:00
if (allActivities.isEmpty()) {
kDebug() << "no activities!?!?";
//don't touch anything, there's probably something bad going on and we don't wanna make it worse
return;
2011-01-30 17:34:42 +03:00
}
for (int i = 0; i < newActivitiesList.size(); ++i) {
if (! allActivities.contains(newActivitiesList.at(i))) {
kDebug() << "invalid:" << newActivitiesList.at(i);
2011-01-30 17:34:42 +03:00
newActivitiesList.removeAt(i--);
}
}
2011-01-30 17:34:42 +03:00
setOnActivities(newActivitiesList);
#endif
2011-01-30 17:34:42 +03:00
}
void Client::setSessionInteract(bool needed)
{
needsSessionInteract = needed;
}
QRect Client::decorationRect() const
{
if (decoration && decoration->widget()) {
return decoration->widget()->rect().translated(-padding_left, -padding_top);
} else {
return QRect(0, 0, width(), height());
}
}
KDecorationDefines::Position Client::titlebarPosition()
{
Position titlePos = PositionCenter; // PositionTop is returned by the default implementation
// this will hint errors in the metaobject usage ;-)
if (decoration)
QMetaObject::invokeMethod(decoration, "titlebarPosition", Qt::DirectConnection,
Q_RETURN_ARG(KDecorationDefines::Position, titlePos));
return titlePos;
}
void Client::updateFirstInTabBox()
{
// TODO: move into KWindowInfo
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = 0;
status = XGetWindowProperty(display(), window(), atoms->kde_first_in_window_list, 0, 1, false, atoms->kde_first_in_window_list, &type, &format, &nitems, &extra, &data);
if (status == Success && format == 32 && nitems == 1) {
setFirstInTabBox(true);
} else {
setFirstInTabBox(false);
}
if (data)
XFree(data);
}
bool Client::isClient() const
{
return true;
}
#ifdef KWIN_BUILD_KAPPMENU
void Client::setAppMenuAvailable()
{
m_menuAvailable = true;
emit appMenuAvailable();
}
void Client::setAppMenuUnavailable()
{
m_menuAvailable = false;
emit appMenuUnavailable();
}
void Client::showApplicationMenu(const QPoint &p)
{
ApplicationMenu::self()->showApplicationMenu(p, window());
}
#endif
NET::WindowType Client::windowType(bool direct, int supportedTypes) const
{
// TODO: does it make sense to cache the returned window type for SUPPORTED_MANAGED_WINDOW_TYPES_MASK?
if (supportedTypes == 0) {
supportedTypes = SUPPORTED_MANAGED_WINDOW_TYPES_MASK;
}
NET::WindowType wt = info->windowType(supportedTypes);
if (direct) {
return wt;
}
NET::WindowType wt2 = client_rules.checkType(wt);
if (wt != wt2) {
wt = wt2;
info->setWindowType(wt); // force hint change
}
// hacks here
if (wt == NET::Unknown) // this is more or less suggested in NETWM spec
wt = isTransient() ? NET::Dialog : NET::Normal;
return wt;
}
bool Client::decorationHasAlpha() const
{
if (!decoration || !decorationPlugin()->hasAlpha()) {
// either no decoration or decoration has alpha disabled
return false;
}
if (decorationPlugin()->supportsAnnounceAlpha()) {
return decoration->isAlphaEnabled();
} else {
// decoration has alpha enabled and does not support alpha announcement
return true;
}
}
} // namespace
#include "client.moc"