summaryrefslogtreecommitdiff
path: root/gdk/x11/gdkprivate-x11.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-12-07 13:47:45 -0500
committerMatthias Clasen <mclasen@redhat.com>2015-12-13 10:39:43 -0500
commit268c7a3e44bbedd71f93b9456f91e0116b79dc71 (patch)
treec989fa00bab8b4c6fd2ef3903c3ae1cf4108659c /gdk/x11/gdkprivate-x11.h
parenteb97ef05146debfb37821e93d33e4375a6f9d1ed (diff)
downloadgtk+-268c7a3e44bbedd71f93b9456f91e0116b79dc71.tar.gz
gdk: Allow passing the start coordinates in drag_begin
Add a variant of gdk_drag_begin that takes the start position in addition to the device. All backend implementation have been updated to accept (and ignore) the new arguments. Subsequent commits will make use of the data in some backends.
Diffstat (limited to 'gdk/x11/gdkprivate-x11.h')
-rw-r--r--gdk/x11/gdkprivate-x11.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdk/x11/gdkprivate-x11.h b/gdk/x11/gdkprivate-x11.h
index c2afecf46d..f35d2af21d 100644
--- a/gdk/x11/gdkprivate-x11.h
+++ b/gdk/x11/gdkprivate-x11.h
@@ -312,7 +312,9 @@ void _gdk_x11_window_register_dnd (GdkWindow *window);
GdkDragContext * _gdk_x11_window_drag_begin (GdkWindow *window,
GdkDevice *device,
- GList *targets);
+ GList *targets,
+ gint x_root,
+ gint y_root);
gboolean _gdk_x11_get_xft_setting (GdkScreen *screen,
const gchar *name,