home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / wordsectio.tcl < prev    next >
Text File  |  1996-11-26  |  2KB  |  69 lines

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