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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)codeditor.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)codeditor.tcl    /main/titanic/4   28 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12.  
  13. require codpanel.tcl
  14. require qualopenby.tcl
  15. require dropcodare.tcl
  16.  
  17. # End user added include file section
  18.  
  19. require "diagramedi.tcl"
  20.  
  21. Class CODEditor : {DiagramEditor} {
  22.     constructor
  23.     method destructor
  24.     method createOpenByName
  25. }
  26.  
  27. constructor CODEditor {class this name} {
  28.     set this [DiagramEditor::constructor $class $this $name]
  29.     # Start constructor user section
  30.  
  31.     # take care of the cod-specific entries
  32.     $this menuHdlr [CustEdMenuHandler new {diagram cod} [$this moduleHdlr]]
  33.     [$this options] syntaxEntries {class data}
  34.  
  35.     $this title "Collaboration Diagram Editor"
  36.     set codPanel [CODPanel new $this.c.r.panel]
  37.     $this panel [$codPanel symbPanel]
  38.     [$this panel] initialize cod
  39.  
  40.     DropCODArea new $this.c.r.cod -panX 0 -panY 0 \
  41.               -currentSymbol Select \
  42.               -doubleClicked "$this open" \
  43.               -destinationSet "CODDRAGOBJECT drop STRING dummy"
  44.     $this.c.r.cod ed $this
  45.     $this editorArea $this.c.r.cod
  46.     [$this editorArea] setSize 600 400
  47.     [$this editorArea] possibleOperationsChanged \
  48.         "$this enDisableMenuEntries"
  49.  
  50.     $codPanel area [$this editorArea]
  51.     $this createEdAreaPopUpMenu
  52.     $this setWindowGeometry cod
  53.  
  54.     # End constructor user section
  55.     return $this
  56. }
  57.  
  58. method CODEditor::destructor {this} {
  59.     # Start destructor user section
  60.     # End destructor user section
  61.     $this DiagramEditor::destructor
  62. }
  63.  
  64. method CODEditor::createOpenByName {this} {
  65.     return [QualOpenByName new $this.obn $this]
  66. }
  67.  
  68. # Do not delete this line -- regeneration end marker
  69.  
  70.