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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)radiobutto.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)radiobutto.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 RadioButtonNode : {ChildNode} {
  17.     constructor
  18.     method destructor
  19.     method open
  20.     attribute arbiter
  21. }
  22.  
  23. constructor RadioButtonNode {class this name specification} {
  24.     set this [ChildNode::constructor $class $this $name $specification]
  25.     # Start constructor user section
  26.     $this config -activated {%this open} -icon radio_16 -activeIcon radio_16
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method RadioButtonNode::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this ChildNode::destructor
  35. }
  36.  
  37. method RadioButtonNode::open {this} {
  38.     ChildNode::open $this radioEntryDefiner
  39. }
  40.  
  41. # Do not delete this line -- regeneration end marker
  42.  
  43.