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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)separatorn.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)separatorn.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 "childnode.tcl"
  15.  
  16. Class SeparatorNode : {ChildNode} {
  17.     constructor
  18.     method destructor
  19.     method open
  20. }
  21.  
  22. constructor SeparatorNode {class this name specification} {
  23.     set this [ChildNode::constructor $class $this $name $specification]
  24.     # Start constructor user section
  25.     $this config -displayName Separator -icon separator_16 \
  26.         -activeIcon separator_16 -activated {%this open}
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method SeparatorNode::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this ChildNode::destructor
  35. }
  36.  
  37. method SeparatorNode::open {this} {
  38.  
  39.     .main busy TRUE
  40.     set definer [[.main editorArea] separatorDefiner]
  41.  
  42.     if {[catch {$definer load $this}]} {
  43.         require separatord.tcl
  44.         set definer [SeparatorDialog new .main.separatorDefiner]
  45.         [.main editorArea] separatorDefiner $definer
  46.         $definer load $this
  47.     }
  48.     .main busy FALSE
  49. }
  50.  
  51. # Do not delete this line -- regeneration end marker
  52.  
  53.