Class DragDropComponentConf<C extends JComponent>
- Type Parameters:
C- The type of the component to be dragged away.
UIForAnySwing.withDropSite(Configurator) method, where an instance of this
class is passed to the Configurator lambda defining how
the component should behave and look when something is dragged and dropped
on top of it. For listening to drop events, the following methods are available:
onDragEnter(Action)- Called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for theDropTargetregistered with this listener.onDragOver(Action)- Called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for theDropTargetregistered with this listener.onDropActionChanged(Action)- Called if the user has modified the current drop gesture.onDragExit(Action)- Called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for theDropTargetregistered with this listener.onDrop(Action)- Called when the drag operation has terminated with a drop on the operable part of the drop site for theDropTargetregistered with this listener. This is where the transfer of the data should take place.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the component that this configuration is for so that it can be used in theUIForAnySwing.withDropSite(Configurator)method to configure the drop site based on the component state.static <C extends JComponent>
DragDropComponentConf<C> of(C component) onDragEnter(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for theDropTargetregistered with this listener.onDragExit(sprouts.Action<ComponentDelegate<C, DropTargetEvent>> action) The supplied action is called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for theDropTargetregistered with this listener.onDragOver(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for theDropTargetregistered with this listener.onDrop(sprouts.Action<ComponentDelegate<C, DropTargetDropEvent>> action) The suppliedActionis called when the drag operation has terminated with a drop on the operable part of the drop site for theDropTargetregistered with this listener.onDropActionChanged(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called if the user has modified the current drop gesture.
-
Method Details
-
of
-
component
Returns the component that this configuration is for so that it can be used in theUIForAnySwing.withDropSite(Configurator)method to configure the drop site based on the component state.- Returns:
- The component that this configuration is for.
-
onDragEnter
public DragDropComponentConf<C> onDragEnter(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for theDropTargetregistered with this listener.- Parameters:
action- AnActionwith aDropTargetDragEventwrapped in aComponentDelegatepassed to it.- Returns:
- A new
DragDropComponentConfupdated with the supplied action.
-
onDragOver
public DragDropComponentConf<C> onDragOver(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for theDropTargetregistered with this listener.- Parameters:
action- AnActionwith aDropTargetDragEventwrapped in aComponentDelegatepassed to it.- Returns:
- A new
DragDropComponentConfupdated with the supplied action.
-
onDropActionChanged
public DragDropComponentConf<C> onDropActionChanged(sprouts.Action<ComponentDelegate<C, DropTargetDragEvent>> action) The supplied action is called if the user has modified the current drop gesture.- Parameters:
action- AnActionwith aDropTargetDragEventwrapped in aComponentDelegatepassed to it.- Returns:
- A new
DragDropComponentConfupdated with the supplied action.
-
onDragExit
public DragDropComponentConf<C> onDragExit(sprouts.Action<ComponentDelegate<C, DropTargetEvent>> action) The supplied action is called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for theDropTargetregistered with this listener.- Parameters:
action- AnActionwith aDropTargetEventwrapped in aComponentDelegatepassed to it.- Returns:
- A new
DragDropComponentConfupdated with the supplied action.
-
onDrop
public DragDropComponentConf<C> onDrop(sprouts.Action<ComponentDelegate<C, DropTargetDropEvent>> action) The suppliedActionis called when the drag operation has terminated with a drop on the operable part of the drop site for theDropTargetregistered with this listener.This method is responsible for undertaking the transfer of the data associated with the gesture. The
DropTargetDropEventprovides a means to obtain aTransferableobject that represents the data object(s) to be transfered.From this method, the
DropTargetListenershall accept or reject the drop via the acceptDrop(int dropAction) or rejectDrop() methods of theDropTargetDropEventparameter.After acceptDrop(), but not before,
DropTargetDropEvent's getTransferable() method may be invoked, and data transfer may be performed via the returnedTransferable's getTransferData() method.At the completion of a drop, an implementation of this method is required to signal the success/failure of the drop by passing an appropriate
booleanto theDropTargetDropEvent's dropComplete(boolean success) method.Note: The data transfer should be completed before the call to the
DropTargetDropEvent's dropComplete(boolean success) method. After that, a call to the getTransferData() method of theTransferablereturned byDropTargetDropEvent.getTransferable()is guaranteed to succeed only if the data transfer is local; that is, only ifDropTargetDropEvent.isLocalTransfer()returnstrue. Otherwise, the behavior of the call is implementation-dependent.- Parameters:
action- AnActionwith aDropTargetDropEventwrapped in aComponentDelegatepassed to it.- Returns:
- A new
DragDropComponentConfupdated with the supplied action.
-