0
|
1 |
/****************************************************************************
|
|
2 |
**
|
|
3 |
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
** All rights reserved.
|
|
5 |
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
6 |
**
|
|
7 |
** This file is part of the documentation of the Qt Toolkit.
|
|
8 |
**
|
|
9 |
** $QT_BEGIN_LICENSE:LGPL$
|
|
10 |
** No Commercial Usage
|
|
11 |
** This file contains pre-release code and may not be distributed.
|
|
12 |
** You may use this file in accordance with the terms and conditions
|
|
13 |
** contained in the Technology Preview License Agreement accompanying
|
|
14 |
** this package.
|
|
15 |
**
|
|
16 |
** GNU Lesser General Public License Usage
|
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
18 |
** General Public License version 2.1 as published by the Free Software
|
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
20 |
** packaging of this file. Please review the following information to
|
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
23 |
**
|
|
24 |
** In addition, as a special exception, Nokia gives you certain additional
|
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
27 |
**
|
|
28 |
** If you have questions regarding the use of this file, please contact
|
|
29 |
** Nokia at qt-info@nokia.com.
|
|
30 |
**
|
|
31 |
**
|
|
32 |
**
|
|
33 |
**
|
|
34 |
**
|
|
35 |
**
|
|
36 |
**
|
|
37 |
**
|
|
38 |
** $QT_END_LICENSE$
|
|
39 |
**
|
|
40 |
****************************************************************************/
|
|
41 |
|
|
42 |
/*!
|
|
43 |
\page restoring-geometry.html
|
|
44 |
\title Restoring a Window's Geometry
|
|
45 |
|
|
46 |
\ingroup best-practices
|
|
47 |
|
|
48 |
This document describes how to save and restore a \l{Window
|
|
49 |
Geometry}{window's geometry} using the geometry properties. On
|
|
50 |
Windows, this is basically storing the result of
|
|
51 |
QWidget::geometry() and calling QWidget::setGeometry() in the next
|
|
52 |
session before calling \l{QWidget::show()}{show()}.
|
|
53 |
|
|
54 |
On X11, this might not work because an invisible window does not
|
|
55 |
have a frame yet. The window manager will decorate the window
|
|
56 |
later. When this happens, the window shifts towards the
|
|
57 |
bottom/right corner of the screen depending on the size of the
|
|
58 |
decoration frame. Although X provides a way to avoid this shift,
|
|
59 |
some window managers fail to implement this feature.
|
|
60 |
|
|
61 |
Since version 4.2, Qt provides functions that saves and restores a
|
|
62 |
window's geometry and state for you. QWidget::saveGeometry()
|
|
63 |
saves the window geometry and maximized/fullscreen state, while
|
|
64 |
QWidget::restoreGeometry() restores it. The restore function also
|
|
65 |
checks if the restored geometry is outside the available screen
|
|
66 |
geometry, and modifies it as appropriate if it is:
|
|
67 |
|
|
68 |
\snippet doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp 0
|
|
69 |
\snippet doc/src/snippets/code/src_gui_widgets_qmainwindow.cpp 1
|
|
70 |
|
|
71 |
If those functions are not available or cannot be used, then a
|
|
72 |
workaround is to call \l{QWidget::setGeometry()}{setGeometry()}
|
|
73 |
after \l{QWidget::show()}{show()}. This has the two disadvantages
|
|
74 |
that the widget appears at a wrong place for a millisecond
|
|
75 |
(results in flashing) and that currently only every second window
|
|
76 |
manager gets it right. A safer solution is to store both
|
|
77 |
\l{QWidget::pos()}{pos()} and \l{QWidget::size()}{size()} and to
|
|
78 |
restore the geometry using \l{QWidget::resize()} and
|
|
79 |
\l{QWidget::move()}{move()} before calling
|
|
80 |
\l{QWidget::show()}{show()}, as demonstrated in the
|
|
81 |
\l{mainwindows/application}{Application} example.
|
|
82 |
*/
|