home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)menueditor.tcl /main/hindenburg/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)menueditor.tcl /main/hindenburg/2 19 Aug 1996 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- require "menuedarea.tcl"
- require "iconselect.tcl"
- # End user added include file section
-
- require "custeditor.tcl"
-
- Class MenuEditor : {CustEditor} {
- constructor
- method destructor
- method getSelectedSet
- attribute smallIconSelector
- }
-
- constructor MenuEditor {class this name} {
- set this [CustEditor::constructor $class $this $name]
- # Start constructor user section
- $this initObjTypeInformation
- $this menuHdlr [CustBrMenuHandler new menuced]
- $this setToolBarPresence uce
- [$this menuHdlr] setCurrentContext
- $this setContextAreaPresence uce
- $this editorArea [MenuEdArea new [$this editorArea].editorArea]
- [$this editorArea] selectionChanged "$this selectionChanged"
- $this setMessageAreaPresence uce
- $this smallIconSelector [IconSelector new $this.smallIconSelector \
- 16 -title "ToolBar Icon Selector"]
- $this setWindowGeometry mnu
- # End constructor user section
- return $this
- }
-
- method MenuEditor::destructor {this} {
- # Start destructor user section
- $this saveToolBarPresence uce
- $this saveContextAreaPresence uce
- $this saveMessageAreaPresence uce
- $this saveWindowGeometry mnu
- [$this menuHdlr] delete
- # End destructor user section
- $this CustEditor::destructor
- }
-
- method MenuEditor::getSelectedSet {this} {
-
- if {![[$this editorArea] isA BrowsTree]} {
- return ""
- }
-
- return [[$this editorArea] selected]
- }
-
- # Do not delete this line -- regeneration end marker
-
-