home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / wordmstrco.tcl < prev    next >
Text File  |  1997-11-04  |  4KB  |  152 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)wordmstrco.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wordmstrco.tcl    /main/titanic/4   4 Nov 1997 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class WordMstrConGen : {Object} {
  16.     constructor
  17.     method destructor
  18.     method generate
  19.     method section
  20.     attribute _section
  21. }
  22.  
  23. constructor WordMstrConGen {class this name section} {
  24.     set this [Object::constructor $class $this $name]
  25.     $this _section $section
  26.     $section _contentsGenerator $this
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method WordMstrConGen::destructor {this} {
  33.     set ref [$this _section]
  34.     if {$ref != ""} {
  35.         $ref _contentsGenerator ""
  36.     }
  37.     # Start destructor user section
  38.     # End destructor user section
  39. }
  40.  
  41. method WordMstrConGen::generate {this} {
  42.     set sect [$this _section]
  43.     set name [$sect uiName]
  44.     set docu [$sect document]
  45.  
  46.     set word [[[docTool document] editor] wordObj]
  47.     if [catch {
  48.         set dest [[$this section] docLocation]
  49.         $word FileOpen $dest
  50.         if {[$word ViewMasterDocument] == 0} {
  51.             error "document not in 'Master Document View'"
  52.         }
  53.         $word EditSelectAll
  54.         $word EditClear
  55.  
  56.         $word FormatStyle "Title Cover"
  57.         set title [$docu title]
  58.         $word SetDocumentProperty Title 0 "$title" 0
  59.         $word chkInsert $title
  60.         $word EndOfDocument
  61.         $word InsertPara
  62.  
  63.         $word FormatStyle "Subtitle Cover"
  64.         $word TableInsertTable 0 2 2 = = = 167
  65.         $word chkInsert "Project:"
  66.         $word NextCell
  67.         $word chkInsert [[$docu project] name]
  68.         $word NextCell
  69.         $word chkInsert "Documented System:"
  70.         $word NextCell
  71.         $word chkInsert [[[$docu documentedSystem] system] name]
  72.         $word EndOfDocument
  73.  
  74.         $word FormatStyle "Title Attributes"
  75.         $word TableInsertTable 0 2 8 1 = = 167
  76.         $word chkInsert "Title:"
  77.         $word NextCell
  78.         $word chkInsert [$docu title]
  79.         $word NextCell
  80.         $word chkInsert "Subject:"
  81.         $word NextCell
  82.         $word chkInsert [$docu subject]
  83.         $word NextCell
  84.         $word chkInsert "Reference:"
  85.         $word NextCell
  86.         $word chkInsert [$docu reference]
  87.         $word NextCell
  88.         $word chkInsert "Keywords:"
  89.         $word NextCell
  90.         $word chkInsert [$docu keywords]
  91.         $word NextCell
  92.         $word chkInsert "Authors:"
  93.         $word NextCell
  94.         $word chkInsert [$docu authors]
  95.         $word NextCell
  96.         $word chkInsert "Status:"
  97.         $word NextCell
  98.         $word chkInsert [$docu docStatus]
  99.         $word NextCell
  100.         $word chkInsert "Date:"
  101.         $word NextCell
  102.         $word chkInsert [$docu date]
  103.         $word EndOfDocument
  104.         $word FormatStyle $OTStyles(OTNormal)
  105.  
  106.         $word InsertPageBreak
  107.         $word FormatHeadingNumbering = 3
  108.  
  109.         $word FormatStyle $OTStyles(OTHdg1)
  110.         $word chkInsert "Table of Contents"
  111.         $word InsertPara
  112.         $word EditBookmark tblcnts 1 1 0 0
  113.  
  114.         # insert sub documents here
  115.         $word ViewMasterDocument
  116.         foreach sect [[$this section] getTree] {
  117.             if {[$sect indentation] > 1} {
  118.                 continue
  119.             }
  120.             $word InsertSubdocument [$sect docLocation]
  121.             $word EndOfDocument
  122.         }
  123.         $word EndOfDocument
  124.         $word FormatStyle $OTStyles(OTBodyText)
  125.  
  126.         $word EditBookmark tblcnts 0 0 0 1
  127.         $word InsertTableOfContents
  128.  
  129.         $word FileSaveAs
  130.     } msg] {
  131.         wmtkerror "Word Automation Error: $msg"
  132.     }
  133. }
  134.  
  135. # Do not delete this line -- regeneration end marker
  136.  
  137. method WordMstrConGen::section {this args} {
  138.     if {$args == ""} {
  139.         return [$this _section]
  140.     }
  141.     set ref [$this _section]
  142.     if {$ref != ""} {
  143.         $ref _contentsGenerator ""
  144.     }
  145.     set obj [lindex $args 0]
  146.     if {$obj != ""} {
  147.         $obj _contentsGenerator $this
  148.     }
  149.     $this _section $obj
  150. }
  151.  
  152.