wayland: Add internal API to unset a touch implicit grab
This removes both the wayland specific accounting, and the Gdk implicit grab tracking. https://bugzilla.gnome.org/show_bug.cgi?id=731380
This commit is contained in:
@ -2158,3 +2158,17 @@ gdk_wayland_device_clear_selection_content (GdkDevice *gdk_device)
|
|||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
gdk_wayland_device_unset_touch_grab (GdkDevice *gdk_device,
|
||||||
|
GdkEventSequence *sequence)
|
||||||
|
{
|
||||||
|
GdkWaylandDeviceData *device;
|
||||||
|
|
||||||
|
g_return_if_fail (GDK_IS_WAYLAND_DEVICE (gdk_device));
|
||||||
|
device = GDK_WAYLAND_DEVICE (gdk_device)->device;
|
||||||
|
|
||||||
|
gdk_wayland_device_remove_touch (device, GDK_EVENT_SEQUENCE_TO_SLOT (sequence));
|
||||||
|
_gdk_display_end_touch_grab (gdk_device_get_display (gdk_device),
|
||||||
|
gdk_device, sequence);
|
||||||
|
}
|
||||||
|
|||||||
@ -148,6 +148,9 @@ uint32_t _gdk_wayland_device_get_implicit_grab_serial(GdkWaylandDevice *device,
|
|||||||
uint32_t _gdk_wayland_device_get_last_implicit_grab_serial (GdkWaylandDevice *device,
|
uint32_t _gdk_wayland_device_get_last_implicit_grab_serial (GdkWaylandDevice *device,
|
||||||
GdkEventSequence **seqence);
|
GdkEventSequence **seqence);
|
||||||
|
|
||||||
|
void gdk_wayland_device_unset_touch_grab (GdkDevice *device,
|
||||||
|
GdkEventSequence *sequence);
|
||||||
|
|
||||||
void _gdk_wayland_display_deliver_event (GdkDisplay *display, GdkEvent *event);
|
void _gdk_wayland_display_deliver_event (GdkDisplay *display, GdkEvent *event);
|
||||||
GSource *_gdk_wayland_display_event_source_new (GdkDisplay *display);
|
GSource *_gdk_wayland_display_event_source_new (GdkDisplay *display);
|
||||||
void _gdk_wayland_display_queue_events (GdkDisplay *display);
|
void _gdk_wayland_display_queue_events (GdkDisplay *display);
|
||||||
|
|||||||
Reference in New Issue
Block a user