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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)copyspecse.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)copyspecse.tcl    /main/titanic/2   15 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require config.tcl
  13. require "copyeditor.tcl"
  14. require "newcopydef.tcl"
  15. # End user added include file section
  16.  
  17. require "custeditor.tcl"
  18.  
  19. # This is the copy specs editor. It
  20. # presents a browse view with file types, assigned
  21. # gdr files and descriptions. Double clicking
  22. # allows modifying the gdr file.
  23.  
  24. Class CopySpecsEditor : {CustEditor} {
  25.     constructor
  26.     method destructor
  27. }
  28.  
  29. constructor CopySpecsEditor {class this name} {
  30.     set this [CustEditor::constructor $class $this $name]
  31.     # Start constructor user section
  32.     # init object type information to determine available file types
  33.     $this initObjTypeInformation
  34.     $this menuHdlr [CustBrMenuHandler new defsced [$this moduleHdlr]]
  35.     $this setToolBarPresence uce
  36.     [$this menuHdlr] setCurrentContext
  37.     $this setContextAreaPresence uce
  38.     $this editorArea [CopyEditorArea new [$this editorArea].editorArea]
  39.     [$this editorArea] selectionChanged "$this selectionChanged"
  40.     $this setMessageAreaPresence uce
  41.     NewCopyDefDialog new $this.newObject
  42.     $this setWindowGeometry copyspecs
  43.     # End constructor user section
  44.     return $this
  45. }
  46.  
  47. method CopySpecsEditor::destructor {this} {
  48.     # Start destructor user section
  49.     $this saveToolBarPresence uce
  50.     $this saveContextAreaPresence uce
  51.     $this saveMessageAreaPresence uce
  52.     $this saveWindowGeometry copyspecs
  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.