DragSource.connectDragEnd

gulong connectDragEnd(T)(T callback, Flag!"After" after = No.After) if (isCallable!T && is(ReturnType!T == void) && (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] : gdk.drag.Drag))) && (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] == bool))) && (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : gtk.drag_source.DragSource))) && Parameters!T.length < 4)

Connect to DragEnd signal.

Emitted on the drag source when a drag is finished.

A typical reason to connect to this signal is to undo things done in gtk.drag_source.DragSource.prepare or gtk.drag_source.DragSource.dragBegin handlers.

Parameters

callbacksignal callback delegate or function to connect void callback(gdk.drag.Drag drag, bool deleteData, gtk.drag_source.DragSource dragSource) drag the gdk.drag.Drag object (optional) deleteData true if the drag was performing gdk.types.DragAction.Move, and the data should be deleted (optional) dragSource the instance the signal is connected to (optional)
afterYes.After to execute callback after default handler, No.After to execute before (default)

Returns

Signal ID