source: trunk/doc/src/qdesktopwidget.qdoc@ 357

Last change on this file since 357 was 2, checked in by Dmitry A. Kuminov, 17 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 7.7 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the documentation of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
23** In addition, as a special exception, Nokia gives you certain
24** additional rights. These rights are described in the Nokia Qt LGPL
25** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
26** package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42/*!
43 \class QDesktopWidget
44 \brief The QDesktopWidget class provides access to screen information on multi-head systems.
45
46 \ingroup advanced
47 \ingroup desktop
48 \ingroup environment
49 \mainclass
50
51 QApplication::desktop() function should be used to get an instance
52 of the QDesktopWidget.
53
54 Systems with more than one graphics card and monitor can manage the
55 physical screen space available either as multiple desktops, or as a
56 large virtual desktop, which usually has the size of the bounding
57 rectangle of all the screens (see isVirtualDesktop()). For an
58 application, one of the available screens is the primary screen, i.e.
59 the screen where the main widget resides (see primaryScreen()). All
60 windows opened in the context of the application should be
61 constrained to the boundaries of the primary screen; for example,
62 it would be inconvenient if a dialog box popped up on a different
63 screen, or split over two screens.
64
65 The QDesktopWidget provides information about the geometry of the
66 available screens with screenGeometry(). The number of screens
67 available is returned by numScreens(). The screen number that a
68 particular point or widget is located in is returned by
69 screenNumber().
70
71 Widgets provided by Qt use this class, for example, to place
72 tooltips, menus and dialog boxes according to the parent or
73 application widget.
74
75 Applications can use this class to save window positions, or to place
76 child widgets on one screen.
77
78 \img qdesktopwidget.png Managing Multiple Screens
79
80 In the illustration above, Application One's primary screen is
81 screen 0, and App Two's primary screen is screen 1.
82
83 \target multiple screens note
84 \note QDesktopWidget inherits the QWidget properties, width() and
85 height(), which specify the size of the desktop. However, for
86 desktops with multiple screens, the size of the desktop is the union
87 of all the screen sizes, so width() and height() should \e not be
88 used for computing the size of a widget to be placed on one of the
89 screens. The correct width and height values are obtained using
90 availableGeometry() or screenGeometry() for a particular screen.
91
92 \sa QApplication, QApplication::desktop(), QX11Info::appRootWindow()
93*/
94
95/*!
96 \fn QDesktopWidget::QDesktopWidget()
97
98 \internal
99