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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)wordsectio.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wordsectio.tcl    /main/titanic/5   20 Feb 1997 Copyright 1997 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 WordSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method edit
  21.     method print
  22.     method preview
  23.     method show
  24. }
  25.  
  26. constructor WordSection {class this name document} {
  27.     set this [LocalSection::constructor $class $this $name $document]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method WordSection::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this LocalSection::destructor
  37. }
  38.  
  39. method WordSection::promoter {this} {
  40.     $this operationClass import
  41. }
  42.  
  43. method WordSection::edit {this} {
  44.     [[$this document] editor] edit $this
  45. }
  46.  
  47. method WordSection::print {this} {
  48.     [[$this document] editor] print $this
  49. }
  50.  
  51. method WordSection::preview {this} {
  52.     # no standard available previewer is known
  53.     # just call base class for now 
  54.     $this LocalSection::preview
  55. }
  56.  
  57. method WordSection::show {this} {
  58.     [[$this document] editor] show $this
  59. }
  60.  
  61. proc WordSection::isAscii {} {
  62.     return 0
  63. }
  64.  
  65. # Do not delete this line -- regeneration end marker
  66.  
  67.