
Prima::StdDlg - wrapper module to the toolkit standard dialogs

Provides a unified access to the toolkit dialogs,
so there is no need to use the corresponding module explicitly.

use Prima::StdDlg;
Prima::FileDialog-> create-> execute;
Prima::FontDialog-> create-> execute;
# open standard file open dialog
my $file = Prima::open_file;
print "You've selected: $file\n" if defined $file;

The module accesses the following dialog classes:
Invokes standard file open dialog and return the selected file(s). Uses system-specific standard file open dialog, if available.
Invokes standard file save dialog and return the selected file(s). Uses system-specific standard file save dialog, if available.
File open dialog.
File save dialog.
Directory change dialog.
Font selection dialog.
See Prima::FontDialog.
Generic 'find text' dialog.
See Prima::EditDialog.
Generic 'find and replace text' dialog.
See Prima::EditDialog.
Printer selection and setup dialog.
See Prima::PrintDialog.
Color selection dialog.
Image file load dialog.
Image file save dialog.

Anton Berezin <tobez@plab.ku.dk>, Dmitry Karasik, <dmitry@karasik.eu.org>.
