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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)dfdeditor.tcl    /main/titanic/6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)dfdeditor.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 dropdfdare.tcl
  15.  
  16. # End user added include file section
  17.  
  18. require "diagramedi.tcl"
  19.  
  20. Class DFDEditor : {DiagramEditor} {
  21.     constructor
  22.     method destructor
  23.     method reinit
  24. }
  25.  
  26. constructor DFDEditor {class this name} {
  27.     set this [DiagramEditor::constructor $class $this $name]
  28.     # Start constructor user section
  29.  
  30.     # take care of the dfd-specific entries
  31.     $this menuHdlr [CustEdMenuHandler new {diagram dfd} [$this moduleHdlr]]
  32.     [$this options] syntaxEntries {class data process}
  33.  
  34.     $this title "Data Flow Diagram Editor"
  35.     EdControlPanel new $this.c.r.panel
  36.     $this panel $this.c.r.panel
  37.     [$this panel] initialize dfd
  38.  
  39.     DropDFDArea new $this.c.r.dfd -panX 0 -panY 0 \
  40.               -currentSymbol Select \
  41.               -doubleClicked "$this open" \
  42.               -destinationSet "DFDDRAGOBJECT drop STRING dummy"
  43.     $this.c.r.dfd ed $this
  44.     $this editorArea $this.c.r.dfd
  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 dfd
  52.  
  53.     # End constructor user section
  54.     return $this
  55. }
  56.  
  57. method DFDEditor::destructor {this} {
  58.     # Start destructor user section
  59.     # End destructor user section
  60.     $this DiagramEditor::destructor
  61. }
  62.  
  63. method DFDEditor::reinit {this} {
  64.     $this DiagramEditor::reinit
  65.     set area [.main editorArea]
  66.     if {[m4_var get M4_font_bold -context ude] != [$area boldFontSpec]} {
  67.         $area boldFontSpec [m4_var get M4_font_bold -context ude]
  68.     }
  69. }
  70.  
  71. # Do not delete this line -- regeneration end marker
  72.  
  73.