Package org.eclipse.swt.dnd
Class TableDragSourceEffect
- java.lang.Object
-
- org.eclipse.swt.dnd.DragSourceAdapter
-
- org.eclipse.swt.dnd.DragSourceEffect
-
- org.eclipse.swt.dnd.TableDragSourceEffect
-
- All Implemented Interfaces:
EventListener,DragSourceListener,SWTEventListener
public class TableDragSourceEffect extends DragSourceEffect
This class provides default implementations to display a source image when a drag is initiated from aTable.Classes that wish to provide their own source image for a
Subclasses that override any methods of this class must call the correspondingTablecan extend theTableDragSourceEffectclass, override theTableDragSourceEffect.dragStartmethod and set the fieldDragSourceEvent.imagewith their own image.supermethod to get the default drag source effect implementation.- Since:
- 3.3
- See Also:
DragSourceEffect,DragSourceEvent, Sample code and further information
-
-
Constructor Summary
Constructors Constructor Description TableDragSourceEffect(Table table)Creates a newTableDragSourceEffectto handle drag effect from the specifiedTable.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddragFinished(DragSourceEvent event)This implementation ofdragFinisheddisposes the image that was created inTableDragSourceEffect.dragStart.voiddragStart(DragSourceEvent event)This implementation ofdragStartwill create a default image that will be used during the drag.-
Methods inherited from class org.eclipse.swt.dnd.DragSourceEffect
getControl
-
Methods inherited from class org.eclipse.swt.dnd.DragSourceAdapter
dragSetData
-
-
-
-
Constructor Detail
-
TableDragSourceEffect
public TableDragSourceEffect(Table table)
Creates a newTableDragSourceEffectto handle drag effect from the specifiedTable.- Parameters:
table- theTablethat the user clicks on to initiate the drag
-
-
Method Detail
-
dragFinished
public void dragFinished(DragSourceEvent event)
This implementation ofdragFinisheddisposes the image that was created inTableDragSourceEffect.dragStart. Subclasses that override this method should callsuper.dragFinished(event)to dispose the image in the default implementation.- Specified by:
dragFinishedin interfaceDragSourceListener- Overrides:
dragFinishedin classDragSourceAdapter- Parameters:
event- the information associated with the drag finished event- See Also:
DragSourceEvent
-
dragStart
public void dragStart(DragSourceEvent event)
This implementation ofdragStartwill create a default image that will be used during the drag. The image should be disposed when the drag is completed in theTableDragSourceEffect.dragFinishedmethod. Subclasses that override this method should callsuper.dragStart(event)to use the image from the default implementation.- Specified by:
dragStartin interfaceDragSourceListener- Overrides:
dragStartin classDragSourceAdapter- Parameters:
event- the information associated with the drag start event- See Also:
DragSourceEvent
-
-