ListBoxDropTargetObserver::ListBoxDragEntered
virtual void ListBoxDragEntered ( const ListBoxDropTargetEvent & ev, DragDrop::Effect * effect, bool * defBehaviour );
Parameters
- ev
A reference to the event. - effect
Drag and drop effect can take the following values: DragDrop::Reject, DragDrop::Accept, DragDrop::Copy, DragDrop::Move, DragDrop::Link, DragDrop::Delete. - defBehaviour
true by default. If true, the default target drag and drop behaviour implemented by the Dialog Manager is used. This includes event management and feedback.
Description
Example
// Method Example: void DragTab2Observer::ListBoxDragEntered (const DG::ListBoxDropTargetEvent& /*ev*/, DG::DragDrop::Effect* effect, bool* /*defBehaviour*/) { *effect = DG::DragDrop::Accept; }
Drag entered event handler for list box controls.