diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-12-07 15:07:13 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-12-13 10:39:43 -0500 |
commit | c590b83397713c86f099588a9e5de31028f4cc25 (patch) | |
tree | 793a865be122aeffda754066718fbb32a67f44e1 /gdk/gdkdndprivate.h | |
parent | ed89e5f62ae5739df1dc1e64e4105e1aeda56971 (diff) | |
download | gtk+-c590b83397713c86f099588a9e5de31028f4cc25.tar.gz |
gdk: Add gdk_drag_drop_done
This will allow us to move the drag cancel animation to GDK.
For now, it does nothing.
Diffstat (limited to 'gdk/gdkdndprivate.h')
-rw-r--r-- | gdk/gdkdndprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/gdkdndprivate.h b/gdk/gdkdndprivate.h index e8a163f7c8..fe2a95dfc7 100644 --- a/gdk/gdkdndprivate.h +++ b/gdk/gdkdndprivate.h @@ -66,6 +66,8 @@ struct _GdkDragContextClass { void (*set_hotspot) (GdkDragContext *context, gint hot_x, gint hot_y); + void (*drop_done) (GdkDragContext *context, + gboolean success); }; struct _GdkDragContext { |