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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)parentnode.tcl    1.6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)parentnode.tcl    1.6   11 Mar 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "menupartno.tcl"
  15.  
  16. Class ParentNode : {MenuPartNode} {
  17.     constructor
  18.     method destructor
  19.     method open
  20.     attribute pinnable
  21.     attribute arbiters
  22. }
  23.  
  24. constructor ParentNode {class this name specification} {
  25.     set this [MenuPartNode::constructor $class $this $name $specification]
  26.     # Start constructor user section
  27.  
  28.     $this hasChildren 1
  29.     $this activated {%this open}
  30.  
  31.     # give pinnable a valid value
  32.     if {[$this pinnable] == ""} {
  33.         $this pinnable 0
  34.     }
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method ParentNode::destructor {this} {
  40.     # Start destructor user section
  41.     # End destructor user section
  42.     $this MenuPartNode::destructor
  43. }
  44.  
  45. method ParentNode::open {this} {
  46.  
  47.     if {![$this editable]} {
  48.         return
  49.     }
  50.  
  51.     .main busy TRUE
  52.  
  53.     set definer [[.main editorArea] parentDefiner]
  54.  
  55.     if {[catch {$definer load $this}]} {
  56.         require menuparent.tcl
  57.         set definer [MenuParentDialog new .main.parentDefiner]
  58.         [.main editorArea] parentDefiner $definer
  59.         $definer load $this
  60.     }
  61.  
  62.     .main busy FALSE
  63. }
  64.  
  65. # Do not delete this line -- regeneration end marker
  66.  
  67.