diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-07-12 13:53:50 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-07-12 13:57:45 +0200 |
commit | 1dd15b523742d1366219de72f1e87414a6463c16 (patch) | |
tree | a1de7bdbb1d3fbb3e8e613e7cda5cfb55100b623 /gdk | |
parent | 5cdbbc6e613d23478812b299d75eedccdc54be84 (diff) | |
download | gtk+-1dd15b523742d1366219de72f1e87414a6463c16.tar.gz |
dnd: Some documentation updates
Don't mention dnd protocols, and do mention the new,
split objects.
Diffstat (limited to 'gdk')
-rw-r--r-- | gdk/gdkdrag.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gdk/gdkdrag.c b/gdk/gdkdrag.c index 58878c9076..a427803f25 100644 --- a/gdk/gdkdrag.c +++ b/gdk/gdkdrag.c @@ -77,14 +77,17 @@ G_DEFINE_ABSTRACT_TYPE (GdkDrag, gdk_drag, G_TYPE_OBJECT) * @short_description: Functions for controlling drag and drop handling * * These functions provide a low level interface for drag and drop. - * The X backend of GDK supports both the Xdnd and Motif drag and drop - * protocols transparently, the Win32 backend supports the WM_DROPFILES - * protocol. * + * The GdkDrag object represents the source side of an ongoing DND operation. + * It is created when a drag is started, and stays alive for duration of + * the DND operation. + * + * The GdkDrop object represents the target side of an ongoing DND operation. + * * GTK+ provides a higher level abstraction based on top of these functions, - * and so they are not normally needed in GTK+ applications. - * See the [Drag and Drop][gtk3-Drag-and-Drop] section of - * the GTK+ documentation for more information. + * and so they are not normally needed in GTK+ applications. See the + * [Drag and Drop][gtk4-Drag-and-Drop] section of the GTK+ documentation + * for more information. */ /** |