tixDirList (n) - Linux Manuals
tixDirList: Create and manipulate tixDirList widgets
NAME
tixDirList - Create and manipulate tixDirList widgets
SYNOPSIS
tixDirList pathName ?options?SUPER-CLASS
The TixDirList class is derived from the TixScrolledHList class and inherits all the commands, options and subwidgets of its super-class.STANDARD OPTIONS
TixDirList 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 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 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 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 DirList 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} {
The tixDirList command creates a new window (given by the
pathName argument) and makes it into a DirList widget.
Additional options, described above, may be specified on the command
line or in the option database to configure aspects of the
DirList such as its cursor and relief.
The DirList 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.
The tixDirList command creates a new Tcl command whose name is
the same as the path name of the DirList's window. This
command may be used to invoke various operations on the widget. It has
the following general form:
When options are given, the widget command of the specified subwidget
will be called with these options.
The mouse and keyboard bindings of the DirList widget are the same as
the bindings of the HList widget.
Name: value
Class: Value
Switch: -value
Alias: -directory
SUBWIDGETS
Name: hlist
Class: TixHList
Name: hsb
Class: Scrollbar
Name: vsb
Class: Scrollbar
DESCRIPTION
WIDGET COMMANDS
PathName is the name of the command, which is the same as the
DirList widget's path name. Option and the args
determine the exact behavior of the command. The following commands
are possible for DirList widgets:
BINDINGS
KEYWORDS
Tix(n)