1 |
578 |
markom |
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
<TITLE>tixExFileSelectDialog - Create and manipulate tixExFileSelectDialog widgets</TITLE>
|
5 |
|
|
<Center><H2>tixExFileSelectDialog - Create and manipulate tixExFileSelectDialog widgets</H2></Center><hr>
|
6 |
|
|
|
7 |
|
|
</pre><H3>SYNOPSIS</H3>
|
8 |
|
|
<B>tixExFileSelectDialog<I> <I>pathName ?<I>options</I></B>?
|
9 |
|
|
<P>
|
10 |
|
|
</pre><H3>SUPER-CLASS</H3>
|
11 |
|
|
The <B>TixExFileSelectDialog</B></I> class does not have a super-class.
|
12 |
|
|
</pre><H3>STANDARD OPTIONS</H3>
|
13 |
|
|
<B>TixExFileSelectDialog</B></I> supports all the standard options of a frame
|
14 |
|
|
widget. See the <B>options(n)</B></I> manual entry for details on the
|
15 |
|
|
standard options.
|
16 |
|
|
</pre><H3>WIDGET-SPECIFIC OPTIONS</H3>
|
17 |
|
|
<P>
|
18 |
|
|
<pre><code><code><code>
|
19 |
|
|
Name: <B>command</B></I>
|
20 |
|
|
Class: <B>Command</B></I>
|
21 |
|
|
Switch: <B>-command</B></I>
|
22 |
|
|
</code></code></code></pre>
|
23 |
|
|
<UL>
|
24 |
|
|
Specifies the command to be called when the user chooses on a filename
|
25 |
|
|
(usually by selecting the filename and clicking on the "OK" button").
|
26 |
|
|
The command is called with one argument, the complete pathname of the
|
27 |
|
|
file.
|
28 |
|
|
</UL>
|
29 |
|
|
</pre><H3>SUBWIDGETS</H3>
|
30 |
|
|
<P>
|
31 |
|
|
<pre><code><code><code>
|
32 |
|
|
Name: <B>fsbox</B></I>
|
33 |
|
|
Class: <B>TixExFileSelectBox</B></I>
|
34 |
|
|
</code></code></code></pre>
|
35 |
|
|
<UL>
|
36 |
|
|
The ExFileSelectBox subwidget embedded inside the ExFileSelectDialog.
|
37 |
|
|
</UL>
|
38 |
|
|
</pre><HR>
|
39 |
|
|
</pre><H3>DESCRIPTION</H3>
|
40 |
|
|
<P>
|
41 |
|
|
The <B>tixExFileSelectDialog</B></I> command creates a new window (given by
|
42 |
|
|
the <I>pathName</I></B> argument) and makes it into a ExFileSelectDialog
|
43 |
|
|
widget. Additional options, described above, may be specified on the
|
44 |
|
|
command line or in the option database to configure aspects of the
|
45 |
|
|
ExFileSelectDialog such as its cursor and relief.
|
46 |
|
|
|
47 |
|
|
The ExFileSelectDialog widget provides an convenient method for the
|
48 |
|
|
user to select files. The style of the ExFileSelectDialog widget is
|
49 |
|
|
very similar to the standard file dialog in MS Windows 3.1.
|
50 |
|
|
</pre><H3>WIDGET COMMANDS</H3>
|
51 |
|
|
<P>
|
52 |
|
|
The <B>tixExFileSelectDialog</B></I> command creates a new Tcl command whose
|
53 |
|
|
window. This command may be used to invoke various operations on the
|
54 |
|
|
widget. It has the following general form:
|
55 |
|
|
<pre>
|
56 |
|
|
<I>pathName option </I></B>?<I>arg arg ...</I></B>?
|
57 |
|
|
<P>
|
58 |
|
|
</pre>
|
59 |
|
|
<I>PathName</I></B> is the name of the command, which is the same as the
|
60 |
|
|
<I>arg</I></B>s determine the exact behavior of the command. The following
|
61 |
|
|
commands are possible for ExFileSelectDialog widgets:
|
62 |
|
|
<DL>
|
63 |
|
|
<DT> <I>pathName <B>cget</B></I> <I>option</I></B>
|
64 |
|
|
</I></B>
|
65 |
|
|
<DD> Returns the current value of the configuration option given by
|
66 |
|
|
<I>option</I></B>. <I>Option</I></B> may have any of the values accepted by the
|
67 |
|
|
<B>tixExFileSelectDialog</B></I> command.
|
68 |
|
|
</DL>
|
69 |
|
|
<DL>
|
70 |
|
|
<DT> <I>pathName <B>configure</B></I> ?<I>option</I></B>? <I>?value option value ...</I></B>?
|
71 |
|
|
</I></B>
|
72 |
|
|
<DD> Query or modify the configuration options of the widget. If no
|
73 |
|
|
<I>option</I></B> is specified, returns a list describing all of the
|
74 |
|
|
available options for <I>pathName</I></B> (see <B>Tk_ConfigureInfo</B></I> for
|
75 |
|
|
information on the format of this list). If <I>option</I></B> is specified
|
76 |
|
|
with no <I>value</I></B>, then the command returns a list describing the
|
77 |
|
|
one named option (this list will be identical to the corresponding
|
78 |
|
|
sublist of the value returned if no <I>option</I></B> is specified). If
|
79 |
|
|
one or more <I>option-value</I></B> pairs are specified, then the command
|
80 |
|
|
modifies the given widget option(s) to have the given value(s); in
|
81 |
|
|
this case the command returns an empty string. <I>Option</I></B> may have
|
82 |
|
|
any of the values accepted by the <B>tixExFileSelectDialog</B></I> command.
|
83 |
|
|
</DL>
|
84 |
|
|
<DL>
|
85 |
|
|
<DT> <I>pathName <B>popdown</B></I>
|
86 |
|
|
</I></B>
|
87 |
|
|
<DD> Withdraws the ExFileSelectDialog from the screen.
|
88 |
|
|
</DL>
|
89 |
|
|
<DL>
|
90 |
|
|
<DT> <I>pathName <B>popup</B></I>
|
91 |
|
|
</I></B>
|
92 |
|
|
<DD> Pops up the ExFileSelectDialog on the screen.
|
93 |
|
|
</DL>
|
94 |
|
|
<DL>
|
95 |
|
|
<DT> <I>pathName <B>subwidget <I>name ?args?</I></B>
|
96 |
|
|
</I></B>
|
97 |
|
|
<DD> When no options are given, this command returns the pathname of the
|
98 |
|
|
subwidget of the specified name.
|
99 |
|
|
|
100 |
|
|
When options are given, the widget command of the specified subwidget
|
101 |
|
|
will be called with these options.
|
102 |
|
|
</DL>
|
103 |
|
|
</pre><H3>KEYWORDS</H3>
|
104 |
|
|
Tix(n)
|
105 |
|
|
<hr><i>Last modified Sun Jan 19 22:34:23 EST 1997 </i> ---
|
106 |
|
|
<i>Serial 853731298</i>
|