DropArea QML Type

Import Statement: import org.kde.draganddrop

Properties

Signals

  • dragEnter(DeclarativeDragDropEvent *event)
  • dragLeave(DeclarativeDragDropEvent *event)
  • dragMove(DeclarativeDragDropEvent *event)
  • drop(DeclarativeDragDropEvent *event)

Detailed Description

Property Documentation

containsDrag : bool


enabled : bool

If false the area will receive no drop events


preventStealing : bool


Signal Documentation

dragEnter(DeclarativeDragDropEvent *event)

Emitted when the mouse cursor dragging something enters in the drag area

event description of the dragged content

Note: The corresponding handler is onDragEnter.

See also DragDropEvent.


dragLeave(DeclarativeDragDropEvent *event)

Emitted when the mouse cursor dragging something leaves the drag area

event description of the dragged content

Note: The corresponding handler is onDragLeave.

See also DragDropEvent.


dragMove(DeclarativeDragDropEvent *event)

Emitted when the mouse cursor dragging something moves over the drag area

event description of the dragged content

Note: The corresponding handler is onDragMove.

See also DragDropEvent.


drop(DeclarativeDragDropEvent *event)

Emitted when the user drops something in the area

event description of the dragged content

Note: The corresponding handler is onDrop.

See also DragDropEvent.