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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)wordmstrse.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wordmstrse.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 WordMstrSection : {WordSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method generateTypeContents
  21.     method contentsGenerator
  22.     attribute _contentsGenerator
  23. }
  24.  
  25. constructor WordMstrSection {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 WordMstrSection::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 WordMstrSection::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.             [WordMstrConGen new WordMstrConGen$classCount $this]
  51.         incr classCount
  52.     }
  53. }
  54.  
  55. method WordMstrSection::generateTypeContents {this} {
  56.     [$this contentsGenerator] generate
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61. method WordMstrSection::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.