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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)proplocedi.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)proplocedi.tcl    /main/titanic/2   24 Apr 1997 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. require "proploceda.tcl"
  13. require "newproploc.tcl"
  14. # End user added include file section
  15.  
  16. require "custeditor.tcl"
  17.  
  18. Class PropLocEditor : {CustEditor} {
  19.     constructor
  20.     method destructor
  21. }
  22.  
  23. constructor PropLocEditor {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 [PropLocEdArea new [$this editorArea].editorArea]
  31.     [$this editorArea] selectionChanged "$this selectionChanged"
  32.     $this setMessageAreaPresence uce
  33.     NewPropLocDialog new $this.newObject
  34.     $this.newObject editorArea [$this editorArea]
  35.     $this setWindowGeometry proplocs
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method PropLocEditor::destructor {this} {
  41.     # Start destructor user section
  42.     $this saveToolBarPresence uce
  43.     $this saveContextAreaPresence uce
  44.     $this saveMessageAreaPresence uce
  45.     $this saveWindowGeometry proplocs
  46.     [$this menuHdlr] delete
  47.     # End destructor user section
  48.     $this CustEditor::destructor
  49. }
  50.  
  51. # Do not delete this line -- regeneration end marker
  52.  
  53.