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 >
Wrap
Text File
|
1996-05-29
|
1KB
|
38 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1994
#
# File: @(#)cascadenod.tcl 1.4
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)cascadenod.tcl 1.4 07 Mar 1996 Copyright 1994 Westmount Technology
# Start user added include file section
# End user added include file section
require "parentnode.tcl"
Class CascadeNode : {ParentNode} {
constructor
method destructor
}
constructor CascadeNode {class this name specification} {
set this [ParentNode::constructor $class $this $name $specification]
# Start constructor user section
$this config -parentType {CascadeNode MenuBarNode} -icon cascade_16 \
-activeIcon cascade_16
# End constructor user section
return $this
}
method CascadeNode::destructor {this} {
# Start destructor user section
# End destructor user section
$this ParentNode::destructor
}
# Do not delete this line -- regeneration end marker