DragDropEvent QML Type

Import Statement: import org.kde.draganddrop

Properties

Methods

Detailed Description

Property Documentation

buttons : int

The pressed mouse buttons. A combination of:

ConstantDescription
Qt.NoButtonThe button state does not refer to any button (see QMouseEvent::button()).
Qt.LeftButtonThe left button is pressed, or an event refers to the left button. (The left button may be the right button on left-handed mice.)
Qt.RightButtonThe right button.
Qt.MidButtonThe middle button.
Qt.MiddleButtonMidButton The middle button.
Qt.XButton1The first X button.
Qt.XButton2The second X button.

mimeData : MimeData

The mime data of this operation

See also MimeData.


modifiers : int

Pressed keyboard modifiers, a combination of:

ConstantDescription
Qt.NoModifierNo modifier key is pressed.
Qt.ShiftModifierA Shift key on the keyboard is pressed.
Qt.ControlModifierA Ctrl key on the keyboard is pressed.
Qt.AltModifierAn Alt key on the keyboard is pressed.
Qt.MetaModifierA Meta key on the keyboard is pressed.
Qt.KeypadModifierA keypad button is pressed.
Qt.GroupSwitchModifierX11 only. A Mode_switch key on the keyboard is pressed.

possibleActions : Qt::DropActions

The possible kinds of action that can be done in the drop, a combination of:

ConstantDescription
Qt.CopyAction0x1 Copy the data to the target.
Qt.MoveAction0x2 Move the data from the source to the target.
Qt.LinkAction0x4 Create a link from the source to the target.
Qt.ActionMask0xff
Qt.IgnoreAction0x0 Ignore the action (do nothing with the data).
Qt.TargetMoveAction0x8002 On Windows, this value is used when the ownership of the D&D data should be taken over by the target application, i.e., the source application should not delete the data. On X11 this value is used to do a move. TargetMoveAction is not used on the Mac.

proposedAction : Qt::DropAction

Default action

See also possibleActions.


x : int

The mouse X position of the event relative to the DropArea that is receiving the event.


y : int

The mouse Y position of the event relative to the DropArea that is receiving the event.


Method Documentation

accept(int action)


ignore()