Uses of Interface
org.eclipse.swt.dnd.DropTargetListener
-
Packages that use DropTargetListener Package Description org.eclipse.jface.util Provides useful building blocks used throughout JFace, including property change events, a listener list implementation, and runtime checked assertions.org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets.org.eclipse.swt.custom SWT Custom widgets.org.eclipse.swt.dnd SWT Drag and Drop support.org.eclipse.ui.application Application-level APIs for configuring and controling the Eclipse Platform User Interface.org.eclipse.ui.dnd Classes and Interface specifications for Drag and Drop in the Eclipse Platform User Interface.org.eclipse.ui.forms.widgets Custom widgets and controls for forms-based parts.org.eclipse.ui.navigator Provides the Common Navigator framework.org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface.org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules.org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. -
-
Uses of DropTargetListener in org.eclipse.jface.util
Subinterfaces of DropTargetListener in org.eclipse.jface.util Modifier and Type Interface Description interface
TransferDropTargetListener
Classes in org.eclipse.jface.util that implement DropTargetListener Modifier and Type Class Description class
DelegatingDropAdapter
ADelegatingDropAdapter
is aDropTargetListener
that maintains and delegates to a set ofTransferDropTargetListener
s. -
Uses of DropTargetListener in org.eclipse.jface.viewers
Classes in org.eclipse.jface.viewers that implement DropTargetListener Modifier and Type Class Description class
ViewerDropAdapter
This adapter class provides generic drag-and-drop support for a viewer.Methods in org.eclipse.jface.viewers with parameters of type DropTargetListener Modifier and Type Method Description void
StructuredViewer. addDropSupport(int operations, Transfer[] transferTypes, DropTargetListener listener)
Adds support for dropping items into this viewer via a user drag-and-drop operation. -
Uses of DropTargetListener in org.eclipse.swt.custom
Classes in org.eclipse.swt.custom that implement DropTargetListener Modifier and Type Class Description class
StyledTextDropTargetEffect
This adapter class provides a default drag under effect (eg. select and scroll) when a drag occurs over aStyledText
. -
Uses of DropTargetListener in org.eclipse.swt.dnd
Classes in org.eclipse.swt.dnd that implement DropTargetListener Modifier and Type Class Description class
DropTargetAdapter
This adapter class provides default implementations for the methods described by theDropTargetListener
interface.class
DropTargetEffect
This class provides a default drag under effect during a drag and drop.class
TableDropTargetEffect
This class provides a default drag under effect (eg. select, insert and scroll) when a drag occurs over aTable
.class
TreeDropTargetEffect
This class provides a default drag under effect (eg. select, insert, scroll and expand) when a drag occurs over aTree
.Methods in org.eclipse.swt.dnd that return DropTargetListener Modifier and Type Method Description DropTargetListener[]
DropTarget. getDropListeners()
Returns an array of listeners who will be notified when a drag and drop operation is in progress, by sending it one of the messages defined in theDropTargetListener
interface.Methods in org.eclipse.swt.dnd with parameters of type DropTargetListener Modifier and Type Method Description void
DropTarget. addDropListener(DropTargetListener listener)
Adds the listener to the collection of listeners who will be notified when a drag and drop operation is in progress, by sending it one of the messages defined in theDropTargetListener
interface.void
DropTarget. removeDropListener(DropTargetListener listener)
Removes the listener from the collection of listeners who will be notified when a drag and drop operation is in progress. -
Uses of DropTargetListener in org.eclipse.ui.application
Methods in org.eclipse.ui.application with parameters of type DropTargetListener Modifier and Type Method Description void
IWorkbenchWindowConfigurer. configureEditorAreaDropListener(DropTargetListener dropTargetListener)
Configures the drop target listener for the editor area of this workbench window. -
Uses of DropTargetListener in org.eclipse.ui.dnd
Methods in org.eclipse.ui.dnd with parameters of type DropTargetListener Modifier and Type Method Description void
IDragAndDropService. addMergedDropTarget(Control control, int ops, Transfer[] transfers, DropTargetListener listener)
Causes a drop target to be added to the given control that respects the existing site's drop behaviour in addition to the behaviour being specified for the given control. -
Uses of DropTargetListener in org.eclipse.ui.forms.widgets
Methods in org.eclipse.ui.forms.widgets with parameters of type DropTargetListener Modifier and Type Method Description void
Form. addTitleDropSupport(int operations, Transfer[] transferTypes, DropTargetListener listener)
Adds support for dropping items into the form title area via a user drag-and-drop operation. -
Uses of DropTargetListener in org.eclipse.ui.navigator
Classes in org.eclipse.ui.navigator that implement DropTargetListener Modifier and Type Class Description class
CommonDropAdapter
Provides an implementation ofPluginDropAdapter
which uses the extensions provided by the associatedINavigatorContentService
. -
Uses of DropTargetListener in org.eclipse.ui.part
Classes in org.eclipse.ui.part that implement DropTargetListener Modifier and Type Class Description class
PluginDropAdapter
Adapter for adding handling of thePluginTransfer
drag and drop transfer type to a drop action. -
Uses of DropTargetListener in org.eclipse.ui.texteditor
Subinterfaces of DropTargetListener in org.eclipse.ui.texteditor Modifier and Type Interface Description interface
ITextEditorDropTargetListener
Interface to be implemented by SWT drop target listeners to be used withAbstractTextEditor
. -
Uses of DropTargetListener in org.eclipse.ui.views.navigator
Classes in org.eclipse.ui.views.navigator that implement DropTargetListener Modifier and Type Class Description class
NavigatorDropAdapter
Deprecated.as of 3.5, use the Common Navigator Framework classes instead
-