![]() |
![]()
| ![]() |
![]()
See the file man.macros. NAMEtixDirTree - Create and manipulate tixDirTree widgets SYNOPSIStixDirTree pathName ?options? SUPER-CLASSThe TixDirTree class is derived from the TixScrolledHList class and inherits all the commands, options and subwidgets of its super-class. STANDARD OPTIONSTixDirTree supports all the standard options of a frame widget. See the options(n) manual entry for details on the standard options. WIDGET-SPECIFIC OPTIONS[-browsecmd browseCmd]
Specifies a command to call whenever the user browses on a directory
(usually by single-clicking on the name of the directory). The command is
called with one argument, the complete pathname of the directory.
[-command command] Specifies the
command to be called when the user activates on a directory (usually by
double-clicking on the name of the directory). The command is called with
one argument, the complete pathname of the directory.
[-dircmd dircmd] Specifies the TCL
command to be called when a directory listing is needed for a particular
directory. If this option is not specified, by default the DirTree widget
will attempt to read the directory as a Unix directory. On special
occasions, the application programmer may want to supply a special method
for reading directories: for example, when he needs to list remote
directories. In this case, the -dircmd option can be used. The
specified command accepts two arguments: the first is the name of the
directory to be listed; the second is a Boolean value indicating whether
hidden sub-directories should be listed. This command returns a list of
names of the sub-directories of this directory. For example: proc read_dir
{dir show_hidden} {
Name: value Class: Value Switch: -value Alias: -directory
SUBWIDGETSName: hlist Class: TixHList
Name: hsb Class: Scrollbar
Name: vsb Class: Scrollbar
DESCRIPTIONThe tixDirTree command creates a new window (given by the pathName argument) and makes it into a DirTree widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the DirTree such as its cursor and relief. The DirTree widget displays a list view of a directory, its previous directories and its sub-directories. The user can choose one of the directories displayed in the list or change to another directory. WIDGET COMMANDSThe tixDirTree command creates a new Tcl command whose name is the same as the path name of the DirTree's window. This command may be used to invoke various operations on the widget. It has the following general form: pathName option ?arg arg ...?
PathName is the name of the command, which is the same as the DirTree
widget's path name. Option and the args determine the exact
behavior of the command. The following commands are possible for DirTree
widgets:
BINDINGSThe mouse and keyboard bindings of the DirTree widget are the same as the bindings of the HList widget. KEYWORDSTix(n)
|