Qtopia Home - Classes - Hierachy - Annotated - Functions - Licenses - Reference |
|
The QStatusBar class provides a horizontal bar suitable for presenting status information. More...
#include <qstatusbar.h>
Inherits QWidget.
The QStatusBar class provides a horizontal bar suitable for presenting status information.
Each status indicator falls into one of three categories:
QStatusBar lets you display all three types of indicator.
To display a temporary message, call message(), perhaps by connecting a suitable signal to it. To remove a temporary message, call clear(). There are two variants of message(), one which displays the message until the next clear() or mesage(), and one which also has a time limit:
connect( loader, SIGNAL(progressMessage(const QString&)),
statusBar(), SLOT(message(const QString&)) );
statusBar()->message("Loading..."); // Initial message
loader.loadStuff(); // Emits progress messages
statusBar()->message("Done.", 2000); // Final message for 2 seconds
Normal and permanent messages are displayed by creating a small widget then adding it to the status bar with addWidget(). Widgets like QLabel, QProgressBar, or even QToolButton are useful for adding to status bars. removeWidget() is used to remove widgets.
statusBar()->addWidget(new MyReadWriteIndication(statusBar()));
By default, QStatusBar provides a QSizeGrip in the lower-right corner. You can disable this with setSizeGripEnabled(FALSE);
See also QToolBar, QMainWindow, QLabel, and GUI Design Handbook: Status Bar..
See also setSizeGripEnabled().
widget is permanently visible if permanent is TRUE, and is obscured by temporary messages if permanent is FALSE. The default is FALSE.
stretch is used to compute a suitable size for widget as the status bar grows and shrinks. The default of 0 uses a minimum of space.
If permanent is TRUE, widget is located at the far right of the status bar. If permanent is FALSE (the default) widget is located just to the left of the first permanent widget.
This function may cause some flicker.
See also removeWidget().
See also message().
Returns whether the QSizeGrip in the bottom right of the status bar is enabled.
See also setSizeGripEnabled().
See also clear().
Reimplemented from QWidget.
This function may cause some flicker.
Note that widget is not deleted.
See also addWidget().
See also isSizeGripEnabled().
This file is part of the Qtopia platform, copyright © 1995-2005 Trolltech, all rights reserved.
| Copyright © 2005 Trolltech | Trademarks | Qtopia version 2.2.0
|