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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)vieweditor.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vieweditor.tcl    /main/titanic/3   14 Mar 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. require "viewedarea.tcl"
  13. # End user added include file section
  14.  
  15. require "custeditor.tcl"
  16.  
  17. Class ViewEditor : {CustEditor} {
  18.     constructor
  19.     method destructor
  20. }
  21.  
  22. constructor ViewEditor {class this name} {
  23.     set this [CustEditor::constructor $class $this $name]
  24.     # Start constructor user section
  25.     $this menuHdlr [CustBrMenuHandler new viewced [$this moduleHdlr]]
  26.     [$this menuHdlr] setCurrentContext
  27.     $this initObjTypeInformation
  28.  
  29.     $this setToolBarPresence uce
  30.     set arbiter [.main menuBar].view.menu.viewmodearbiter
  31.     if [isCommand $arbiter] {
  32.         $arbiter currentButton 2
  33.     }
  34.     $this setContextAreaPresence uce
  35.     $this editorArea [ViewEdArea new [$this editorArea].editorArea]
  36.     [$this editorArea] selectionChanged "$this selectionChanged"
  37.     $this setMessageAreaPresence uce
  38.     $this setWindowGeometry vie
  39.     # create popup menu for view
  40.     ViewPopUpMenu new [$this editorArea].pop -poppedUp {
  41.         %this entrySet [[.main menuHdlr] validPopUpEntrySet]
  42.     }
  43.     # End constructor user section
  44.     return $this
  45. }
  46.  
  47. method ViewEditor::destructor {this} {
  48.     # Start destructor user section
  49.     $this saveToolBarPresence uce
  50.     $this saveContextAreaPresence uce
  51.     $this saveMessageAreaPresence uce
  52.     $this saveWindowGeometry vie
  53.     [$this menuHdlr] delete
  54.     # End destructor user section
  55.     $this CustEditor::destructor
  56. }
  57.  
  58. # Do not delete this line -- regeneration end marker
  59.  
  60.