home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / helptocnod.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  48 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)helptocnod.tcl    1.3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)helptocnod.tcl    1.3   29 Jun 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class HelpTocNode : {BrowsNode} {
  16.     constructor
  17.     method destructor
  18.     method gotoReference
  19.     attribute reference
  20. }
  21.  
  22. constructor HelpTocNode {class this name} {
  23.     set this [BrowsNode::constructor $class $this $name]
  24.     # Start constructor user section
  25.  
  26.     $this activated {%this gotoReference}
  27.  
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method HelpTocNode::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35. }
  36.  
  37. method HelpTocNode::gotoReference {this} {
  38.     set ref [$this reference]
  39.     set tool [[$this tree] tool]
  40.     if {[string range $ref 0 0] != "/"} {
  41.         set ref [$tool root]/$ref
  42.     }
  43.     $tool gotoURL $ref
  44. }
  45.  
  46. # Do not delete this line -- regeneration end marker
  47.  
  48.