Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QDragEnterEvent class provides an event which is sent to a widget when a drag and drop action enters it. More...
Public Member Functions | |
QDragEnterEvent (QDragEnterEvent copy) | |
| |
QDragEnterEvent (QPoint pos, Qt.DropAction actions, QMimeData data, Qt.MouseButton buttons, Qt.KeyboardModifier modifiers) | |
| |
override void | CreateProxy () |
new void | Dispose () |
Public Member Functions inherited from QtGui.QDragMoveEvent | |
QDragMoveEvent (QDragMoveEvent copy) | |
| |
QDragMoveEvent (QPoint pos, Qt.DropAction actions, QMimeData data, Qt.MouseButton buttons, Qt.KeyboardModifier modifiers, QEvent.Type type=QEvent.Type.DragMove) | |
| |
override void | CreateProxy () |
new void | Accept () |
| |
new void | Accept (QRect r) |
| |
new QRect | AnswerRect () |
| |
new void | Ignore () |
| |
new void | Ignore (QRect r) |
| |
new void | Dispose () |
Public Member Functions inherited from QtGui.QDropEvent | |
QDropEvent (QDropEvent copy) | |
| |
QDropEvent (QPoint pos, Qt.DropAction actions, QMimeData data, Qt.MouseButton buttons, Qt.KeyboardModifier modifiers, QEvent.Type type=QEvent.Type.Drop) | |
| |
override void | CreateProxy () |
new void | AcceptProposedAction () |
| |
virtual QByteArray | EncodedData (string arg1) |
virtual string | Format (int n=0) |
new Qt.KeyboardModifier | KeyboardModifiers () |
| |
new QMimeData | MimeData () |
| |
new Qt.MouseButton | MouseButtons () |
| |
new QPoint | Pos () |
| |
new Qt.DropAction | PossibleActions () |
| |
new Qt.DropAction | ProposedAction () |
| |
virtual bool | Provides (string arg1) |
new QWidget | Source () |
| |
new void | Dispose () |
Public Member Functions inherited from QtCore.QEvent | |
QEvent (QEvent copy) | |
| |
QEvent (QEvent.Type type) | |
| |
new void | Accept () |
| |
new void | Ignore () |
| |
new bool | IsAccepted () |
new void | SetAccepted (bool accepted) |
new bool | Spontaneous () |
| |
new QEvent.Type | type () |
| |
new void | Dispose () |
Public Member Functions inherited from QtGui.IQMimeSource | |
QByteArray | EncodedData (string arg1) |
string | Format (int n=0) |
bool | Provides (string arg1) |
Protected Member Functions | |
QDragEnterEvent (System.Type dummy) | |
Protected Member Functions inherited from QtGui.QDragMoveEvent | |
QDragMoveEvent (System.Type dummy) | |
Protected Member Functions inherited from QtGui.QDropEvent | |
QDropEvent (System.Type dummy) | |
Protected Member Functions inherited from QtCore.QEvent | |
QEvent (System.Type dummy) | |
The QDragEnterEvent class provides an event which is sent to a widget when a drag and drop action enters it.
A widget must accept this event in order to receive the drag move events that are sent while the drag and drop action is in progress. The drag enter event is always immediately followed by a drag move event.
QDragEnterEvent inherits most of its functionality from QDragMoveEvent, which in turn inherits most of its functionality from QDropEvent.
See also QDragLeaveEvent, QDragMoveEvent, and QDropEvent.
|
protected |
QtGui.QDragEnterEvent.QDragEnterEvent | ( | QDragEnterEvent | copy | ) |
Constructs a QDragEnterEvent that represents a drag entering a widget at the given point with mouse and keyboard states specified by buttons and modifiers.
The drag data is passed as MIME-encoded information in data, and the specified actions describe the possible types of drag and drop operation that can be performed.
Warning: Do not create a QDragEnterEvent yourself since these objects rely on Qt's internal state.
QtGui.QDragEnterEvent.QDragEnterEvent | ( | QPoint | pos, |
Qt.DropAction | actions, | ||
QMimeData | data, | ||
Qt.MouseButton | buttons, | ||
Qt.KeyboardModifier | modifiers | ||
) |
Constructs a QDragEnterEvent that represents a drag entering a widget at the given point with mouse and keyboard states specified by buttons and modifiers.
The drag data is passed as MIME-encoded information in data, and the specified actions describe the possible types of drag and drop operation that can be performed.
Warning: Do not create a QDragEnterEvent yourself since these objects rely on Qt's internal state.
|
virtual |
Reimplemented from QtCore.QEvent.
new void QtGui.QDragEnterEvent.Dispose | ( | ) |