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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)wd97diagra.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)wd97diagra.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 "diagramsec.tcl" docwriter
  15.  
  16. Class Wd97DiagramSection : {DiagramSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method docType
  21.     method updateDocDir
  22.     method print
  23. }
  24.  
  25. constructor Wd97DiagramSection {class this name document} {
  26.     set this [DiagramSection::constructor $class $this $name $document]
  27.     # Start constructor user section
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method Wd97DiagramSection::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this DiagramSection::destructor
  36. }
  37.  
  38. method Wd97DiagramSection::promoter {this} {
  39.     $this operationClass import
  40.     $this extension emf
  41.     $this DiagramSection::promoter
  42. }
  43.  
  44. method Wd97DiagramSection::docType {this} {
  45.     return Emf
  46. }
  47.  
  48. method Wd97DiagramSection::updateDocDir {this} {
  49.     if {![$this DiagramSection::updateDocDir]} {
  50.         return 0
  51.     }
  52.  
  53.     return 1
  54. }
  55.  
  56. method Wd97DiagramSection::print {this} {
  57.     puts "Printing not implemented: use print from inside Word"
  58. }
  59.  
  60. # Do not delete this line -- regeneration end marker
  61.  
  62.