home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / wddocedito.tcl < prev    next >
Text File  |  1997-05-23  |  2KB  |  74 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)wddocedito.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wddocedito.tcl    /main/hindenburg/1   23 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "doceditor.tcl"
  15.  
  16. Class WdDocEditor : {DocEditor} {
  17.     constructor
  18.     method destructor
  19.     method edit
  20.     method show
  21.     method print
  22.     method preview
  23. }
  24.  
  25. constructor WdDocEditor {class this name_1} {
  26.     set this [DocEditor::constructor $class $this $name_1]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     $this localSectionTypes "[$this localSectionTypes] Doc"
  30.     return $this
  31. }
  32.  
  33. method WdDocEditor::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this DocEditor::destructor
  37. }
  38.  
  39. method WdDocEditor::edit {this docSection} {
  40.     # look up winword in the registry
  41.     if [catch {
  42.         set wwCurVer [registry get HKEY_CLASSES_ROOT \
  43.                 "Word.Document\\CurVer" "(Default)"]
  44.         
  45.         set wwExe [registry get HKEY_CLASSES_ROOT \
  46.                 "$wwCurVer\\shell\\open\\command" "(Default)"]
  47.         }] {
  48.         wmtkerror "[$docSection uiName]: edit failed, Word not found"
  49.         return
  50.     }
  51.  
  52.     wmtkmessage "Starting edit for section '[$docSection uiName]'"
  53.     set cmd [list \
  54.         "$wwExe [$docSection docLocation] &" \
  55.         [$docSection uiName] \
  56.     ]
  57.     $docSection execute "$cmd"
  58. }
  59.  
  60. method WdDocEditor::show {this docSection} {
  61.     $this edit $docSection
  62. }
  63.  
  64. method WdDocEditor::print {this docSection} {
  65.     $this edit $docSection
  66. }
  67.  
  68. method WdDocEditor::preview {this docSection} {
  69.     $this edit $docSection
  70. }
  71.  
  72. # Do not delete this line -- regeneration end marker
  73.  
  74.