QDragEnterEvent Class Reference

#include <qevent.h>

Inheritance diagram for QDragEnterEvent:

Inheritance graph
[legend]
Collaboration diagram for QDragEnterEvent:

Collaboration graph
[legend]
List of all members.

Detailed Description

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 {QDragMoveEvent}{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, QDropEvent

Definition at line 513 of file qevent.h.

Public Member Functions

 QDragEnterEvent (const QPoint &pos, Qt::DropActions actions, const QMimeData *data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers)
 ~QDragEnterEvent ()


Constructor & Destructor Documentation

QDragEnterEvent::QDragEnterEvent ( const QPoint point,
Qt::DropActions  actions,
const QMimeData data,
Qt::MouseButtons  buttons,
Qt::KeyboardModifiers  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.

Definition at line 2433 of file qevent.cpp.

02435     : QDragMoveEvent(point, actions, data, buttons, modifiers, DragEnter)
02436 {}

QDragEnterEvent::~QDragEnterEvent (  ) 

Definition at line 2440 of file qevent.cpp.

02441 {
02442 }


The documentation for this class was generated from the following files:
Generated on Thu Mar 15 17:29:33 2007 for Qt 4.2 User's Guide by  doxygen 1.5.1