home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)vieweditor.tcl /main/hindenburg/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)vieweditor.tcl /main/hindenburg/2 19 Aug 1996 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- require "viewedarea.tcl"
- # End user added include file section
-
- require "custeditor.tcl"
-
- Class ViewEditor : {CustEditor} {
- constructor
- method destructor
- }
-
- constructor ViewEditor {class this name} {
- set this [CustEditor::constructor $class $this $name]
- # Start constructor user section
- $this initObjTypeInformation
- $this menuHdlr [CustBrMenuHandler new viewced]
- $this setToolBarPresence uce
- [$this menuHdlr] setCurrentContext
- set arbiter [.main menuBar].view.menu.viewmodearbiter
- if [isCommand $arbiter] {
- $arbiter currentButton 2
- }
- $this setContextAreaPresence uce
- $this editorArea [ViewEdArea new [$this editorArea].editorArea]
- [$this editorArea] selectionChanged "$this selectionChanged"
- $this setMessageAreaPresence uce
- $this setWindowGeometry vie
- # End constructor user section
- return $this
- }
-
- method ViewEditor::destructor {this} {
- # Start destructor user section
- $this saveToolBarPresence uce
- $this saveContextAreaPresence uce
- $this saveMessageAreaPresence uce
- $this saveWindowGeometry vie
- [$this menuHdlr] delete
- # End destructor user section
- $this CustEditor::destructor
- }
-
- # Do not delete this line -- regeneration end marker
-
-