home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / menueditor.tcl < prev    next >
Text File  |  1996-12-09  |  2KB  |  66 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)menueditor.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)menueditor.tcl    /main/titanic/2   9 Dec 1996 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require "menuedarea.tcl"
  13. require "iconselect.tcl"
  14. # End user added include file section
  15.  
  16. require "custeditor.tcl"
  17.  
  18. Class MenuEditor : {CustEditor} {
  19.     constructor
  20.     method destructor
  21.     method getSelectedSet
  22.     attribute smallIconSelector
  23. }
  24.  
  25. constructor MenuEditor {class this name} {
  26.     set this [CustEditor::constructor $class $this $name]
  27.     # Start constructor user section
  28.     $this menuHdlr [CustBrMenuHandler new menuced [$this moduleHdlr]]
  29.     [$this menuHdlr] setCurrentContext
  30.     $this initObjTypeInformation
  31.  
  32.     $this setToolBarPresence uce
  33.     $this setContextAreaPresence uce
  34.     $this editorArea [MenuEdArea new [$this editorArea].editorArea]
  35.     [$this editorArea] selectionChanged "$this selectionChanged"
  36.     $this setMessageAreaPresence uce
  37.     $this smallIconSelector [IconSelector new $this.smallIconSelector \
  38.         16 -title "ToolBar Icon Selector"]
  39.     $this setWindowGeometry mnu
  40.     # End constructor user section
  41.     return $this
  42. }
  43.  
  44. method MenuEditor::destructor {this} {
  45.     # Start destructor user section
  46.     $this saveToolBarPresence uce
  47.     $this saveContextAreaPresence uce
  48.     $this saveMessageAreaPresence uce
  49.     $this saveWindowGeometry mnu
  50.     [$this menuHdlr] delete
  51.     # End destructor user section
  52.     $this CustEditor::destructor
  53. }
  54.  
  55. method MenuEditor::getSelectedSet {this} {
  56.     
  57.     if {![[$this editorArea] isA BrowsTree]} {
  58.         return ""
  59.     }
  60.  
  61.     return [[$this editorArea] selected]
  62. }
  63.  
  64. # Do not delete this line -- regeneration end marker
  65.  
  66.