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 >
Wrap
Text File
|
1996-11-01
|
1KB
|
43 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1996
#
# File: @(#)checkbutto.tcl /main/titanic/1
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)checkbutto.tcl /main/titanic/1 1 Nov 1996 Copyright 1994 Westmount Technology
# 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