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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)stdeditor.tcl    /main/titanic/6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)stdeditor.tcl    /main/titanic/6   14 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12.  
  13. require edcontrolp.tcl
  14. require qualopenby.tcl
  15. require dropstdare.tcl
  16.  
  17. # End user added include file section
  18.  
  19. require "diagramedi.tcl"
  20.  
  21. Class STDEditor : {DiagramEditor} {
  22.     constructor
  23.     method destructor
  24.     method createOpenByName
  25.     method reinit
  26. }
  27.  
  28. constructor STDEditor {class this name} {
  29.     set this [DiagramEditor::constructor $class $this $name]
  30.     # Start constructor user section
  31.  
  32.     # take care of the std-specific entries
  33.     $this menuHdlr [CustEdMenuHandler new {diagram std} [$this moduleHdlr]]
  34.     [$this options] syntaxEntries {class state}
  35.  
  36.     $this title "State Transition Diagram Editor"
  37.     EdControlPanel new $this.c.r.panel
  38.     $this panel $this.c.r.panel
  39.     [$this panel] initialize std
  40.  
  41.     DropSTDArea new $this.c.r.std -panX 0 -panY 0 \
  42.               -currentSymbol Select \
  43.               -doubleClicked "$this open" \
  44.               -destinationSet "STDDRAGOBJECT drop STRING dummy"
  45.     $this.c.r.std ed $this
  46.     $this editorArea $this.c.r.std
  47.     [$this editorArea] setSize 600 400
  48.     [$this editorArea] possibleOperationsChanged \
  49.         "$this enDisableMenuEntries"
  50.  
  51.     [$this panel] area [$this editorArea]
  52.     $this createEdAreaPopUpMenu
  53.     $this setWindowGeometry std
  54.  
  55.     # End constructor user section
  56.     return $this
  57. }
  58.  
  59. method STDEditor::destructor {this} {
  60.     # Start destructor user section
  61.     # End destructor user section
  62.     $this DiagramEditor::destructor
  63. }
  64.  
  65. method STDEditor::createOpenByName {this} {
  66.     return [QualOpenByName new $this.obn $this]
  67. }
  68.  
  69. method STDEditor::reinit {this} {
  70.     $this DiagramEditor::reinit
  71.     [$this options] initLook
  72.     set area [.main editorArea]
  73.     if {[m4_var get M4_font_bold -context ude] != [$area boldFontSpec]} {
  74.         $area boldFontSpec [m4_var get M4_font_bold -context ude]
  75.     }
  76. }
  77.  
  78. # Do not delete this line -- regeneration end marker
  79.  
  80.