TableDragSourceEffect

This class provides default implementations to display a source image when a drag is initiated from a <code>Table</code>.

<p>Classes that wish to provide their own source image for a <code>Table</code> can extend the <code>TableDragSourceEffect</code> class, override the <code>TableDragSourceEffect.dragStart</code> method and set the field <code>DragSourceEvent.image</code> with their own image.</p>

Subclasses that override any methods of this class must call the corresponding <code>super</code> method to get the default drag source effect implementation.

@see DragSourceEffect @see DragSourceEvent @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

@since 3.3

Constructors

this
this(Table table)

Creates a new <code>TableDragSourceEffect</code> to handle drag effect from the specified <code>Table</code>.

Members

Functions

dragFinished
void dragFinished(DragSourceEvent event)

This implementation of <code>dragFinished</code> disposes the image that was created in <code>TableDragSourceEffect.dragStart</code>.

dragStart
void dragStart(DragSourceEvent event)

This implementation of <code>dragStart</code> will create a default image that will be used during the drag. The image should be disposed when the drag is completed in the <code>TableDragSourceEffect.dragFinished</code> method.

Inherited Members

From DragSourceEffect

getControl
Control getControl()

Returns the Control which is registered for this DragSourceEffect. This is the control that the user clicks in to initiate dragging.

Meta