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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)epssection.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)epssection.tcl    1.7   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 "pssection.tcl"
  15.  
  16. Class EpsSection : {PsSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method preview
  21. }
  22.  
  23. constructor EpsSection {class this name document} {
  24.     set this [PsSection::constructor $class $this $name $document]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method EpsSection::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this PsSection::destructor
  34. }
  35.  
  36. method EpsSection::promoter {this document} {
  37.     $this PsSection::promoter $document
  38.  
  39.     $this uiType EPS
  40. }
  41.  
  42. method EpsSection::preview {this} {
  43.  
  44.     set cmd [list \
  45.         "previewer EpsSection" \
  46.         [$this docLocation] \
  47.         [$this uiName] \
  48.     ]
  49.     $this execute "$cmd" m4
  50. }
  51.  
  52. # Do not delete this line -- regeneration end marker
  53.  
  54.