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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)ximagesect.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ximagesect.tcl    /main/titanic/1   2 Jan 1997 Copyright 1994 Westmount Technology
  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 XimageSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19.     method print
  20.     method preview
  21. }
  22.  
  23. constructor XimageSection {class this name document} {
  24.     set this [LocalSection::constructor $class $this $name $document]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method XimageSection::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this LocalSection::destructor
  34. }
  35.  
  36. method XimageSection::print {this} {
  37.  
  38.     set cmd [list \
  39.         "xwud -in [$this docLocation]" \
  40.         [$this uiName] \
  41.     ]
  42.     $this execute "$cmd"
  43. }
  44.  
  45. method XimageSection::preview {this} {
  46.  
  47.     set printer [m4_var get M4_ps_printer]
  48.     set cmd "sh -c 'xpr -device ps [$this docLocation] | $printer'"
  49.  
  50.     $this execute "$cmd" xtool
  51. }
  52.  
  53. proc XimageSection::isAscii {} {
  54.     return 0
  55. }
  56.  
  57. # Do not delete this line -- regeneration end marker
  58.  
  59.