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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)doctextsec.tcl    1.8
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)doctextsec.tcl    1.8   19 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "localsecti.tcl"
  15.  
  16. Class DoctextSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19.     method edit
  20.     method show
  21.     method print
  22.     method preview
  23. }
  24.  
  25. constructor DoctextSection {class this name document} {
  26.     set this [LocalSection::constructor $class $this $name $document]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method DoctextSection::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this LocalSection::destructor
  36. }
  37.  
  38. method DoctextSection::edit {this} {
  39.  
  40.     set cmd [list \
  41.         "editor DoctextSection" \
  42.         [$this docLocation] \
  43.         [$this uiName] \
  44.     ]
  45.     $this execute "$cmd" m4
  46. }
  47.  
  48. method DoctextSection::show {this} {
  49.  
  50.     set cmd [list \
  51.         "viewer DoctextSection" \
  52.         [$this docLocation] \
  53.         [$this uiName] \
  54.     ]
  55.     $this execute "$cmd" m4
  56. }
  57.  
  58. method DoctextSection::print {this} {
  59.  
  60.     set cmd [list \
  61.         "[m4_var get M4_a_printer] [$this docLocation]" \
  62.         [$this uiName] \
  63.     ]
  64.     $this execute "$cmd"
  65. }
  66.  
  67. method DoctextSection::preview {this} {
  68.     
  69.     set cmd [list \
  70.         "previewer DoctextSection" \
  71.         [$this docLocation] \
  72.         [$this uiName] \
  73.     ]
  74.     $this execute "$cmd" m4
  75. }
  76.  
  77. # Do not delete this line -- regeneration end marker
  78.  
  79.