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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)worddocsec.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddocsec.tcl    /main/titanic/3   20 Feb 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "wordsectio.tcl" word
  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} {
  43.     $this WordSection::promoter
  44.     $this uiType WordDoc
  45.     $this extension doc
  46.     $this operationClass manipulate
  47.     if {! [isCommand [$this _contentsGenerator]]} {
  48.         global classCount
  49.         $this _contentsGenerator \
  50.             [WordDocConGen new WordDocConGen$classCount $this]
  51.         incr classCount
  52.     }
  53.     $this initContents Word.dot
  54. }
  55.  
  56. method WordDocSection::generateTypeContents {this} {
  57.  
  58.     [$this contentsGenerator] generate
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63. method WordDocSection::contentsGenerator {this args} {
  64.     if {$args == ""} {
  65.         return [$this _contentsGenerator]
  66.     }
  67.     set ref [$this _contentsGenerator]
  68.     if {$ref != ""} {
  69.         $ref _section ""
  70.     }
  71.     set obj [lindex $args 0]
  72.     if {$obj != ""} {
  73.         $obj _section $this
  74.     }
  75.     $this _contentsGenerator $obj
  76. }
  77.  
  78.