home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / childnode.tcl < prev    next >
Text File  |  1997-03-14  |  2KB  |  65 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)childnode.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)childnode.tcl    /main/titanic/3   14 Mar 1997 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "menupartno.tcl"
  15.  
  16. Class ChildNode : {MenuPartNode} {
  17.     constructor
  18.     method destructor
  19.     method open
  20.     attribute inToolBar
  21.     attribute inPopUpMenu
  22. }
  23.  
  24. constructor ChildNode {class this name specification} {
  25.     set this [MenuPartNode::constructor $class $this $name $specification]
  26.     # Start constructor user section
  27.  
  28.     # check if set in MenuPartNode contructor
  29.     if {[$this inToolBar] == ""} {
  30.         $this inToolBar 0
  31.     }
  32.     if {[$this inPopUpMenu] == ""} {
  33.         $this inPopUpMenu 0
  34.     }
  35.  
  36.     $this parentType { MenuBarNode CascadeNode }
  37.  
  38.     # End constructor user section
  39.     return $this
  40. }
  41.  
  42. method ChildNode::destructor {this} {
  43.     # Start destructor user section
  44.     # End destructor user section
  45.     $this MenuPartNode::destructor
  46. }
  47.  
  48. method ChildNode::open {this definer} {
  49.  
  50.     .main busy TRUE
  51.  
  52.     set defineDialog [[.main editorArea] $definer]
  53.  
  54.     if {[catch {$defineDialog load $this}]} {
  55.         require menuentryd.tcl
  56.         set defineDialog [MenuEntryDialog new .main.$definer]
  57.         [.main editorArea] $definer $defineDialog
  58.         $defineDialog load $this
  59.     }
  60.     .main busy FALSE
  61. }
  62.  
  63. # Do not delete this line -- regeneration end marker
  64.  
  65.