home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
menubarnod.tcl
< prev
next >
Wrap
Text File
|
1996-05-29
|
1KB
|
45 lines
#---------------------------------------------------------------------------
#
# (c) Westmount Technology 1994
#
# File: @(#)menubarnod.tcl 1.3
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)menubarnod.tcl 1.3 07 Mar 1996 Copyright 1994 Westmount Technology
# Start user added include file section
# End user added include file section
require "parentnode.tcl"
Class MenuBarNode : {ParentNode} {
constructor
method destructor
method check
}
constructor MenuBarNode {class this name specification} {
set this [ParentNode::constructor $class $this $name $specification]
# Start constructor user section
$this config -icon menu_16 -activeIcon menu_16 -parentType {}
# End constructor user section
return $this
}
method MenuBarNode::destructor {this} {
# Start destructor user section
# End destructor user section
$this ParentNode::destructor
}
method MenuBarNode::check {this newScope newVisible newSpecLevel newParent} {
# MenuBarNodes are always on the highest level,
# so no need to check if parent is always in scope
return ""
}
# Do not delete this line -- regeneration end marker