1Prima::StdDlg(3) User Contributed Perl Documentation Prima::StdDlg(3)
2
3
4
6 Prima::StdDlg - wrapper module to the toolkit standard dialogs
7
9 Provides a unified access to the toolkit dialogs, so there is no need
10 to "use" the corresponding module explicitly.
11
13 use Prima::StdDlg;
14
15 Prima::FileDialog-> create-> execute;
16 Prima::FontDialog-> create-> execute;
17
18 # open standard file open dialog
19 my $file = Prima::open_file;
20 print "You've selected: $file\n" if defined $file;
21
23 The module accesses the following dialog classes:
24
25 Prima::open_file
26 Invokes standard file open dialog and return the selected file(s).
27 Uses system-specific standard file open dialog, if available.
28
29 Prima::save_file
30 Invokes standard file save dialog and return the selected file(s).
31 Uses system-specific standard file save dialog, if available.
32
33 Prima::OpenDialog
34 File open dialog.
35
36 See "Prima::OpenDialog" in Prima::FileDialog
37
38 Prima::SaveDialog
39 File save dialog.
40
41 See "Prima::SaveDialog" in Prima::FileDialog
42
43 Prima::ChDirDialog
44 Directory change dialog.
45
46 See "Prima::ChDirDialog" in Prima::FileDialog
47
48 Prima::FontDialog
49 Font selection dialog.
50
51 See Prima::FontDialog.
52
53 Prima::FindDialog
54 Generic 'find text' dialog.
55
56 See Prima::EditDialog.
57
58 Prima::ReplaceDialog
59 Generic 'find and replace text' dialog.
60
61 See Prima::EditDialog.
62
63 Prima::PrintSetupDialog
64 Printer selection and setup dialog.
65
66 See Prima::PrintDialog.
67
68 Prima::ColorDialog
69 Color selection dialog.
70
71 See "Prima::ColorDialog" in Prima::ColorDialog.
72
73 Prima::ImageOpenDialog
74 Image file load dialog.
75
76 See "Prima::ImageOpenDialog" in Prima::ImageDialog.
77
78 Prima::ImageSaveDialog
79 Image file save dialog.
80
81 See "Prima::ImageSaveDialog" in Prima::ImageDialog.
82
84 Anton Berezin <tobez@plab.ku.dk>, Dmitry Karasik,
85 <dmitry@karasik.eu.org>.
86
88 Prima, Prima::Classes
89
90
91
92perl v5.30.0 2019-08-21 Prima::StdDlg(3)