home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / childnode.tcl < prev    next >
Text File  |  1996-10-24  |  2KB  |  69 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)childnode.tcl    /main/hindenburg/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)childnode.tcl    /main/hindenburg/2   24 Oct 1996 Copyright 1996 Cayenne Software 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.     if {![$this editable]} {
  51.         return
  52.     }
  53.  
  54.     .main busy TRUE
  55.  
  56.     set defineDialog [[.main editorArea] $definer]
  57.  
  58.     if {[catch {$defineDialog load $this}]} {
  59.         require menuentryd.tcl
  60.         set defineDialog [MenuEntryDialog new .main.$definer]
  61.         [.main editorArea] $definer $defineDialog
  62.         $defineDialog load $this
  63.     }
  64.     .main busy FALSE
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.