home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / etdeditor.tcl < prev    next >
Text File  |  1997-03-07  |  2KB  |  76 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)etdeditor.tcl    /main/hindenburg/7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)etdeditor.tcl    /main/hindenburg/7   7 Mar 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12.  
  13. require edcontrolp.tcl
  14. require qualopenby.tcl
  15.  
  16. # End user added include file section
  17.  
  18. require "diagramedi.tcl"
  19.  
  20. Class ETDEditor : {DiagramEditor} {
  21.     constructor
  22.     method destructor
  23.     method diagramType
  24.     method createOpenByName
  25. }
  26.  
  27. constructor ETDEditor {class this name} {
  28.     set this [DiagramEditor::constructor $class $this $name]
  29.     # Start constructor user section
  30.  
  31.     # take care of the etd-specific entries
  32.     $this specificMenuHdlr [CustEdMenuHandler new etd]
  33.     [$this specificMenuHdlr] setCurrentContext
  34.  
  35.     $this title "Event Trace Diagram Editor"
  36.     EdControlPanel new $this.c.r.panel
  37.     $this panel $this.c.r.panel
  38.     [$this panel] initialize etd
  39.     [$this panel] selected Select
  40.  
  41.     ETDArea new $this.c.r.etd -panX 0 -panY 0 \
  42.                   -currentSymbol Select \
  43.                   -doubleClicked "$this open"
  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.     $this saveFileHistory etd
  60.     $this saveWindowGeometry etd
  61.     [$this specificMenuHdlr] delete
  62.     # End destructor user section
  63.     $this DiagramEditor::destructor
  64. }
  65.  
  66. method ETDEditor::diagramType {this} {
  67.     return etd
  68. }
  69.  
  70. method ETDEditor::createOpenByName {this} {
  71.     return [QualOpenByName new $this.obn $this]
  72. }
  73.  
  74. # Do not delete this line -- regeneration end marker
  75.  
  76.