Function
Gtkdrag_finish
Declaration [src]
void
gtk_drag_finish (
GdkDragContext* context,
gboolean success,
gboolean del,
guint32 time_
)
Description [src]
Informs the drag source that the drop is finished, and that the data of the drag will no longer be required.
Parameters
context
-
Type:
GdkDragContext
The drag context.
The data is owned by the caller of the function. success
-
Type:
gboolean
A flag indicating whether the drop was successful.
del
-
Type:
gboolean
A flag indicating whether the source should delete the original data. (This should be
TRUE
for a move). time_
-
Type:
guint32
The timestamp from the
GtkWidget::drag-drop
signal.