home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / cstree.tcl < prev    next >
Text File  |  1996-10-04  |  1KB  |  52 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)cstree.tcl    /main/hindenburg/8
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cstree.tcl    /main/hindenburg/8   4 Oct 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require "csrootnode.tcl"
  13. # End user added include file section
  14.  
  15.  
  16. Class CSTree : {BrowsTree} {
  17.     constructor
  18.     method destructor
  19.     method update
  20.     attribute view
  21. }
  22.  
  23. constructor CSTree {class this name} {
  24.     set this [BrowsTree::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CSTree::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33. }
  34.  
  35. method CSTree::update {this {rebuild 1}} {
  36.     set selected [$this selected]
  37.  
  38.     if [lempty [$this rootSet]] {
  39.     CSRootNode new $this.root
  40.     }
  41.     $this.root update $rebuild
  42.  
  43.     if {[info commands $selected] != ""} {
  44.     $this selected $selected
  45.         $selected makeVisible
  46.         $selected display
  47.     }
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52.