summaryrefslogtreecommitdiff
path: root/gdk/wayland/gdkwayland.h
diff options
context:
space:
mode:
authorRob Bradford <rob@linux.intel.com>2011-12-14 14:09:52 +0000
committerRob Bradford <rob@linux.intel.com>2012-01-13 16:50:47 +0000
commitcd795de6bf21107051842062f501094feda96232 (patch)
treeed828aa06dbd7849e131a591aca4025d2d50db9c /gdk/wayland/gdkwayland.h
parent9d90a17a7c2a581c22cf80eb84360636b0215ec2 (diff)
downloadgtk+-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.h13
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