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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)opendefedi.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)opendefedi.tcl    /main/titanic/2   24 Apr 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require "opendefeda.tcl"
  13. require "newopendef.tcl"
  14. # End user added include file section
  15.  
  16. require "custeditor.tcl"
  17.  
  18. Class OpenDefEditor : {CustEditor} {
  19.     constructor
  20.     method destructor
  21. }
  22.  
  23. constructor OpenDefEditor {class this name} {
  24.     set this [CustEditor::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this menuHdlr [CustBrMenuHandler new defsced [$this moduleHdlr]]
  27.     [$this menuHdlr] setCurrentContext
  28.     $this setToolBarPresence uce
  29.     $this setContextAreaPresence uce
  30.     $this editorArea [OpenDefEdArea new [$this editorArea].editorArea]
  31.     [$this editorArea] selectionChanged "$this selectionChanged"
  32.     $this setMessageAreaPresence uce
  33.     NewOpenDefDialog new $this.newObject
  34.     $this setWindowGeometry opendefs
  35.     # End constructor user section
  36.     return $this
  37. }
  38.  
  39. method OpenDefEditor::destructor {this} {
  40.     # Start destructor user section
  41.     $this saveToolBarPresence uce
  42.     $this saveContextAreaPresence uce
  43.     $this saveMessageAreaPresence uce
  44.     $this saveWindowGeometry opendefs
  45.     [$this menuHdlr] delete
  46.     # End destructor user section
  47.     $this CustEditor::destructor
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52.