The QErrorMessage class provides an error message display dialog.
.PP
This is basically a QLabel and a "show this message again" checkbox which remembers what not to show.
.PP
There are two ways to use this class: <ol type=1>
.IP 1
For production applications. In this context the class can be used to display messages which you don't need the user to see more than once. To use QErrorMessage like this, you create the dialog in the usual way and call the message() slot, or connect signals to it.
For developers. In this context the static qtHandler() installs a message handler using qInstallMsgHandler() and creates a QErrorMessage that displays tqDebug(), tqWarning() and tqFatal() messages.
In both cases QErrorMessage will queue pending messages, and display them (or not) in order, as soon as the user presses Enter or clicks OK after seeing each message.
.PP
<center>
.ce 1
.B "[Image Omitted]"
.PP
</center>
.PP
See also QMessageBox, QStatusBar::message(), Dialog Classes, and Miscellaneous Classes.