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

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