NAME
Prima::MsgBox - standard message and input dialog boxes
DESCRIPTION
The module contains methods that start standard simple message dialogs
SYNOPSIS
use Prima qw(Application);
use Prima::MsgBox qw(input_box message);
my $text = input_box( 'Sample input box', 'Enter text:', '') // '(none)';
message( \ "You have entered: 'B<Q<< $text >>>'", mb::Ok);
API
- input_box TITLE, LABEL, INPUT_STRING, [ BUTTONS = mb::OkCancel, %PROFILES ]
-
Invokes a standard dialog box, that contains an input line, a text label, and buttons that end the dialog session. The dialog box uses the TITLE string to display as the window title, the LABEL text to draw next to the input line, and INPUT_STRING, which is the text present in the input box. Depending on the value of the BUTTONS integer parameter, which can be a combination of the
mb::XXX
constants, different combinations of push buttons can be displayed in the dialog.The PROFILE parameter is a hash, that contains customization parameters for the buttons and the input line. To access the input line parameters the
inputLine
hash key is used. See "Buttons and profiles" for more information on BUTTONS and PROFILES.Returns different results depending on the call context. In the array context returns two values: the result of
Prima::Dialog::execute
which is eithermb::Cancel
or one of themb::XXX
constants of the dialog buttons; and the text entered. The input text is not restored to its original value if the dialog is canceled. In the scalar context returns the text entered, if the dialog ended withmb::OK
ormb::Yes
result, orundef
otherwise. - message TEXT, [ OPTIONS = mb::Ok | mb::Error, %PROFILES ]
-
Same as the
message_box
call, with the application name passed as the title string. - message_box TITLE, TEXT, [ OPTIONS = mb::Ok | mb::Error, %PROFILES ]
-
Invokes the standard dialog box that contains a text label, a predefined icon, and buttons to end the dialog session. The dialog box uses the TITLE string to display as the window title, and the TEXT to display as the main message. The value of the OPTIONS integer parameter is combined from two different sets of
mb::XXX
constants. The first set is the button constantsmb::OK
,mb::Yes
, etc. See "Buttons and profiles" for the details. The second set consists of the following constants:mb::Error mb::Warning mb::Information mb::Question
While there can be several constants of the first set, only one constant from the second set can be selected. Depending on the message type constant, one of the predefined icons is displayed and one of the system sounds is played; if no message type constant is selected, no icon is displayed and no sound is emitted. In case no sound is desired, a special constant
mb::NoSound
can be used.The PROFILE parameter is a hash that contains customization parameters for the buttons. See "Buttons and profiles" for the details.
Returns the result of
Prima::Dialog::execute
which is eithermb::Cancel
or one ofmb::XXX
constants of the specified dialog buttons. - signal_dialog $TITLE, $ERROR, $STACK_TRACE
-
The standard minimalistic exception dialog shown by default when
Prima::Application.guiException
is 1 and an exception is thrown. Could be reused for other purposes, by supplying a title, error message, and stack trace. If the stack trace is not defined, the corresponding button is not shown.
Buttons and profiles
The message and input boxes provide several predefined buttons that correspond to the following mb::XXX
constants:
mb::OK
mb::Cancel
mb::Yes
mb::No
mb::Abort
mb::Retry
mb::Ignore
mb::Help
To provide more flexibility, the PROFILES hash parameter can be used. In this hash, the following predefined keys tell the dialog methods about certain customizations:
- defButton INTEGER
-
Selects the default button in the dialog, i.e. the button that reacts on the return key. Its value must be to an
mb::
constant of the desired button. If this option is not set, the leftmost button is selected as the default. - helpTopic TOPIC
-
Selects the help TOPIC invoked in the help viewer window if the
mb::Help
button is pressed by the user. If this option is not set, Prima is displayed. - inputLine HASH
-
Only for
input_box
.Contains the profile hash passed to the input line as creation parameters.
-
To modify a button, an integer key with the corresponding
mb::XXX
constant can be set with the hash reference under thebuttons
key. The hash is the profile passed to the button as creation parameters. For example, to change the text and behavior of a button, the following construct can be used:Prima::MsgBox::message( 'Hello', mb::OkCancel, buttons => { mb::Ok, { text => '~Hello', onClick => sub { Prima::message('Hello indeed!'); } } } );
If it is not desired that the dialog must be closed when the user presses a button, its
::modalResult
property ( see Prima::Buttons ) must be reset to 0. - owner WINDOW
-
If set, the dialog owner is set to WINDOW, otherwise to
$::main_window
. Necessary to maintain window stack order under some window managers, to disallow other windows to be brought over the message box. - wordWrap BOOLEAN=undef
-
message_box
can display the message in two modes. InwordWrap = 1
where the text is expected to be relatively short, plus or minus several lines, the user can resize the dialog if for some reason the text is too big. InwordWrap = 0
mode there is added a scroller, so that even if the text indeed is too big, even when the dialog is maximized.By default, the function analyzes the message text and decides which of the two modes is suited best. An explicit override is possible with this flag.
AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>.