1QDragEnterEvent(3qt) QDragEnterEvent(3qt)
2
3
4
6 QDragEnterEvent - Event which is sent to the widget when a drag and
7 drop first drags onto the widget
8
10 #include <qevent.h>
11
12 Inherits QDragMoveEvent.
13
14 Public Members
15 QDragEnterEvent ( const QPoint & pos )
16
18 The QDragEnterEvent class provides an event which is sent to the widget
19 when a drag and drop first drags onto the widget.
20
21 This event is always immediately followed by a QDragMoveEvent, so you
22 only need to respond to one or the other event. This class inherits
23 most of its functionality from QDragMoveEvent, which in turn inherits
24 most of its functionality from QDropEvent.
25
26 See also QDragLeaveEvent, QDragMoveEvent, QDropEvent, Drag And Drop
27 Classes, and Event Classes.
28
31 Constructs a QDragEnterEvent entering at the given point, pos.
32
33 Warning: Do not create a QDragEnterEvent yourself since these objects
34 rely on Qt's internal state.
35
36
38 http://doc.trolltech.com/qdragenterevent.html
39 http://www.trolltech.com/faq/tech.html
40
42 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
43 license file included in the distribution for a complete license
44 statement.
45
47 Generated automatically from the source code.
48
50 If you find a bug in Qt, please report it as described in
51 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
52 help you. Thank you.
53
54 The definitive Qt documentation is provided in HTML format; it is
55 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
56 web browser. This man page is provided as a convenience for those users
57 who prefer man pages, although this format is not officially supported
58 by Trolltech.
59
60 If you find errors in this manual page, please report them to qt-
61 bugs@trolltech.com. Please include the name of the manual page
62 (qdragenterevent.3qt) and the Qt version (3.3.8).
63
64
65
66Trolltech AS 2 February 2007 QDragEnterEvent(3qt)