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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ucdeditor.tcl    /main/titanic/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ucdeditor.tcl    /main/titanic/7   14 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12.  
  13. require ucdpanel.tcl
  14. require dropucdare.tcl
  15.  
  16. # End user added include file section
  17.  
  18. require "diagramedi.tcl"
  19.  
  20. Class UCDEditor : {DiagramEditor} {
  21.     constructor
  22.     method destructor
  23.     method reinit
  24. }
  25.  
  26. constructor UCDEditor {class this name} {
  27.     set this [DiagramEditor::constructor $class $this $name]
  28.     # Start constructor user section
  29.  
  30.     # take care of the ucd-specific entries
  31.     $this menuHdlr [CustEdMenuHandler new {diagram ucd} [$this moduleHdlr]]
  32.     [$this options] syntaxEntries {class process}
  33.  
  34.     $this title "Use Case Diagram Editor"
  35.     set ucdPanel [UCDPanel new $this.c.r.panel]
  36.     $this panel [$ucdPanel symbPanel]
  37.     [$this panel] initialize ucd
  38.  
  39.     DropUCDArea new $this.c.r.ucd -panX 0 -panY 0 \
  40.               -currentSymbol Select \
  41.               -doubleClicked "$this open" \
  42.               -destinationSet "UCDDRAGOBJECT drop STRING dummy"
  43.     $this.c.r.ucd ed $this
  44.     $this editorArea $this.c.r.ucd
  45.     [$this editorArea] setSize 600 400
  46.     [$this editorArea] possibleOperationsChanged \
  47.         "$this enDisableMenuEntries"
  48.  
  49.     $ucdPanel area [$this editorArea]
  50.     $this createEdAreaPopUpMenu
  51.     $this setWindowGeometry ucd
  52.  
  53.     # End constructor user section
  54.     return $this
  55. }
  56.  
  57. method UCDEditor::destructor {this} {
  58.     # Start destructor user section
  59.     # End destructor user section
  60.     $this DiagramEditor::destructor
  61. }
  62.  
  63. method UCDEditor::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.