home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1996
- #
- # File: @(#)checkbutto.tcl /main/hindenburg/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)checkbutto.tcl /main/hindenburg/1 24 Oct 1996 Copyright 1996 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "childnode.tcl"
-
- Class CheckButtonNode : {ChildNode} {
- constructor
- method destructor
- method open
- }
-
- constructor CheckButtonNode {class this name specification} {
- set this [ChildNode::constructor $class $this $name $specification]
- # Start constructor user section
- $this config -activated {%this open} -icon check_16 -activeIcon check_16
- # End constructor user section
- return $this
- }
-
- method CheckButtonNode::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this ChildNode::destructor
- }
-
- method CheckButtonNode::open {this} {
-
- ChildNode::open $this checkEntryDefiner
- }
-
- # Do not delete this line -- regeneration end marker
-
-