home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)wordsectio.tcl /main/hindenburg/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)wordsectio.tcl /main/hindenburg/1 26 Nov 1996 Copyright 1996 Cadre Technologies Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "localsecti.tcl"
-
- Class WordSection : {LocalSection} {
- method destructor
- constructor
- method promoter
- method edit
- method print
- method preview
- method show
- }
-
- method WordSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this LocalSection::destructor
- }
-
- 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::promoter {this document} {
- $this DocSection::promoter $document
-
- $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
-
-