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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           @(#)worddiagra.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddiagra.tcl    /main/titanic/3   20 Feb 1997 Copyright 1996 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 WordDiagramSection : {DiagramSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method docType
  21.     method updateDocDir
  22.     method print
  23. }
  24.  
  25. constructor WordDiagramSection {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 WordDiagramSection::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this DiagramSection::destructor
  36. }
  37.  
  38. method WordDiagramSection::promoter {this} {
  39.     $this DiagramSection::promoter
  40.     $this operationClass import
  41.     $this extension wmf
  42. }
  43.  
  44. method WordDiagramSection::docType {this} {
  45.  
  46.     # Type of this section is Wmf
  47.     return Wmf
  48. }
  49.  
  50. method WordDiagramSection::updateDocDir {this} {
  51.  
  52.     # convert from 'diagram' format to epsf format
  53.     if {![$this DiagramSection::updateDocDir]} {
  54.         return 0
  55.     }
  56.  
  57.     return 1
  58. }
  59.  
  60. method WordDiagramSection::print {this} {
  61.     puts "Printing not yet implemented: use print from inside Word"
  62. }
  63.  
  64. # Do not delete this line -- regeneration end marker
  65.  
  66.