diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2014-07-21 21:25:39 +0200 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2014-07-21 22:16:05 +0200 |
commit | 49448290c3da7a94160f8e0b9d5b7638ebb01349 (patch) | |
tree | 979919ae353a497f84ba0021759e879a5ee0ecaa | |
parent | 7995cd59d0ee4a5a9a8e3d1a8756da0f42e4b22d (diff) | |
download | gtk+-49448290c3da7a94160f8e0b9d5b7638ebb01349.tar.gz |
gdk: Document the behavior of device grabs on slave devices
This may be useful for certain applications, so document it explicitly.
-rw-r--r-- | gdk/gdkdevicemanager.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdk/gdkdevicemanager.c b/gdk/gdkdevicemanager.c index 47d0292692..3da434d703 100644 --- a/gdk/gdkdevicemanager.c +++ b/gdk/gdkdevicemanager.c @@ -110,6 +110,17 @@ * it is possible to get the source (slave) device that the event originated * from via gdk_event_get_source_device(). * + * On a standard session, all physical devices are connected by default to + * the "Virtual Core Pointer/Keyboard" master devices, hence routing all events + * through these. This behavior is only modified by device grabs, where the + * slave device is temporarily detached for as long as the grab is held, and + * more permanently by user modifications to the device hierarchy. + * + * On certain application specific setups, it may make sense + * to detach a physical device from its master pointer, and mapping it to + * an specific window. This can be achieved by the combination of + * gdk_device_grab() and gdk_device_set_mode(). + * * In order to listen for events coming from devices * other than a virtual device, gdk_window_set_device_events() must be * called. Generally, this function can be used to modify the event mask |