Displays a brief message, an icon, and some buttons. More...
#include <qmessagebox.h>
Inherits QDialog.
A message box is a modal dialog that displays an icon, a text and up to three push buttons. It's used for simple messages and questions.
QMessageBox provides a range of different messages, arranged roughly along two axes: Severity and complexity.
Severity is
Information
- for message boxes that are part of normal operation,
Warning
- for message boxes that tell the user about errors
or ask the user how to fix an error, or
Critical
- as Warning, but for critical errors.
Complexity is one button (Ok, sometimes Dismiss for Motif applications) for a simple messages, or two or even three buttons for questions.
Here are some examples of how to use the static member functions. After these examples you will find an overview of the non-static member functions.
If a program is unable to find a supporting file, it may perhaps do:
QMessageBox::information( this, "Application name here", "Unable to find the file \"index.html\".\n" "The factory default will be used instead." );
The Microsoft Windows User Interface Guidelines strongly recommends using the application name as window caption. The message box has just one button, OK, and its text tells the user both what happened and what the program will do about it. Since the application is able to make do, the message box is just information, not a warning or a critical error.
Exiting a program is part of its normal operation, and if there are unsaved data the user probably should be asked what to do, for example like this:
switch( QMessageBox::information( this, "Application name here", "The document contains unsaved work\n" "Do you want to save it before exiting?", "&Save", "&Don't Save", "&Cancel", 0, // Enter == button 0 2 ) ) { // Escape == button 2 case 0: // Save clicked, Alt-S or Enter pressed. // save break; case 1: // Don't Save clicked or Alt-D pressed // don't save but exit break; case 2: // Cancel clicked, Alt-C or Escape pressed // don't exit break; }
Again, the application name is used as window caption, as Microsoft recommends. The Escape button cancels the entire Exit operation, and Enter/Return saves the document and exits.
warning() can be used to tell the user about unusual errors, or errors which can't be easily fixed:
switch( QMessageBox::warning( this, "Application name here", "Could not connect to the <mumble> server.\n" "This program can't function correctly " "without the server.\n\n", "Try again", "Quit", 0, 0, 1 ); case 0: // Try again or Enter // try again break; case 1: // Quit or Escape // exit break; }
Disk full errors are unusual (in a perfect world, they are) and they certainly can be hard to correct. This example uses predefined buttons instead of hardcoded button texts:
switch( QMessageBox::warning( this, "Application name here", "Could not save the the user preferences,\n" "because the disk is full. You can delete\n" "some files and press Retry, or you can\n" "abort the Save Preferences operation.", QMessageBox::Retry | QMessageBox::Default, QMessageBox::Abort | QMessageBox::Escape )) { case QMessageBox::Retry: // Retry or Enter // try again break; case QMessageBox::Abort: // Abort or Cancel // abort break; }
The critical() function should be reserved for critical errors. In this example, errorDetails is a QString or const char *, and QString is used to concatenate several strings:
QMessageBox::critical( 0, "Application name here", QString("An internal error occured. Please call ") + "technical support at 123456789 and report these\n"+ "numbers:\n\n" + errorDetails + "\n\n<Application> will now exit." );
QMessageBox provides a very simple About box, which displays an appropriate icon and the string you give it:
QMessageBox::about( this, "About <Application>", "<Application> is a <one-paragraph blurb>\n\n" "Copyright 1951-1997 Such-and-such. " "<License words here.>\n\n" "For technical support, call 123456789 or see\n" "http://www.such-and-such.com/Application/\n" );
See about() for more information.
Finally, you can make a QMessageBox from scratch and set custom button texts:
QMessageBox mb( "Application name here", "Saving the file will overwrite the old file on disk.\n" "Do you really want to save?", QMessageBox::Information, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No, QMessageBox::Cancel | QMessageBox::Escape ); mb.setButtonText( QMessageBox::Yes, "Save" ); mb.setButtonText( QMessageBox::No, "Don't Save" ); switch( mb.exec() ) { case QMessageBox::Yes: // save and exit break; case QMessageBox::No: // exit without saving break; case QMessageBox::Cancel: // don't save and don't exit break; }
QMessageBox defines two enum types, Icon and an unnamed button type.
Icon defines the Information, Warning
and Critical
icons for
each GUI style. It is used by the constructor, by the static member
functions information(), warning() and critical(), and there is a
function called standardIcon() which gives you access to the various
icons.
The button types are:
Ok
- the default for single-button message boxes
Cancel
- note that this is not automatically Escape
Yes
No
Abort
Retry
Ignore
Button types can be combined with two modifiers by using OR:
Default
- makes pressing Enter or Return be equivalent with
clicking this button. Normally used with Ok, Yes or similar.
Escape
- makes pressing Escape be equivalent with this button.
Normally used with Abort, Cancel or similar.
The text(), icon() and iconPixmap() functions provide access to the current text and pixmap of a message box, and setText(), setIcon() and setIconPixmap() lets you change it. The difference between setIcon() and setIconPixmap() is that the former accepts a QMessageBox::Icon and can it be used to set standard icons while the latter accepts a QPixmap and can be used to set custom icons.
setButtonText() and buttonText() provide access to the buttons.
QMessageBox has no signals or slots.
See also: QDialog, Isys on error messages, and GUI Design Handbook: Message Box.
Examples: showimg/showimg.cpp
Constructs a message box with no text and a button with the text "OK".
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
The parent and name arguments are passed to the QDialog constructor.
Constructs a message box with a caption, a text, an icon and up to three buttons.
The icon must be one of:
QMessageBox::NoIcon
QMessageBox::Information
QMessageBox::Warning
QMessageBox::Critical
Each button can have one of the following values:
QMessageBox::Ok
QMessageBox::Cancel
QMessageBox::Yes
QMessageBox::No
QMessageBox::Abort
QMessageBox::Retry
QMessageBox::Ignore
One of the buttons can be combined with the QMessageBox::Default
flag
to make a default button.
One of the buttons can be combined with the QMessageBox::Escape
flag
to make an escape option. Hitting the Esc key on the keyboard has
the same effect as clicking this button with the mouse.
Example:
QMessageBox mb( "Hardware failure", "Disk error detected\nDo you want to stop?", QMessageBox::NoIcon, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape ); if ( mb.exec() == QMessageBox::No ) // try again
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
If modal is TRUE the message becomes modal, otherwise it becomes modeless.
The parent, name, modal and f arguments are passed to the QDialog constructor.
See also: setCaption(), setText() and setIcon().
Destroys the message box.
[static]
Displays a simple about box with window caption caption and body text text.
about() looks for a suitable icon for the box in four locations:
The about box has a single button labelled OK.
See also: QWidget::icon() and QApplication::mainWidget().
Examples: menu/menu.cpp
[static]
Displays a simple message box about Qt, with window caption caption and optionally centered over parent.
This is neat for inclusion into the Help menu. See the menu.cpp example.
Examples: trivial/trivial.cpp menu/menu.cpp
[virtual]
Adjusts the size of the message box to fit the contents just before QDialog::exec() or QDialog::show() is called.
This function will not be called if the message box has been explicitly resized before showing it.
Reimplemented from QWidget.
Returns the text of the message box button button, or null if the message box does not contain the button.
Example:
QMessageBox mb( QMessageBox::Ok, QMessageBox::Cancel, 0 ); mb.buttonText( QMessageBox::Cancel ); // returns "Cancel" mb.buttonText( QMessageBox::Ignore ); // returns 0
See also: setButtonText().
[static]
Displays a critical error message box with a caption, a text and 1-3 buttons. Returns the number of the button that was clicked (0, 1 or 2).
button0Text is the text of the first button and must be present, button1Text is the text of the second button and is optional, and button2Text is the text of the third button and is optional. defaultbuttonNumber (0-2) is the index of the default button; pressing Return or Enter is the same as clicking the default button. It defaults to 0 (the first button). escapeButtonNumber is the index of the Escape button; pressing Escape is the same as clicking this button. It defaults to -1 (pressing Escape does nothing); supply 0, 1 or 2 to make pressing Escape be equivalent with clicking the relevant button.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: information() and warning().
[static]
Opens a critical message box with a caption, a text and up to three buttons. Returns the identifier of the button that was clicked.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: information() and warning().
Returns the icon of the message box.
The return value is one of the following:
QMessageBox::NoIcon
QMessageBox::Information
QMessageBox::Warning
QMessageBox::Critical
See also: setIcon() and iconPixmap().
Returns the icon pixmap of the message box.
Example:
QMessageBox mb(...); mb.setIcon( QMessageBox::Warning ); mb.iconPixmap(); // returns the warning icon pixmap
See also: setIconPixmap() and icon().
[static]
Displays an information message box with a caption, a text and 1-3 buttons. Returns the number of the button that was clicked (0, 1 or 2).
button0Text is the text of the first button and must be present, button1Text is the text of the second button and is optional, and button2Text is the text of the third button and is optional. defaultbuttonNumber (0-2) is the index of the default button; pressing Return or Enter is the same as clicking the default button. It defaults to 0 (the first button). escapeButtonNumber is the index of the Escape button; pressing Escape is the same as clicking this button. It defaults to -1 (pressing Escape does nothing); supply 0, 1 or 2 to make pressing Escape be equivalent with clicking the relevant button.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: warning() and critical().
[static]
Opens an information message box with a caption, a text and up to three buttons. Returns the identifier of the button that was clicked.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: warning() and critical().
Examples: picture/picture.cpp widgets/widgets.cpp
[virtual protected]
Handles key press events for the message box.
Reimplemented from QWidget.
[virtual protected]
Handles resize events for the message box.
Reimplemented from QWidget.
Sets the text of the message box button button to text. Setting the text of a button that is not in the message box is quietly ignored.
Example:
QMessageBox mb( QMessageBox::Ok, QMessageBox::Cancel, 0 ); mb.setButtonText( QMessageBox::Ok, "All Right" ); mb.setButtonText( QMessageBox::Yes, "Yo" ); // ignored
See also: buttonText().
Sets the icon of the message box to icon, which is a predefined icon:
QMessageBox::NoIcon
QMessageBox::Information
QMessageBox::Warning
QMessageBox::Critical
The actual pixmap used for displaying the icon depends on the current GUI style. You can also set a custom pixmap icon using the setIconPixmap() function.
See also: icon(), setIconPixmap() and iconPixmap().
Sets the icon of the message box to a custom pixmap. Note that it's often hard to draw one pixmap which looks appropriate in both Motif and Windoes GUI styles. You may want to draw two.
See also: iconPixmap() and setIcon().
[virtual]
Reimplemented for implementational reasons.
Reimplemented from QWidget.
Sets the message box text to be displayed.
See also: text().
[static]
Returns the pixmap used for a standard icon. This allows the pixmaps to be used in more complex message boxes.
Returns the message box text currently set, or null if no text has been set.
See also: setText().
[static]
Displays a warning message box with a caption, a text and 1-3 buttons. Returns the number of the button that was clicked (0, 1 or 2).
button0Text is the text of the first button and must be present, button1Text is the text of the second button and is optional, and button2Text is the text of the third button and is optional. defaultbuttonNumber (0-2) is the index of the default button; pressing Return or Enter is the same as clicking the default button. It defaults to 0 (the first button). escapeButtonNumber is the index of the Escape button; pressing Escape is the same as clicking this button. It defaults to -1 (pressing Escape does nothing); supply 0, 1 or 2 to make pressing Escape be equivalent with clicking the relevant button.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: information() and critical().
[static]
Opens a warning message box with a caption, a text and up to three buttons. Returns the identifier of the button that was clicked.
If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent.
See also: information() and critical().
Examples: showimg/showimg.cpp
Search the documentation, FAQ, qt-interest archive and more (uses
www.troll.no):
This file is part of the Qt toolkit, copyright © 1995-98 Troll Tech, all rights reserved.
It was generated from the following files:
Copyright © 1998 Troll Tech | Trademarks | Qt version 1.42
|