home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>getSaveFile - pop up a dialog box for the user to select a file to open or save.</TITLE>
- <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
- <LINK REV="made" HREF="mailto:">
- </HEAD>
-
- <BODY>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> getSaveFile - pop up a dialog box for the user to select a file to open or save.</P></STRONG>
- </TD></TR>
- </TABLE>
-
- <A NAME="__index__"></A>
- <!-- INDEX BEGIN -->
-
- <UL>
-
- <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
-
- <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
- <LI><A HREF="#description">DESCRIPTION</A></LI>
- <LI><A HREF="#specifying file patterns">SPECIFYING FILE PATTERNS</A></LI>
- <LI><A HREF="#specifying extensions">SPECIFYING EXTENSIONS</A></LI>
- <LI><A HREF="#example">EXAMPLE</A></LI>
- <LI><A HREF="#see also">SEE ALSO</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>getOpenFile, getSaveFile - pop up a dialog box for the user to select a file to open or save.</P>
- <P>
- <HR>
- <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
- <UL>
- <LI>Linux</LI>
- <LI>Solaris</LI>
- <LI>Windows</LI>
- </UL>
- <HR>
- <H1><A NAME="synopsis">SYNOPSIS</A></H1>
- <P> <EM>$widget</EM>-><STRONG>getOpenFile</STRONG>(?<EM>-option</EM>=>value, ...>?)</P>
- <P> <EM>$widget</EM>-><STRONG>getSaveFile</STRONG>(?<EM>-option</EM>=>value, ...>?)</P>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The methods <STRONG>getOpenFile</STRONG> and <STRONG>getSaveFile</STRONG> pop up a
- dialog box for the user to select a file to open or save.</P>
- <P>The <STRONG>getOpenFile</STRONG> method is usually associated with the <STRONG>Open</STRONG>
- command in the <STRONG>File</STRONG> menu. Its purpose is for the user to select an
- existing file <EM>only</EM>. If the user enters an non-existent file, the
- dialog box gives the user an error prompt and requires the user to give
- an alternative selection. If an application allows the user to create
- new files, it should do so by providing a separate <STRONG>New</STRONG> menu command.</P>
- <P>The <STRONG>getSaveFile</STRONG> method is usually associated with the <STRONG>Save</STRONG>
- as command in the <STRONG>File</STRONG> menu. If the user enters a file that
- already exists, the dialog box prompts the user for confirmation
- whether the existing file should be overwritten or not.</P>
- <P>If the user selects a file, both <STRONG>getOpenFile</STRONG> and
- <STRONG>getSaveFile</STRONG> return the full pathname of this file. If the
- user cancels the operation, both commands return an undefined value.</P>
- <P>The following <EM>option-value</EM> pairs are possible as command line
- arguments to these two commands:</P>
- <DL>
- <DT><STRONG><A NAME="item_%2Ddefaultextension_%3D%3E_extension"><STRONG>-defaultextension</STRONG> => <EM>extension</EM></A></STRONG><BR>
- <DD>
- Specifies a string that will be appended to the filename if the user
- enters a filename without an extension. The default value is the empty
- string, which means no extension will be appended to the filename in
- any case. This option is ignored on the Macintosh platform, which
- does not require extensions to filenames.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dfiletypes_%3D%3E_%5BfilePattern_%3F%2C_%2E%2E%2"><STRONG>-filetypes</STRONG> => [<EM>filePattern</EM> ?, ...?]</A></STRONG><BR>
- <DD>
- If a <STRONG>File types</STRONG> listbox exists in the file dialog on the particular
- platform, this option gives the <EM>filetype</EM>s in this listbox. When
- the user choose a filetype in the listbox, only the files of that type
- are listed. If this option is unspecified, or if it is set to the
- empty list, or if the <STRONG>File types</STRONG> listbox is not supported by the
- particular platform then all files are listed regardless of their
- types. See <A HREF="#specifying file patterns">SPECIFYING FILE PATTERNS</A> below for a
- discussion on the contents of <EM>filePattern</EM>s.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dinitialdir_%3D%3E_directory"><STRONG>-initialdir</STRONG> => <EM>directory</EM></A></STRONG><BR>
- <DD>
- Specifies that the files in <EM>directory</EM> should be displayed
- when the dialog pops up. If this parameter is not specified, then
- the files in the current working directory are displayed. This
- option may not always work on the Macintosh. This is not a bug.
- Rather, the <EM>General Controls</EM> control panel on the Mac allows the
- end user to override the application default directory.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dinitialfile_%3D%3E_filename"><STRONG>-initialfile</STRONG> => <EM>filename</EM></A></STRONG><BR>
- <DD>
- Specifies a filename to be displayed in the dialog when it pops
- up. This option is ignored by the <STRONG>getOpenFile</STRONG> method.
- <P></P>
- <DT><STRONG><A NAME="item_%2Dtitle_%3D%3E_titleString"><STRONG>-title</STRONG> => <EM>titleString</EM></A></STRONG><BR>
- <DD>
- Specifies a string to display as the title of the dialog box. If this
- option is not specified, then a default title is displayed. This
- option is ignored on the Macintosh platform.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="specifying file patterns">SPECIFYING FILE PATTERNS</A></H1>
- <P>The <EM>filePattern</EM>s given by the <STRONG>-filetypes</STRONG> option
- are a list of file patterns. Each file pattern is a list of the
- form</P>
- <PRE>
- typeName [extension ?extension ...?] ?[macType ?macType ...?]?</PRE>
- <P><EM>typeName</EM> is the name of the file type described by this
- file pattern and is the text string that appears in the <STRONG>File types</STRONG>
- listbox. <EM>extension</EM> is a file extension for this file pattern.
- <EM>macType</EM> is a four-character Macintosh file type. The list of
- <EM>macType</EM>s is optional and may be omitted for applications that do
- not need to execute on the Macintosh platform.</P>
- <P>Several file patterns may have the same <EM>typeName,</EM> in which case
- they refer to the same file type and share the same entry in the
- listbox. When the user selects an entry in the listbox, all the files
- that match at least one of the file patterns corresponding
- to that entry are listed. Usually, each file pattern corresponds to a
- distinct type of file. The use of more than one file patterns for one
- type of file is necessary on the Macintosh platform only.</P>
- <P>On the Macintosh platform, a file matches a file pattern if its
- name matches at least one of the <EM>extension</EM>(s) AND it
- belongs to at least one of the <EM>macType</EM>(s) of the
- file pattern. For example, the <STRONG>C Source Files</STRONG> file pattern in the
- sample code matches with files that have a <STRONG>\.c</STRONG> extension AND
- belong to the <EM>macType</EM> <STRONG>TEXT</STRONG>. To use the OR rule instead,
- you can use two file patterns, one with the <EM>extensions</EM> only and
- the other with the <EM>macType</EM> only. The <STRONG>GIF Files</STRONG> file type
- in the sample code matches files that EITHER have a <STRONG>\.gif</STRONG>
- extension OR belong to the <EM>macType</EM> <STRONG>GIFF</STRONG>.</P>
- <P>On the Unix and Windows platforms, a file matches a file pattern
- if its name matches at at least one of the <EM>extension</EM>(s) of
- the file pattern. The <EM>macType</EM>s are ignored.</P>
- <P>
- <HR>
- <H1><A NAME="specifying extensions">SPECIFYING EXTENSIONS</A></H1>
- <P>On the Unix and Macintosh platforms, extensions are matched using
- glob-style pattern matching. On the Windows platforms, extensions are
- matched by the underlying operating system. The types of possible
- extensions are: (1) the special extension * matches any
- file; (2) the special extension ``'' matches any files that
- do not have an extension (i.e., the filename contains no full stop
- character); (3) any character string that does not contain any wild
- card characters (* and ?).</P>
- <P>Due to the different pattern matching rules on the various platforms,
- to ensure portability, wild card characters are not allowed in the
- extensions, except as in the special extension *. Extensions
- without a full stop character (e.g, ~) are allowed but may not
- work on all platforms.</P>
- <P>
- <HR>
- <H1><A NAME="example">EXAMPLE</A></H1>
- <PRE>
- my $types = [
- ['Text Files', ['.txt', '.text']],
- ['TCL Scripts', '.tcl' ],
- ['C Source Files', '.c', 'TEXT'],
- ['GIF Files', '.gif', ],
- ['GIF Files', '', 'GIFF'],
- ['All Files', '*', ],
- ];
- my $filename = $widget->getOpenFile(-filetypes=>$types);</PRE>
- <PRE>
- if ($filename ne "") {
- # Open the file ...
- }</PRE>
- <P>
- <HR>
- <H1><A NAME="see also">SEE ALSO</A></H1>
- <P><A HREF="../../../site/lib/Tk/FBox.html">Tk::FBox</A>, <A HREF="../../../site/lib/Tk/FileSelect.html">Tk::FileSelect</A></P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>file selection dialog</P>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> getSaveFile - pop up a dialog box for the user to select a file to open or save.</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-