gdkPointerUngrab
, or
the grab window becomes unviewable.
This overrides any previous pointer grab by this client.gdkPointerGrab(window, owner.events = FALSE, event.mask = 0, confine.to = NULL, cursor = NULL, time = "GDK_CURRENT_TIME")
owner.events
FALSE
then all pointer events are reported with respect to
window
and are only reported if selected by event.mask
. If TRUE
then pointer
events for this application are reported as normal, buevent.mask
GdkEventMask
] specifies the event mask, which is used in accordance with
owner.events
. Note that only pointer events (i.e. button and motion events)
may be selected.confine.to
GdkWindow
] If non-NULL
, the pointer will be confined to this
window during the grab. If the pointer is outside confine.to
, it will
automatically be moved to the closest edge of cursor
GdkCursor
] the cursor to display while the grab is active. If this is NULL
then
the normal cursors are used for window
and its descendants, and the cursor
for window
time
GdkEventButton
struct, though GDK_CURRENT_TIME
can be used if
the time isn't known.GdkGrabStatus
] GDK_GRAB_SUCCESS
if the grab was successful.GtkHPaned
and GtkVPaned
widgets, and for resizing columns in GtkCList
widgets.
Note that if the event mask of an X window has selected both button press and
button release events, then a button press event will cause an automatic
pointer grab until the button is released.
X does this automatically since most applications expect to receive button
press and release events in pairs.
It is equivalent to a pointer grab on the window with owner.events
set to
TRUE
.
If you set up anything at the time you take the grab that needs to be cleaned
up when the grab ends, you should handle the GdkEventGrabBroken
events that
are emitted when the grab ends unvoluntarily.