home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / worddiagra.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  66 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)worddiagra.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddiagra.tcl    1.7   22 Nov 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "diagramsec.tcl"
  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 document} {
  39.     $this operationClass import
  40.     $this extension wmf
  41.     $this DiagramSection::promoter $document
  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.