currentIndex()
setCurrentIndex()
Signal currentChanged()
Appends the given widget
to the QStackedWidget
and returns the index position. Ownership of widget
is passed on to the QStackedWidget
.
If the QStackedWidget
is empty before this function is called, widget
becomes the current widget.
See also
insertWidget()
removeWidget()
setCurrentWidget()
This signal is emitted whenever the current widget changes.
The parameter holds the index
of the new current widget, or -1 if there isn’t a new one (for example, if there are no widgets in the QStackedWidget
).
See also
currentWidget()
setCurrentWidget()
Notification signal of property currentIndexᅟ
.
currentIndex()
- Return type:
See also
setCurrentIndex()
Getter of property currentIndexᅟ
.
currentWidget()
- Return type:
QWidget
Returns the index of the given widget
, or -1 if the given widget
is not a child of the QStackedWidget
.
See also
currentIndex()
widget()
Inserts the given widget
at the given index
in the QStackedWidget
. Ownership of widget
is passed on to the QStackedWidget
. If index
is out of range, the widget
is appended (in which case it is the actual index of the widget
that is returned).
If the QStackedWidget
was empty before this function is called, the given widget
becomes the current widget.
Inserting a new widget at an index less than or equal to the current index will increment the current index, but keep the current widget.
See also
addWidget()
removeWidget()
setCurrentWidget()
Removes widget
from the QStackedWidget
. i.e., widget
is not deleted but simply removed from the stacked layout, causing it to be hidden.
Parent object and parent widget of widget
will remain the QStackedWidget
. If the application wants to reuse the removed widget
, then it is recommended to re-parent it.
See also
addWidget()
insertWidget()
currentWidget()
Sets the current widget to be the specified widget
. The new current widget must already be contained in this stacked widget.
See also
currentWidget()
setCurrentIndex()
This signal is emitted whenever a widget is removed. The widget’s index
is passed as parameter.
See also
removeWidget()
Made with Sphinx and @pradyunsg's
QStackedWidget.currentChanged()
QStackedWidget.currentIndex()
QStackedWidget.currentWidget()
QStackedWidget.indexOf()
QStackedWidget.insertWidget()
QStackedWidget.removeWidget()
QStackedWidget.setCurrentIndex()
QStackedWidget.setCurrentWidget()
QStackedWidget.widget()
QStackedWidget.widgetRemoved()