1tixExFileSelectDialog(n) Tix Built-In Commands tixExFileSelectDialog(n)
2
3
4
6 tixExFileSelectDialog - Create and manipulate tixExFileSelectDialog
7 widgets
8
10 tixExFileSelectDialog pathName ?options?
11
13 The TixExFileSelectDialog class does not have a super-class.
14
16 TixExFileSelectDialog supports all the standard options of a frame wid‐
17 get. See the options(n) manual entry for details on the standard
18 options.
19
21 [-command command] Specifies the command to be called when the user
22 chooses on a filename (usually by selecting the filename and clicking
23 on the "OK" button"). The command is called with one argument, the
24 complete pathname of the file.
25
27 Name: fsbox
28 Class: TixExFileSelectBox
29
30 The ExFileSelectBox subwidget embedded inside the ExFileSelect‐
31 Dialog.
32
34 The tixExFileSelectDialog command creates a new window (given by the
35 pathName argument) and makes it into a ExFileSelectDialog widget. Addi‐
36 tional options, described above, may be specified on the command line
37 or in the option database to configure aspects of the ExFileSelectDia‐
38 log such as its cursor and relief.
39
40 The ExFileSelectDialog widget provides an convenient method for the
41 user to select files. The style of the ExFileSelectDialog widget is
42 very similar to the standard file dialog in MS Windows 3.1.
43
45 The tixExFileSelectDialog command creates a new Tcl command whose name
46 is the same as the path name of the ExFileSelectDialog's window. This
47 command may be used to invoke various operations on the widget. It has
48 the following general form:
49 pathName option ?arg arg ...?
50 PathName is the name of the command, which is the same as the ExFileSe‐
51 lectDialog widget's path name. Option and the args determine the exact
52 behavior of the command. The following commands are possible for
53 ExFileSelectDialog widgets:
54
55 pathName cget option
56 Returns the current value of the configuration option given by
57 option. Option may have any of the values accepted by the tixEx‐
58 FileSelectDialog command.
59
60 pathName configure ?option? ?value option value ...?
61 Query or modify the configuration options of the widget. If no
62 option is specified, returns a list describing all of the avail‐
63 able options for pathName (see Tk_ConfigureInfo for information
64 on the format of this list). If option is specified with no
65 value, then the command returns a list describing the one named
66 option (this list will be identical to the corresponding sublist
67 of the value returned if no option is specified). If one or
68 more option-value pairs are specified, then the command modifies
69 the given widget option(s) to have the given value(s); in this
70 case the command returns an empty string. Option may have any
71 of the values accepted by the tixExFileSelectDialog command.
72
73 pathName popdown
74 Withdraws the ExFileSelectDialog from the screen.
75
76 pathName popup
77 Pops up the ExFileSelectDialog on the screen.
78
79 pathName subwidget name ?args?
80 When no options are given, this command returns the pathname of
81 the subwidget of the specified name.
82
83 When options are given, the widget command of the specified sub‐
84 widget will be called with these options.
85
87 Tix(n)
88
89
90
91
92
93
94Tix 4.0 tixExFileSelectDialog(n)