source: trunk/src/gui/widgets/qstackedwidget.cpp@ 965

Last change on this file since 965 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 8.9 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
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** 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 have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#include "qstackedwidget.h"
43
44#ifndef QT_NO_STACKEDWIDGET
45
46#include <qstackedlayout.h>
47#include <qevent.h>
48#include <private/qframe_p.h>
49
50QT_BEGIN_NAMESPACE
51
52class QStackedWidgetPrivate : public QFramePrivate
53{
54 Q_DECLARE_PUBLIC(QStackedWidget)
55public:
56 QStackedWidgetPrivate():layout(0){}
57 QStackedLayout *layout;
58 bool blockChildAdd;
59};
60
61/*!
62 \class QStackedWidget
63 \brief The QStackedWidget class provides a stack of widgets where
64 only one widget is visible at a time.
65
66 \ingroup organizers
67 \ingroup geomanagement
68
69
70 QStackedWidget can be used to create a user interface similar to
71 the one provided by QTabWidget. It is a convenience layout widget
72 built on top of the QStackedLayout class.
73
74 Like QStackedLayout, QStackedWidget can be constructed and
75 populated with a number of child widgets ("pages"):
76
77 \snippet doc/src/snippets/qstackedwidget/main.cpp 0
78 \snippet doc/src/snippets/qstackedwidget/main.cpp 2
79 \snippet doc/src/snippets/qstackedwidget/main.cpp 3
80
81 QStackedWidget provides no intrinsic means for the user to switch
82 page. This is typically done through a QComboBox or a QListWidget
83 that stores the titles of the QStackedWidget's pages. For
84 example:
85
86 \snippet doc/src/snippets/qstackedwidget/main.cpp 1
87
88 When populating a stacked widget, the widgets are added to an
89 internal list. The indexOf() function returns the index of a
90 widget in that list. The widgets can either be added to the end of
91 the list using the addWidget() function, or inserted at a given
92 index using the insertWidget() function. The removeWidget()
93 function removes a widget from the stacked widget. The number of
94 widgets contained in the stacked widget, can
95 be obtained using the count() function.
96
97 The widget() function returns the widget at a given index
98 position. The index of the widget that is shown on screen is given
99 by currentIndex() and can be changed using setCurrentIndex(). In a
100 similar manner, the currently shown widget can be retrieved using
101 the currentWidget() function, and altered using the
102 setCurrentWidget() function.
103
104 Whenever the current widget in the stacked widget changes or a
105 widget is removed from the stacked widget, the currentChanged()
106 and widgetRemoved() signals are emitted respectively.
107
108 \sa QStackedLayout, QTabWidget, {Config Dialog Example}
109*/
110
111/*!
112 \fn void QStackedWidget::currentChanged(int index)
113
114 This signal is emitted whenever the current widget changes.
115
116 The parameter holds the \a index of the new current widget, or -1
117 if there isn't a new one (for example, if there are no widgets in
118 the QStackedWidget).
119
120 \sa currentWidget(), setCurrentWidget()
121*/
122
123/*!
124 \fn void QStackedWidget::widgetRemoved(int index)
125
126 This signal is emitted whenever a widget is removed. The widget's
127 \a index is passed as parameter.
128
129 \sa removeWidget()
130*/
131
132/*!
133 Constructs a QStackedWidget with the given \a parent.
134
135 \sa addWidget(), insertWidget()
136*/
137QStackedWidget::QStackedWidget(QWidget *parent)
138 : QFrame(*new QStackedWidgetPrivate, parent)
139{
140 Q_D(QStackedWidget);
141 d->layout = new QStackedLayout(this);
142 connect(d->layout, SIGNAL(widgetRemoved(int)), this, SIGNAL(widgetRemoved(int)));
143 connect(d->layout, SIGNAL(currentChanged(int)), this, SIGNAL(currentChanged(int)));
144}
145
146/*!
147 Destroys this stacked widget, and frees any allocated resources.
148*/
149QStackedWidget::~QStackedWidget()
150{
151}
152
153/*!
154 Appends the given \a widget to the QStackedWidget and returns the
155 index position. Ownership of \a widget is passed on to the
156 QStackedWidget.
157
158 If the QStackedWidget is empty before this function is called,
159 \a widget becomes the current widget.
160
161 \sa insertWidget(), removeWidget(), setCurrentWidget()
162*/
163int QStackedWidget::addWidget(QWidget *widget)
164{
165 return d_func()->layout->addWidget(widget);
166}
167
168/*!
169 Inserts the given \a widget at the given \a index in the
170 QStackedWidget. Ownership of \a widget is passed on to the
171 QStackedWidget. If \a index is out of range, the \a widget is
172 appended (in which case it is the actual index of the \a widget
173 that is returned).
174
175 If the QStackedWidget was empty before this function is called,
176 the given \a widget becomes the current widget.
177
178 Inserting a new widget at an index less than or equal to the current index
179 will increment the current index, but keep the current widget.
180
181 \sa addWidget(), removeWidget(), setCurrentWidget()
182*/
183int QStackedWidget::insertWidget(int index, QWidget *widget)
184{
185 return d_func()->layout->insertWidget(index, widget);
186}
187
188/*!
189 Removes \a widget from the QStackedWidget. i.e., \a widget is \e
190 not deleted but simply removed from the stacked layout, causing it
191 to be hidden.
192
193 \bold{Note:} Ownership of \a widget reverts to the application.
194
195 \sa addWidget(), insertWidget(), currentWidget()
196*/
197void QStackedWidget::removeWidget(QWidget *widget)
198{
199 d_func()->layout->removeWidget(widget);
200}
201
202/*!
203 \property QStackedWidget::currentIndex
204 \brief the index position of the widget that is visible
205
206 The current index is -1 if there is no current widget.
207
208 By default, this property contains a value of -1 because the stack
209 is initially empty.
210
211 \sa currentWidget(), indexOf()
212*/
213
214void QStackedWidget::setCurrentIndex(int index)
215{
216 d_func()->layout->setCurrentIndex(index);
217}
218
219int QStackedWidget::currentIndex() const
220{
221 return d_func()->layout->currentIndex();
222}
223
224/*!
225 Returns the current widget, or 0 if there are no child widgets.
226
227 \sa currentIndex(), setCurrentWidget()
228*/
229QWidget *QStackedWidget::currentWidget() const
230{
231 return d_func()->layout->currentWidget();
232}
233
234
235/*!
236 \fn void QStackedWidget::setCurrentWidget(QWidget *widget)
237
238 Sets the current widget to be the specified \a widget. The new
239 current widget must already be contained in this stacked widget.
240
241 \sa currentWidget(), setCurrentIndex()
242 */
243void QStackedWidget::setCurrentWidget(QWidget *widget)
244{
245 Q_D(QStackedWidget);
246 if (d->layout->indexOf(widget) == -1) {
247 qWarning("QStackedWidget::setCurrentWidget: widget %p not contained in stack", widget);
248 return;
249 }
250 d->layout->setCurrentWidget(widget);
251}
252
253/*!
254 Returns the index of the given \a widget, or -1 if the given \a
255 widget is not a child of the QStackedWidget.