VSTGUI 4.10
Graphical User Interface Framework not only for VST plugins
|
Drop target interface. More...
#include <dragging.h>
Public Member Functions | |
virtual DragOperation | onDragEnter (DragEventData data)=0 |
a drag enters the drop target More... | |
virtual DragOperation | onDragMove (DragEventData data)=0 |
a drag moves over the drop target More... | |
virtual void | onDragLeave (DragEventData data)=0 |
a drag leaves the drop target More... | |
virtual bool | onDrop (DragEventData data)=0 |
a drop happens on the drop target More... | |
![]() | |
virtual void | forget ()=0 |
decrease refcount and delete object if refcount == 0 More... | |
virtual void | remember ()=0 |
increase refcount More... | |
Drop target interface.
handles drag'n drop for a view
The workflow is:
|
pure virtual |
a drag enters the drop target
data | drag event data |
Implemented in CViewContainerDropTarget, and DropTargetAdapter.
|
pure virtual |
a drag leaves the drop target
data | drag event data |
Implemented in CViewContainerDropTarget, and DropTargetAdapter.
|
pure virtual |
a drag moves over the drop target
data | drag event data |
Implemented in CViewContainerDropTarget, and DropTargetAdapter.
|
pure virtual |
a drop happens on the drop target
data | drag event data |
Implemented in CViewContainerDropTarget, and DropTargetAdapter.