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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)wd97docsec.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wd97docsec.tcl    /main/hindenburg/1   23 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "wordsectio.tcl"
  15.  
  16. Class Wd97DocSection : {WordSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method generateTypeContents
  21.     method contentsGenerator
  22.     attribute _contentsGenerator
  23. }
  24.  
  25. constructor Wd97DocSection {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 Wd97DocSection::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 Wd97DocSection::promoter {this document} {
  43.     $this uiType Wd97Doc
  44.     $this extension doc
  45.     $this WordSection::promoter $document
  46.     $this operationClass manipulate
  47.     global classCount
  48.     $this _contentsGenerator \
  49.         [Wd97DocConGen new Wd97DocConGen$classCount $this]
  50.     incr classCount
  51.     $this initContents Word97.dot
  52. }
  53.  
  54. method Wd97DocSection::generateTypeContents {this} {
  55.     [$this contentsGenerator] generate
  56. }
  57.  
  58. # Do not delete this line -- regeneration end marker
  59.  
  60. method Wd97DocSection::contentsGenerator {this args} {
  61.     if {$args == ""} {
  62.         return [$this _contentsGenerator]
  63.     }
  64.     set ref [$this _contentsGenerator]
  65.     if {$ref != ""} {
  66.         $ref _section ""
  67.     }
  68.     set obj [lindex $args 0]
  69.     if {$obj != ""} {
  70.         $obj _section $this
  71.     }
  72.     $this _contentsGenerator $obj
  73. }
  74.  
  75.