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

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