Deprecated.
NAME
Prima::StdDlg - [DEPRECATED] wrapper module to the toolkit standard dialogs
DESCRIPTION
This module is deprecated and is on the way out. Use standard dialogs by using individual modules in Prima::Dialog::
namespace.
Provides a unified access to the toolkit dialogs, so there is no need to use
the corresponding module explicitly.
SYNOPSIS
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;
API
The module accesses the following dialog classes:
- Prima::open_file
-
Invokes standard file open dialog and return the selected file(s). Uses system-specific standard file open dialog, if available.
- Prima::save_file
-
Invokes standard file save dialog and return the selected file(s). Uses system-specific standard file save dialog, if available.
- Prima::OpenDialog
-
File open dialog.
- Prima::SaveDialog
-
File save dialog.
- Prima::ChDirDialog
-
Directory change dialog.
- Prima::FontDialog
-
Font selection dialog.
See Prima::FontDialog.
- Prima::FindDialog
-
Generic 'find text' dialog.
See Prima::EditDialog.
- Prima::ReplaceDialog
-
Generic 'find and replace text' dialog.
See Prima::EditDialog.
- Prima::PrintDialog
-
Printer selection and setup dialog.
See Prima::PrintDialog.
- Prima::ColorDialog
-
Color selection dialog.
- Prima::ImageOpenDialog
-
Image file load dialog.
- Prima::ImageSaveDialog
-
Image file save dialog.
AUTHORS
Anton Berezin <tobez@plab.ku.dk>, Dmitry Karasik, <dmitry@karasik.eu.org>.