home *** CD-ROM | disk | FTP | other *** search
-
- <HTML>
- <HEAD>
- <TITLE>Tk::DirTree - Create and manipulate DirTree widgets</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> Tk::DirTree - Create and manipulate DirTree widgets</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="#superclass">SUPER-CLASS</A></LI>
- <LI><A HREF="#standard options">STANDARD OPTIONS</A></LI>
- <LI><A HREF="#widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></LI>
- <LI><A HREF="#description">DESCRIPTION</A></LI>
- <LI><A HREF="#widget methods">WIDGET METHODS</A></LI>
- <LI><A HREF="#bindings">BINDINGS</A></LI>
- <LI><A HREF="#keywords">KEYWORDS</A></LI>
- <LI><A HREF="#see also">SEE ALSO</A></LI>
- <LI><A HREF="#author">AUTHOR</A></LI>
- </UL>
- <!-- INDEX END -->
-
- <HR>
- <P>
- <H1><A NAME="name">NAME</A></H1>
- <P>Tk::DirTree - Create and manipulate DirTree widgets</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> <STRONG>use Tk::DirTree;</STRONG></P>
- <P> <EM>$dirtree</EM> = <EM>$parent</EM>-><STRONG>DirTree</STRONG>(?<EM>options</EM>?);</P>
- <P>
- <HR>
- <H1><A NAME="superclass">SUPER-CLASS</A></H1>
- <P>The <STRONG>DirTree</STRONG> class is derived from the <A HREF="../../../site/lib/Tk/Tree.html">Tree</A> class and inherits
- all the methods, options and subwidgets of its super-class.</P>
- <P>
- <HR>
- <H1><A NAME="standard options">STANDARD OPTIONS</A></H1>
- <P><STRONG>Tree</STRONG> supports all the standard options of a Tree widget. See
- <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> for details on the standard options.</P>
- <P>
- <HR>
- <H1><A NAME="widgetspecific options">WIDGET-SPECIFIC OPTIONS</A></H1>
- <DL>
- <DT><STRONG><A NAME="item_Name%3A_browseCmd">Name: <STRONG>browseCmd</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_BrowseCmd">Class: <STRONG>BrowseCmd</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Dbrowsecmd">Switch: <STRONG>-browsecmd</STRONG></A></STRONG><BR>
- <DD>
- Specifies a <A HREF="../../../site/lib/Tk/callbacks.html">callback</A> to call whenever the user browses on a directory
- (usually by single-clicking on the name of the directory). The callback
- is called with one argument, the complete pathname of the directory.
- <P></P>
- <DT><STRONG><A NAME="item_Name%3A_command">Name: <STRONG>command</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_Command">Class: <STRONG>Command</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Dcommand">Switch: <STRONG>-command</STRONG></A></STRONG><BR>
- <DD>
- Specifies the <A HREF="../../../site/lib/Tk/callbacks.html">callback</A> to be called when the user activates on a directory
- (usually by double-clicking on the name of the directory). The callback
- is called with one argument, the complete pathname of the directory.
- <P></P>
- <DT><STRONG><A NAME="item_Name%3A_dircmd">Name: <STRONG>dircmd</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_DirCmd">Class: <STRONG>DirCmd</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Ddircmd">Switch: <STRONG>-dircmd</STRONG></A></STRONG><BR>
- <DD>
- Specifies the <A HREF="../../../site/lib/Tk/callbacks.html">callback</A> 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 <STRONG>-dircmd</STRONG>
- option can be used. The specified callback 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 callback returns a list of names of the sub-directories of
- this directory. For example:
- <PRE>
- sub read_dir {
- my( $dir, $showhidden ) = @_;
- return( qw/DOS NORTON WINDOWS/ ) if $dir eq "C:\\";
- return();
- }</PRE>
- <P></P>
- <DT><STRONG><A NAME="item_Name%3A_showHidden">Name: <STRONG>showHidden</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_ShowHidden">Class: <STRONG>ShowHidden</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Dshowhidden">Switch: <STRONG>-showhidden</STRONG></A></STRONG><BR>
- <DD>
- Specifies whether hidden directories should be shown. By default, a
- directory name starting with a period ``.'' is considered as a hidden
- directory. This rule can be overridden by supplying an alternative
- <STRONG>-dircmd</STRONG> option.
- <P></P>
- <DT><STRONG><A NAME="item_Name%3A_directory">Name: <STRONG>directory</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Class%3A_Directory">Class: <STRONG>Directory</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Switch%3A_%2Ddirectory">Switch: <STRONG>-directory</STRONG></A></STRONG><BR>
- <DD>
- <DT><STRONG><A NAME="item_Alias%3A_%2Dvalue">Alias: <STRONG>-value</STRONG></A></STRONG><BR>
- <DD>
- Specifies the name of the current directory to be displayed in the
- DirTree widget.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="description">DESCRIPTION</A></H1>
- <P>The <STRONG>DirTree</STRONG> constructor method creates a new window (given by the $dirtree
- 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.</P>
- <P>
- <HR>
- <H1><A NAME="widget methods">WIDGET METHODS</A></H1>
- <P>The <STRONG>DirTree</STRONG> method creates a widget object.
- This object supports the <STRONG>configure</STRONG> and <STRONG>cget</STRONG> methods
- described in <A HREF="../../../site/lib/Tk/options.html">the Tk::options manpage</A> which can be used to enquire and
- modify the options described above.
- The widget also inherits all the methods provided by the generic
- <A HREF="../../../site/lib/Tk/Widget.html">Tk::Widget</A> class.</P>
- <P>The following additional methods are available for DirTree widgets:</P>
- <DL>
- <DT><STRONG><A NAME="item_chdir"><EM>$dirtree</EM>-><STRONG>chdir</STRONG>(<EM>dir</EM>)</A></STRONG><BR>
- <DD>
- Change the current directory to <EM>dir</EM>.
- <P></P></DL>
- <P>
- <HR>
- <H1><A NAME="bindings">BINDINGS</A></H1>
- <P>The mouse and keyboard bindings of the DirTree widget are the same as
- the bindings of the <A HREF="../../../site/lib/Tk/Tree.html">Tree</A> widget.</P>
- <P>
- <HR>
- <H1><A NAME="keywords">KEYWORDS</A></H1>
- <P>directory, tree, tix</P>
- <P>
- <HR>
- <H1><A NAME="see also">SEE ALSO</A></H1>
- <P><A HREF="../../../site/lib/Tk/Tree.html">Tk::Tree</A>
- <A HREF="../../../site/lib/Tk/HList.html">Tk::HList</A></P>
- <P>
- <HR>
- <H1><A NAME="author">AUTHOR</A></H1>
- <P>Perl/TK version by Chris Dean <<A HREF="mailto:ctdean@cogit.com">ctdean@cogit.com</A>>. Original Tcl/Tix
- version by Ioi Kim Lam.</P>
- <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
- <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
- <STRONG><P CLASS=block> Tk::DirTree - Create and manipulate DirTree widgets</P></STRONG>
- </TD></TR>
- </TABLE>
-
- </BODY>
-
- </HTML>
-