Classes - Annotated - Tree - Functions - Home - Structure

QWidgetStack Class Reference

The QWidgetStack class provides a stack of widgets in which the user can see only the top widget. More...

#include <qwidgetstack.h>

Inherits QFrame.

List of all member functions.

Public Members

Public Slots

Signals

Protected Members


Detailed Description

The QWidgetStack class provides a stack of widgets in which the user can see only the top widget.

The application programmer can move any widget to the top of the stack at any time using the slot raiseWidget(), and add or remove widgets using addWidget() and removeWidget().

visibleWidget() is the get equivalent of raiseWidget(); it returns a pointer to the widget that is currently on the top of the stack.

QWidgetStack also provides the ability to manipulate widgets through application-specified integer ids. You can also translate from widget pointers to ids using id() and from ids to widget pointers using widget(). These numeric ids are unique (in each QWidgetStack, not globally) and cannot be -1, but QWidgetStack does not attach any additional meaning to them.

The default widget stack is frameless, but you can use the usual QFrame functions (such as setFrameStyle()) to add a frame.

Finally, QWidgetStack provides a signal, aboutToShow(), which is emitted just before a managed widget is shown.

See also QTabDialog, QTabBar, QFrame and Organizers.


Member Function Documentation

QWidgetStack::QWidgetStack ( QWidget * parent = 0, const char * name = 0 )

Constructs an empty widget stack with parent parent and called name.

QWidgetStack::~QWidgetStack ()

Destroys the object and frees any allocated resources.

void QWidgetStack::aboutToShow ( int ) [signal]

This signal is emitted just before a managed widget is shown if that managed widget has a non-zero id. The argument is the numeric id of the widget.

void QWidgetStack::aboutToShow ( QWidget * ) [signal]

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

This signal is emitted just before a managed widget is shown. The argument is a pointer to the widget.

void QWidgetStack::addWidget ( QWidget * w, int id )

Adds w to this stack of widgets, with id id.

If w is not a child of this, QWidgetStack moves it using reparent().

Example: xform/xform.cpp.

int QWidgetStack::id ( QWidget * widget ) const

Returns the id of the widget. If widget is 0 or is not being managed by this widget stack, this function returns -1.

See also widget() and addWidget().

void QWidgetStack::raiseWidget ( int id ) [slot]

Raises id to the top of the widget stack.

See also visibleWidget().

Example: xform/xform.cpp.

void QWidgetStack::raiseWidget ( QWidget * w ) [slot]

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

Raises w to the top of the widget stack.

void QWidgetStack::removeWidget ( QWidget * w )

Removes w from this stack of widgets. Does not delete w. If w is the currently visible widget, no other widget is substituted.

See also visibleWidget() and raiseWidget().

void QWidgetStack::setChildGeometries () [virtual protected]

Fixes up the children's geometries.

QWidget * QWidgetStack::visibleWidget () const

Returns a pointer to the currently visible widget (the one on the top of the stack), or 0 if nothing is currently being shown.

See also aboutToShow(), id() and raiseWidget().

QWidget * QWidgetStack::widget ( int id ) const

Returns a pointer to the widget with id id. If this widget stack does not manage a widget with id id, this function returns 0.

See also id() and addWidget().


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


This file is part of the Qt toolkit, copyright © 1995-2001 Trolltech, all rights reserved.


Copyright © 2001 TrolltechTrademarks
Qt version 3.0.0-beta3