![]() |
Home · All Classes · Main Classes · Annotated · Grouped Classes · Functions | ![]() |
The QStackedLayout class provides a stack of widgets where only one widget is visible at a time. More...
#include <QStackedLayout>
Part of the QtGui module.
Inherits QLayout.
The QStackedLayout class provides a stack of widgets where only one widget is visible at a time.
QStackedLayout can be used to create a user interface similar to the one provided by QTabWidget. There is also a convenience QStackedWidget class built on top of QStackedLayout.
A QStackedLayout can be populated with a number of child widgets ("pages"):
QWidget *firstPageWidget = new QWidget; QWidget *secondPageWidget = new QWidget; QWidget *thirdPageWidget = new QWidget; ... QStackedLayout *layout = new QStackedLayout; layout->addWidget(firstPageWidget); layout->addWidget(secondPageWidget); layout->addWidget(thirdPageWidget); setLayout(layout);
When inserted, the widgets are added to an internal list. The indexOf() function returns the index of a widget in that list. The widget() function returns the widget at a given index position. The index of the widget that is shown on screen is given by currentIndex() and can be changed using setCurrentIndex().
QStackedLayout provides no intrinsic means for the user to switch page. This is typically done through a QComboBox or a QListWidget that stores the titles of the QStackedLayout's pages. For example:
QComboBox *pageComboBox = new QComboBox; pageComboBox->addItem(tr("Page 1")); pageComboBox->addItem(tr("Page 2")); pageComboBox->addItem(tr("Page 3")); connect(pageComboBox, SIGNAL(activated(int)), layout, SLOT(setCurrentIndex(int)));
See also QStackedWidget and QTabWidget.
This property holds the number of widgets contained in the layout.
Access functions:
This property holds the index position of the widget that is visible.
The current index is -1 if there is no current widget.
Access functions:
See also currentWidget() and indexOf().
Constructs a QStackedLayout with no parent.
This QStackedLayout must be added to another layout later on to become effective.
Constructs a new QStackedLayout with the given parent.
This layout will install itself on the parent widget and manage the geometry of its children.
Constructs a new QStackedLayout and inserts it into the given parentLayout.
Destroys this QStackedLayout.
The layout's widgets are not destroyed.
Adds widget to the end of this layout and returns the index position of widget.
If the QStackedLayout is empty before this function is called, widget becomes the current widget.
See also insertWidget(), removeWidget(), and currentWidget().
This signal is emitted when the current widget in the layout changes. The index specifies the index of the new current widget.
See also currentWidget() and setCurrentWidget().
Returns the current widget, or 0 if there are no widgets in this layout.
Equivalent to widget(currentIndex()).
See also currentIndex().
Inserts widget at position index in this QStackedLayout. If index is out of range, the widget is appended. Returns the actual index of widget.
If the QStackedLayout is empty before this function is called, widget becomes the current widget.
See also addWidget().
Sets the current widget to the widget specified. The new widget must already be contained in this stacked layout.
See also setCurrentIndex() and currentWidget().
Returns the widget at position index, or 0 if there is no widget at the given position.
See also currentWidget() and indexOf().
This signal is emitted when the widget at position index is removed from the layout.
See also removeWidget().
Copyright © 2005 Trolltech | Trademarks | Qt 4.0.0 |