KWin 5 with ICC color correction effect
 
 
 
 
 
 
Go to file
Martin Gräßlin 5cd223f051 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-21 16:00:49 +01:00
clients SVN_SILENT made messages (.desktop file) 2013-01-17 08:15:16 +01:00
data SVN_SILENT made messages (.desktop file) 2013-01-16 12:37:47 +01:00
effects Introduce property "visible" on EffectWindow 2013-01-21 15:56:58 +01:00
kcmkwin Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
killer Escape HTML tags in window caption in Aurorae and Killer 2012-05-19 11:56:35 +02:00
libkdecorations Support for new decoration border sizes BorderNoSides and BorderNone 2013-01-15 15:07:22 +01:00
libkwineffects Introduce property "visible" on EffectWindow 2013-01-21 15:56:58 +01:00
opengltest Add support for OpenGL in VirtualBox 2012-10-25 11:27:28 +02:00
scripting SVN_SILENT made messages (.desktop file) 2013-01-17 08:15:16 +01:00
scripts SVN_SILENT made messages (.desktop file) 2013-01-17 08:15:16 +01:00
tabbox SVN_SILENT made messages (.desktop file) 2013-01-17 08:15:16 +01:00
tests Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
tools Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
CMakeLists.txt Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
COMPLIANCE Removing TopMenu 2011-06-24 12:27:56 +02:00
CONFIGURING Merging from old trunk: 2007-04-29 21:41:03 +00:00
ExtraDesktop.sh Add ExtraDestkop.sh files 2011-07-12 16:46:09 +01:00
HACKING HACKING moves to community.kde.org 2011-02-19 17:17:03 +01:00
Mainpage.dox Apidocs mainpage work. Just got Plasma and Solid to do here. 2007-07-24 18:30:36 +00:00
Messages.sh Improve message extraction 2011-02-20 16:02:33 +01:00
README Add a link to the techbase KWin page, which should be where all other docs and links are referenced. 2008-11-05 19:57:33 +00:00
activation.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
atoms.cpp Merge branch 'kwin/tabbox-window-strip' into integration 2011-12-21 07:45:52 +01:00
atoms.h Merge branch 'kwin/tabbox-window-strip' into integration 2011-12-21 07:45:52 +01:00
bridge.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
bridge.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
client.cpp Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
client.h Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
client_machine.cpp Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
client_machine.h Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
composite.cpp Merge branch 'KDE/4.10' 2013-01-14 15:43:01 +01:00
composite.h Remove asserts from Compositor and wrap Toplevel::compositing() around Workspace::compositing() 2013-01-14 15:41:08 +01:00
compositingprefs.cpp Use KGlobal::config() instead of specifying kwinrc 2012-04-29 21:55:45 +02:00
compositingprefs.h Remove GL context creation from CompositingPrefs 2012-04-29 21:46:43 +02:00
config-kwin.h.cmake Adding version information to supportInformation 2013-01-11 08:49:25 +01:00
dbusinterface.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
dbusinterface.h fix dbus service registration/invocation 2013-01-02 19:05:11 +01:00
deleted.cpp Move decoration pixmap handling from Client to PaintRedirector 2012-10-12 07:45:31 +02:00
deleted.h Move decoration pixmap handling from Client to PaintRedirector 2012-10-12 07:45:31 +02:00
effects.cpp Port Input Window handling for Effects to XCB 2013-01-07 10:00:43 +01:00
effects.h Port Input Window handling for Effects to XCB 2013-01-07 10:00:43 +01:00
eglonxbackend.cpp kwin: Rename flushBuffer() to present() 2012-10-29 21:31:17 +01:00
eglonxbackend.h kwin: Rename flushBuffer() to present() 2012-10-29 21:31:17 +01:00
events.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
geometry.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
geometrytip.cpp KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
geometrytip.h KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
glxbackend.cpp Fix buffer swap prototypes 2012-11-18 12:50:31 +01:00
glxbackend.h Fix buffer swap prototypes 2012-11-18 12:50:31 +01:00
group.cpp Adding transient (for) properties 2011-12-31 08:58:41 +01:00
group.h Drop an unimplemented method in Group 2011-08-31 07:58:58 +02:00
killwindow.cpp KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
killwindow.h KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
kwin.kcfg Remove all code for non-composited animations - they don't work anyway. 2007-11-20 16:07:20 +00:00
kwin.notifyrc SVN_SILENT made messages (.desktop file) 2013-01-17 08:15:16 +01:00
kwinbindings.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
lanczos-fragment.glsl Rewrite the ARB lanczos shader to work with the Radeon R300 limitations. 2011-01-30 15:11:22 +01:00
lanczosfilter.cpp Remove forceAlpha uniform, which is no longer needed 2012-11-13 22:23:18 +02:00
lanczosfilter.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
layers.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
main.cpp Add ability to disable multihead support 2013-01-11 09:37:19 +01:00
main.h KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
manage.cpp Fix warnings 2013-01-08 11:08:46 +01:00
notifications.cpp Remove Tiling support from KWin 2012-07-14 11:18:06 +02:00
notifications.h Remove Tiling support from KWin 2012-07-14 11:18:06 +02:00
nvidiahack.cpp KWin uses kdelibs coding style. 2011-01-31 20:07:03 +01:00
options.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
options.h Abort color correction initialization and disable it in case of errors 2013-01-13 19:10:54 +02:00
org.kde.KWin.xml Deprecate KDecoration's AbilityColor 2012-09-07 07:33:39 +02:00
org.kde.kwin.Compositing.xml Introduce dedicated suspend and resume methods on Compositing interface 2012-09-06 09:59:20 +02:00
org.kde.kwin.Effects.xml Splitting up of KWin's global D-Bus interface 2012-09-06 09:58:12 +02:00
outline.cpp kwin: fix Outline::hide() bug 2012-01-31 14:34:04 +01:00
outline.h kwin: fix Outline::hide() bug 2012-01-31 14:34:04 +01:00
overlaywindow.cpp Port OverlayWindow from XLib to XCB 2012-12-20 16:30:39 +01:00
overlaywindow.h Port OverlayWindow from XLib to XCB 2012-12-20 16:30:39 +01:00
ox16-app-kwin.png Optimize PNG files again. 2008-01-02 00:10:07 +00:00
ox32-app-kwin.png Optimize PNG files again. 2008-01-02 00:10:07 +00:00
ox48-app-kwin.png Optimize PNG files again. 2008-01-02 00:10:07 +00:00
oxsc-app-kwin.svgz remove crystal, remove with mono icons until oxygen icons get made 2007-11-20 16:47:36 +00:00
paintredirector.cpp Move decoration pixmap handling from Client to PaintRedirector 2012-10-12 07:45:31 +02:00
paintredirector.h Move decoration pixmap handling from Client to PaintRedirector 2012-10-12 07:45:31 +02:00
placement.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
placement.h Move cascadeDesktop and unclutterDesktop to Placement 2012-12-20 07:19:53 +01:00
plugins.cpp Remove the fallback to Platik in case defaultDepth is < 8 2012-10-25 11:19:26 +02:00
plugins.h KWin does not require a decoration plugin any more 2011-04-28 16:05:23 +02:00
resources.qrc Lanczos filter available in GLES. 2011-01-30 14:12:04 +01:00
rules.cpp Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
rules.h Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
scene-color-fragment.glsl GLShader appends the ES specific commands to the shaders 2011-01-30 14:12:01 +01:00
scene-color-vertex.glsl Fix passing matrixes to the shaders 2011-03-06 09:13:31 +01:00
scene-fragment.glsl Remove forceAlpha uniform, which is no longer needed 2012-11-13 22:23:18 +02:00
scene-generic-vertex.glsl Remove textureWidth/textureHeight from all Shaders 2011-06-19 20:54:13 +02:00
scene-vertex.glsl Remove textureWidth/textureHeight from all Shaders 2011-06-19 20:54:13 +02:00
scene.cpp Remove outdated and not very useful comment sections 2012-12-30 09:52:42 +01:00
scene.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
scene_opengl.cpp Fix premultiplied alpha issue with color correction 2013-01-13 19:10:54 +02:00
scene_opengl.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
scene_xrender.cpp support brightness > 1 for XRender backend 2013-01-02 18:43:14 +01:00
scene_xrender.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
screenedge.cpp Move ScreenEdge configuration from Workspace to ScreenEdge 2013-01-07 09:47:59 +01:00
screenedge.h Move ScreenEdge configuration from Workspace to ScreenEdge 2013-01-07 09:47:59 +01:00
shadow.cpp Introduce dedicated OpenGL1 and OpenGL2 compositing types 2012-09-29 15:33:57 +02:00
shadow.h straighten xrender shadow implementation 2011-11-27 15:03:41 +01:00
sm.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
sm.h fix tabbing 2012-02-11 16:30:22 +01:00
tabgroup.cpp correctly align tabbing shade mode, including hover 2012-09-27 22:15:23 +02:00
tabgroup.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
thumbnailitem.cpp Support specifying the parent window on which the thumbnail is shown 2012-03-25 13:04:18 +02:00
thumbnailitem.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
toplevel.cpp Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
toplevel.h Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
unmanaged.cpp Merge branch 'KDE/4.9' 2012-09-19 20:21:18 +02:00
unmanaged.h Mark most ctors as explicit as reported by Krazy2 checker 2013-01-02 18:35:46 +01:00
useractions.cpp Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
useractions.h Allow Scripts to add menus to the UserActionsMenu 2012-09-07 07:32:00 +02:00
utils.cpp Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
utils.h Improved resolving whether a window is on local machine 2013-01-21 16:00:49 +01:00
virtualdesktops.cpp set a default void global shortcut 2013-01-08 20:50:06 +01:00
virtualdesktops.h Move handling of Virtual Desktops into a VirtualDesktopManager 2013-01-07 09:47:51 +01:00
workspace.cpp Merge branch 'KDE/4.10' 2013-01-14 15:43:01 +01:00
workspace.h Merge branch 'KDE/4.10' 2013-01-14 15:43:01 +01:00
xcbutils.h Introduce helper classes to perform common xcb requests 2013-01-07 10:00:43 +01:00

README

- A collection of various documents and links related to KWin is at http://techbase.kde.org/Projects/KWin .


- The mailing list for KWin is kwin@kde.org (https://mail.kde.org/mailman/listinfo/kwin).

- If you want to develop KWin, see file HACKING.

- If you want to check KWin's compliance with specifications, see file COMPLIANCE.

- File CONFIGURATION includes some details on configuring KWin.

- Below is some info for application developers about application interaction
  with the window manager, but it'd need some cleanup.








 This README is meant as an explanation of various window manager related
mechanisms that application developers need to be aware of. As some of these
concepts may be difficult to understand for people not having the required
background knowledge (since sometimes it's difficult even for people who
do have the knowledge), the mechanisms are first briefly explained, and
then an example of fixing the various problems is given.

 For comments, questions, suggestions and whatever use the kwin@kde.org
mailing list.


Table of contents:
==================

- Window relations
    - how to make the window manager know which windows belong together
- Focus stealing prevention
    - how to solve cases where focus stealing prevention doesn't work
      properly automatically



Window relations:
=================

(For now, this explanation of window relations is mainly meant for
focus stealing prevention. To be extended later.)

 All windows created by an application should be organized in a tree
with the root being the application's main window. Note that this is about
toplevel windows, not widgets inside the windows. For example, if you
have KWrite running, with a torn-off toolbar (i.e. a standalone toolbar),
a file save dialog open, and the file save dialog showing a dialog
for creating a directory, the window hiearchy should look like this:


             KWrite mainwindow
              /             \
             /               \
      file save dialog      torn-off toolbar
            \
             \
          create directory dialog

 Each subwindow (i.e. all except for the KWrite mainwindow) points to its
main window (which in turn may have another main window, as in the case
of the file save dialog). When the window manager knows these relations,
it can better arrange the windows (keeping subwindows above their
main windows, preventing activation of a main window of a modal dialog,
and similar). Failing to provide this information to the window manager
may have various results, for example having dialogs positioned below
the main window,

The window property used by subwindows to point to their mainwindows is
called WM_TRANSIENT_FOR. It can be seen by running
'xprop | grep WM_TRANSIENT_FOR' and clicking on a window. If the property
is not present, the window does not (claim to) have any mainwindow.
If the property is present, it's value is the window id of its main window;
window id of any window can be found out by running 'xwininfo'. A window
having WM_TRANSIENT_FOR poiting to another window is said to be transient
for that window.

 In some cases, the WM_TRANSIENT_FOR property may not point to any other
existing window, having value of 0, or pointing to the screen number
('xwininfo -root'). These special values mean that the window is transient
for all other windows in its window group. This should be used only
in rare cases, everytime a specific main window is known, WM_TRANSIENT_FOR
should be pointing to it instead of using one of these special values.
(The explanation why is beyond the scope of this document - just accept it
as a fact.)

 With Qt, the WM_TRANSIENT_FOR property is set by Qt automatically, based
on the toplevel widget's parent. If the toplevel widget is of a normal
type (i.e. not a dialog, toolbar, etc.), Qt doesn't set WM_TRANSIENT_FOR
on it. For special widgets, such as dialogs, WM_TRANSIENT_FOR is set
to point to the widget's parent, if it has a specific parent, otherwise
WM_TRANSIENT_FOR points to the root window.

 As already said above, WM_TRANSIENT_FOR poiting to the root window should
be usually avoided, so everytime the widget's main widget is known, the widget
should get it passed as a parent in its constructor.
(TODO KDialog etc. classes should not have a default argument for the parent
argument, and comments like 'just pass 0 as the parent' should go.)



Focus stealing prevention:
==========================

 Since KDE3.2 KWin has a feature called focus stealing prevention. As the name
suggests, it prevents unexpected changes of focus. With older versions of KWin,
if any application opened a new dialog, it became active, and
if the application's main window was on another virtual desktop, also
the virtual desktop was changed. This was annoying, and also sometimes led
to dialogs mistakenly being closed because they received keyboard input that
was meant for the previously active window.

 The basic principle of focus stealing prevention is that the window with most
recent user activity wins. Any window of an application will become active
when being shown only if this application was the most recently used one.
KWin itself, and some of the related kdecore classes should take care
of the common cases, so usually there's no need for any special handling
in applications. Qt/KDE applications, that is. Applications using other
toolkits should in most cases work fine too. If they don't support
the window property _NET_WM_USER_TIME, the window manager may fail to detect
the user timestamp properly, resulting either in other windows becoming active
while the user works with this application, or this application may sometimes
steal focus (this second case should be very rare though).

 There are also cases where KDE applications needs special handling. The two
most common cases are when windows relations are not setup properly to make
KWin realize that they belong to the same application, and when the user
activity is not represented by manipulating with the application windows
themselves.

 Also note that focus stealing prevention implemented in the window manager
can only help with focus stealing between different applications.
If an application itself suddenly pops up a dialog, KWin cannot do anything about
it, and its the application's job to handle this case.


Window relations:
-----------------

 The common case here is when a dialog is shown for an application, but this
dialog is not provided by the application itself, but by some other process.
For example, dialogs with warnings about accepted cookies are provided
by KCookieJar, instead of being shown by Konqueror. In the normal case,
from KWin's point of view the cookie dialog would be an attempt of another
application to show a dialog, and KWin wouldn't allow activation of this
window.

 The solution is to tell the window manager about the relation between
the Konqueror main window and the cookie dialog, by making the dialog
point to the mainwindow. Note that this is not special to focus stealing
prevention, subwindows such as dialogs, toolbars and similar should always
point to their mainwindow. See the section on window relations for full
description.

 The WM_TRANSIENT_FOR property that's set on dialogs to point to their
mainwindow should in the cookie dialog case point to the Konqueror window
for which it has been shown. This is solved in kcookiejar by including
the window id in the DCOP call. When the cookie dialog is shown, its
WM_TRANSIENT_FOR property is manually set using the XSetTransientForHint()
call (see kdelibs/kioslave/http/kcookiejar/kcookiewin.cpp). The arguments
to XSetTransientForHint() call are the X display (i.e. QX11Info::display()),
the window id on which the WM_TRANSIENT_FOR property is to be set
(i.e. use QWidget::winId()), and the window id of the mainwindow.


  Simple short HOWTO:
  
 To put it simply: Let's say you have a daemon application that has
DCOP call "showDialog( QString text )", and when this is called, it shows
a dialog with the given text. This won't work properly with focus stealing
prevention. The DCOP call should be changed to
"showDialog( QString text, long id )". The caller should pass something like
myMainWindow->winId() as the second argument. In the daemon, before
the dialog is shown, a call to XSetTransientHint() should be added:

 XSetTransientForHint( QX11Info::display(), dialog->winId(), id_of_mainwindow );
 
 That's it.

Non-standard user activity:
---------------------------

 The most common case in KDE will be DCOP calls. For example, KDesktop's DCOP
call "KDesktopIface popupExecuteCommand". Executing this DCOP call e.g.
from Konsole as 'dcop kdesktop KDesktopIface popupExecuteCommand" will lead
to showing the minicli, but the last user activity timestamp gained from events
sent by X server will be older than user activity timestamp of Konsole, and
would normally result in minicli not being active. Therefore, before showing
the minicli, kdesktop needs to call KApplication::updateUserTimestamp().

 However, this shouldn't be done with all DCOP calls. If a DCOP call is not
a result of direct user action, calling KApplication::updateUserTimestamp()
would lead to focus stealing. For example, let's assume for a moment
that KMail would use this DCOP call in case it detects the modem is not
connected, allowing to you to start KPPP or whatever tool you use. If KMail
would be configured to check mail every 10 minutes, this would lead to minicli
possibly suddenly showing up at every check. Basically, doing the above change
to kdesktop's minicli means that the popupExecuteCommand() DCOP call is only
for user scripting. (TODO write about focus transferring?)

 Simply said, KApplication::updateUserTimestamp() should be called only
as a result of user action. Unfortunately, I'm not aware of any universal
way how to handle this, so every case will have to be considered separately.