diff options
author | Rob Bradford <rob@linux.intel.com> | 2011-12-14 14:09:52 +0000 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2012-01-13 16:50:47 +0000 |
commit | cd795de6bf21107051842062f501094feda96232 (patch) | |
tree | ed828aa06dbd7849e131a591aca4025d2d50db9c /gdk/wayland/gdkwayland.h | |
parent | 9d90a17a7c2a581c22cf80eb84360636b0215ec2 (diff) | |
download | gtk+-cd795de6bf21107051842062f501094feda96232.tar.gz |
wayland: Expose basic mechanism for getting selection content by callback
This version has a couple of TODOs/FIXMEs:
* We should do something better than g_io_channel_read_to_end
* Need to check the mime type is valid
Diffstat (limited to 'gdk/wayland/gdkwayland.h')
-rw-r--r-- | gdk/wayland/gdkwayland.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gdk/wayland/gdkwayland.h b/gdk/wayland/gdkwayland.h index d4616cd12f..e7028cd5b5 100644 --- a/gdk/wayland/gdkwayland.h +++ b/gdk/wayland/gdkwayland.h @@ -37,7 +37,18 @@ GType gdk_wayland_display_manager_get_type (void); #define gdk_wayland_device_get_selection_type_atoms gdk_wayland_device_get_selection_type_atoms_libgtk_only int gdk_wayland_device_get_selection_type_atoms (GdkDevice *device, - GdkAtom **atoms_out); + GdkAtom **atoms_out); + +typedef void (*GdkDeviceWaylandRequestContentCallback) (GdkDevice *device, gchar *data, gsize len, gpointer userdata); + +#define gdk_wayland_device_request_selection_content gdk_wayland_device_request_selection_content_libgtk_only +gboolean +gdk_wayland_device_request_selection_content (GdkDevice *device, + const gchar *requested_mime_type, + GdkDeviceWaylandRequestContentCallback cb, + gpointer userdata); + + #endif G_END_DECLS |