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