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 >
Wrap
Text File
|
1997-02-20
|
2KB
|
66 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1996
#
# File: @(#)worddiagra.tcl /main/titanic/3
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)worddiagra.tcl /main/titanic/3 20 Feb 1997 Copyright 1996 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require_module_file "diagramsec.tcl" docwriter
Class WordDiagramSection : {DiagramSection} {
constructor
method destructor
method promoter
method docType
method updateDocDir
method print
}
constructor WordDiagramSection {class this name document} {
set this [DiagramSection::constructor $class $this $name $document]
# Start constructor user section
# End constructor user section
return $this
}
method WordDiagramSection::destructor {this} {
# Start destructor user section
# End destructor user section
$this DiagramSection::destructor
}
method WordDiagramSection::promoter {this} {
$this DiagramSection::promoter
$this operationClass import
$this extension wmf
}
method WordDiagramSection::docType {this} {
# Type of this section is Wmf
return Wmf
}
method WordDiagramSection::updateDocDir {this} {
# convert from 'diagram' format to epsf format
if {![$this DiagramSection::updateDocDir]} {
return 0
}
return 1
}
method WordDiagramSection::print {this} {
puts "Printing not yet implemented: use print from inside Word"
}
# Do not delete this line -- regeneration end marker