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

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