Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

prima::stddlg(3) [debian man page]

Prima::StdDlg(3)					User Contributed Perl Documentation					  Prima::StdDlg(3)

NAME
Prima::StdDlg - wrapper module to the toolkit standard dialogs DESCRIPTION
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 " 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. See "Prima::OpenDialog" in Prima::FileDialog Prima::SaveDialog File save dialog. See "Prima::SaveDialog" in Prima::FileDialog Prima::ChDirDialog Directory change dialog. See "Prima::ChDirDialog" in Prima::FileDialog 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::PrintSetupDialog Printer selection and setup dialog. See Prima::PrintDialog. Prima::ColorDialog Color selection dialog. See "Prima::ColorDialog" in Prima::ColorDialog. Prima::ImageOpenDialog Image file load dialog. See "Prima::ImageOpenDialog" in Prima::ImageDialog. Prima::ImageSaveDialog Image file save dialog. See "Prima::ImageSaveDialog" in Prima::ImageDialog. AUTHORS
Anton Berezin <tobez@plab.ku.dk>, Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::Classes perl v5.14.2 2009-02-24 Prima::StdDlg(3)

Check Out this Related Man Page

Prima::ScrollWidget(3)					User Contributed Perl Documentation				    Prima::ScrollWidget(3)

NAME
Prima::ScrollWidget - scrollable generic document widget. DESCRIPTION
"Prima::ScrollWidget" is a simple class that declares two pairs of properties, delta and limit for vertical and horizontal axes, which define a a virtual document. limit is the document dimension, and delta is the current offset. "Prima::ScrollWidget" is a descendant of "Prima::GroupScroller", and, as well as its ascendant, provides same user navigation by two scrollbars. The scrollbars' "partial" and "whole" properties are maintained if the document or widget extensions change. API
Properties deltas X, Y Selects horizontal and vertical document offsets. deltaX INTEGER Selects horizontal document offset. deltaY INTEGER Selects vertical document offset. limits X, Y Selects horizontal and vertical document extensions. limitX INTEGER Selects horizontal document extension. limitY INTEGER Selects vertical document extension. Events Scroll DX, DY Called whenever the client area is to be scrolled. The default action calls "Widget::scroll" . AUTHOR
Dmitry Karasik, <dmitry@karasik.eu.org>. SEE ALSO
Prima, Prima::ImageViewer, Prima::IntUtils, Prima::ScrollBar, examples/e.pl. perl v5.14.2 2009-02-24 Prima::ScrollWidget(3)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

dialog output

is there a way to make dialog output chosen values to standard stream? or append to a file? thx (2 Replies)
Discussion started by: dhinge
2 Replies

2. Shell Programming and Scripting

html problem: get file name dialog exists?

Hello, I wonder whether if we have a open file dialog as (in gtk+) in html. I know that a submit-type form (such as <input value="Add File" type="submit">) opens such dialog, but it -naturally- tries to submit the file chosen. I only want to find out the file name, not upload it. Thanks! (0 Replies)
Discussion started by: f33ldead
0 Replies