home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / fmdocedito.tcl < prev    next >
Text File  |  1996-06-12  |  2KB  |  64 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)fmdocedito.tcl    /main/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)fmdocedito.tcl    /main/3   12 Jun 1996 Copyright 1996 Cadre Technologies Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "doceditor.tcl"
  15.  
  16. Class FmDocEditor : {DocEditor} {
  17.     constructor
  18.     method destructor
  19.     method edit
  20.     method show
  21.     method print
  22. }
  23.  
  24. constructor FmDocEditor {class this name_1} {
  25.     set this [DocEditor::constructor $class $this $name_1]
  26.     # Start constructor user section
  27.     $this printsIncluded y
  28.     $this name Fm
  29.     $this localSectionTypes \
  30.         "[$this localSectionTypes] Book Doc Mif Mml Toc"
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method FmDocEditor::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this DocEditor::destructor
  39. }
  40.  
  41. method FmDocEditor::edit {this docSection} {
  42.  
  43.     set cmd "[m4_path_name bin fmcomm] -e [$docSection docLocation]"
  44.     $docSection execute "$cmd" xtool
  45. }
  46.  
  47. method FmDocEditor::show {this docSection} {
  48.  
  49.     set cmd "[m4_path_name bin fmcomm] -s [$docSection docLocation]"
  50.     $docSection execute "$cmd" xtool
  51. }
  52.  
  53. method FmDocEditor::print {this docSection} {
  54.  
  55.     set cmd [list \
  56.         "[m4_path_name bin fmcomm] -p [$docSection docLocation]" \
  57.         [$docSection uiName] \
  58.     ]
  59.     $docSection execute "$cmd"
  60. }
  61.  
  62. # Do not delete this line -- regeneration end marker
  63.  
  64.