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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)parentnode.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)parentnode.tcl    /main/titanic/1   14 Mar 1997 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.     .main busy TRUE
  48.  
  49.     set definer [[.main editorArea] parentDefiner]
  50.  
  51.     if {[catch {$definer load $this}]} {
  52.         require menuparent.tcl
  53.         set definer [MenuParentDialog new .main.parentDefiner]
  54.         [.main editorArea] parentDefiner $definer
  55.         $definer load $this
  56.     }
  57.  
  58.     .main busy FALSE
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63.