home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
wordsectio.tcl
< prev
next >
Wrap
Text File
|
1997-02-20
|
2KB
|
67 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1997
#
# File: @(#)wordsectio.tcl /main/titanic/5
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)wordsectio.tcl /main/titanic/5 20 Feb 1997 Copyright 1997 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require_module_file "localsecti.tcl" docwriter
Class WordSection : {LocalSection} {
constructor
method destructor
method promoter
method edit
method print
method preview
method show
}
constructor WordSection {class this name document} {
set this [LocalSection::constructor $class $this $name $document]
# Start constructor user section
# End constructor user section
return $this
}
method WordSection::destructor {this} {
# Start destructor user section
# End destructor user section
$this LocalSection::destructor
}
method WordSection::promoter {this} {
$this operationClass import
}
method WordSection::edit {this} {
[[$this document] editor] edit $this
}
method WordSection::print {this} {
[[$this document] editor] print $this
}
method WordSection::preview {this} {
# no standard available previewer is known
# just call base class for now
$this LocalSection::preview
}
method WordSection::show {this} {
[[$this document] editor] show $this
}
proc WordSection::isAscii {} {
return 0
}
# Do not delete this line -- regeneration end marker