1QMoveEvent(3qt) QMoveEvent(3qt)
2
3
4
6 QMoveEvent - Event parameters for move events
7
9 #include <qevent.h>
10
11 Inherits QEvent.
12
13 Public Members
14 QMoveEvent ( const QPoint & pos, const QPoint & oldPos )
15 const QPoint & pos () const
16 const QPoint & oldPos () const
17
19 The QMoveEvent class contains event parameters for move events.
20
21 Move events are sent to widgets that have been moved to a new position
22 relative to their parent.
23
24 The event handler QWidget::moveEvent() receives move events.
25
26 See also QWidget::pos, QWidget::geometry, and Event Classes.
27
30 Constructs a move event with the new and old widget positions, pos and
31 oldPos respectively.
32
34 Returns the old position of the widget.
35
37 Returns the new position of the widget. This excludes the window frame
38 for top level widgets.
39
40
42 http://doc.trolltech.com/qmoveevent.html
43 http://www.trolltech.com/faq/tech.html
44
46 Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the
47 license file included in the distribution for a complete license
48 statement.
49
51 Generated automatically from the source code.
52
54 If you find a bug in Qt, please report it as described in
55 http://doc.trolltech.com/bughowto.html. Good bug reports help us to
56 help you. Thank you.
57
58 The definitive Qt documentation is provided in HTML format; it is
59 located at $QTDIR/doc/html and can be read using Qt Assistant or with a
60 web browser. This man page is provided as a convenience for those users
61 who prefer man pages, although this format is not officially supported
62 by Trolltech.
63
64 If you find errors in this manual page, please report them to qt-
65 bugs@trolltech.com. Please include the name of the manual page
66 (qmoveevent.3qt) and the Qt version (3.3.8).
67
68
69
70Trolltech AS 2 February 2007 QMoveEvent(3qt)