=head1 NAME Tk::messageBox - pop up a message window and wait for user response. =for category Popups and Dialogs =head1 SYNOPSIS S< >I<$response> = I<$widget>-EB(I<-option> =E I, ... ); =head1 DESCRIPTION This method uses L to quickly create several common dialog boxes. A dialog widget consists of a message, an icon and a set of buttons (see the I<-type> option). After the message window is popped up, B waits for the user to select one of the buttons and return the button text (note that it's best to check the returned value in a case insensitive manner). NOTE: unlike B which creates its widget once and can be used many times, the B window is created every time it's used. The following option/value pairs are supported: =over 4 =item B<-default> The case-sensitive symbolic name of the default button for this message window ('Ok', 'Cancel' and so on). See B<-type> for a list of the symbolic names. If the message box has just one button it will automatically be made the default, otherwise if this option is not specified, there won't be any default button. =item B<-icon> Specifies an icon to display. On X11 any of the builtin Tk bitmaps can specified. On Windows only B, B, B or B are supported. =item B<-message> Specifies the message to display. =item B<-title> Specifies a string to display as the title. =item B<-type> Specifies a predefined set of buttons to be displayed. The following values are possible: 'AbortRetryIgnore', 'Ok', 'OkCancel', 'RetryCancel', 'YesNo' or 'YesNoCancel'. =back =head1 EXAMPLE I<$response> = I<$mw>-EB(-icon =E 'question', -message =E 'Hello World!', -title =E 'My title', -type =E 'AbortRetryIgnore', -default =E 'Retry'); =head1 AUTHOR Stephen.O.Lidie@Lehigh.EDU. 98/05/25 =cut