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

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