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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)worddocsec.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddocsec.tcl    1.7   04 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "wordsectio.tcl"
  15.  
  16. Class WordDocSection : {WordSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method generateTypeContents
  21.     method contentsGenerator
  22.     attribute _contentsGenerator
  23. }
  24.  
  25. constructor WordDocSection {class this name document} {
  26.     set this [WordSection::constructor $class $this $name $document]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method WordDocSection::destructor {this} {
  33.     set ref [$this _contentsGenerator]
  34.     if {$ref != ""} {
  35.         $ref _section ""
  36.     }
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this WordSection::destructor
  40. }
  41.  
  42. method WordDocSection::promoter {this document} {
  43.     $this uiType WordDoc
  44.     $this extension doc
  45.     $this WordSection::promoter $document
  46.     $this operationClass manipulate
  47.     global classCount
  48.     $this _contentsGenerator \
  49.         [WordDocConGen new WordDocConGen$classCount $this]
  50.     incr classCount
  51.     $this initContents Word.dot
  52. }
  53.  
  54. method WordDocSection::generateTypeContents {this} {
  55.  
  56.     [$this contentsGenerator] generate
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61. method WordDocSection::contentsGenerator {this args} {
  62.     if {$args == ""} {
  63.         return [$this _contentsGenerator]
  64.     }
  65.     set ref [$this _contentsGenerator]
  66.     if {$ref != ""} {
  67.         $ref _section ""
  68.     }
  69.     set obj [lindex $args 0]
  70.     if {$obj != ""} {
  71.         $obj _section $this
  72.     }
  73.     $this _contentsGenerator $obj
  74. }
  75.  
  76.