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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cascadenod.tcl    1.4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cascadenod.tcl    1.4   07 Mar 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "parentnode.tcl"
  15.  
  16. Class CascadeNode : {ParentNode} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor CascadeNode {class this name specification} {
  22.     set this [ParentNode::constructor $class $this $name $specification]
  23.     # Start constructor user section
  24.     $this config -parentType {CascadeNode MenuBarNode} -icon cascade_16 \
  25.         -activeIcon cascade_16
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CascadeNode::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this ParentNode::destructor
  34. }
  35.  
  36. # Do not delete this line -- regeneration end marker
  37.  
  38.