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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)checkbutto.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)checkbutto.tcl    /main/titanic/1   1 Nov 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "childnode.tcl"
  15.  
  16. Class CheckButtonNode : {ChildNode} {
  17.     constructor
  18.     method destructor
  19.     method open
  20. }
  21.  
  22. constructor CheckButtonNode {class this name specification} {
  23.     set this [ChildNode::constructor $class $this $name $specification]
  24.     # Start constructor user section
  25.     $this config -activated {%this open} -icon check_16 -activeIcon check_16
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method CheckButtonNode::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this ChildNode::destructor
  34. }
  35.  
  36. method CheckButtonNode::open {this} {
  37.  
  38.     ChildNode::open $this checkEntryDefiner
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.