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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)epsisectio.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)epsisectio.tcl    /main/titanic/1   2 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 "pssection.tcl" docwriter
  15.  
  16. Class EpsiSection : {PsSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method preview
  21. }
  22.  
  23. constructor EpsiSection {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 EpsiSection::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this PsSection::destructor
  34. }
  35.  
  36. method EpsiSection::promoter {this} {
  37.     $this PsSection::promoter
  38.     $this uiType EPSI
  39. }
  40.  
  41. method EpsiSection::preview {this} {
  42.  
  43.     set cmd [list \
  44.         "previewer EpsiSection" \
  45.         [$this docLocation] \
  46.         [$this uiName] \
  47.     ]
  48.     $this execute "$cmd" m4
  49. }
  50.  
  51. # Do not delete this line -- regeneration end marker
  52.  
  53.