home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / pssection.tcl < prev    next >
Text File  |  1997-01-21  |  1KB  |  62 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)pssection.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)pssection.tcl    /main/titanic/2   21 Jan 1997 Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "localsecti.tcl" docwriter
  15.  
  16. Class PsSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method print
  21.     method preview
  22. }
  23.  
  24. constructor PsSection {class this name document} {
  25.     set this [LocalSection::constructor $class $this $name $document]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method PsSection::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this LocalSection::destructor
  35. }
  36.  
  37. method PsSection::promoter {this} {
  38.     $this uiType PS
  39. }
  40.  
  41. method PsSection::print {this} {
  42.  
  43.     set cmd [list \
  44.         "[m4_var get M4_ps_printer] [$this docLocation]" \
  45.         [$this uiName] \
  46.     ]
  47.     $this execute "$cmd"
  48. }
  49.  
  50. method PsSection::preview {this} {
  51.  
  52.     set cmd [list \
  53.         "previewer PsSection" \
  54.         [$this docLocation] \
  55.         [$this uiName] \
  56.     ]
  57.     $this execute "$cmd" m4
  58. }
  59.  
  60. # Do not delete this line -- regeneration end marker
  61.  
  62.