home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
pssection.tcl
< prev
next >
Wrap
Text File
|
1997-01-21
|
1KB
|
62 lines
#---------------------------------------------------------------------------
#
# (c) Cayenne Software Inc. 1996
#
# File: @(#)pssection.tcl /main/titanic/2
# Author: <generated>
# Description:
#---------------------------------------------------------------------------
# SccsId = @(#)pssection.tcl /main/titanic/2 21 Jan 1997 Copyright 1996 Cayenne Software Inc.
# Start user added include file section
# End user added include file section
require_module_file "localsecti.tcl" docwriter
Class PsSection : {LocalSection} {
constructor
method destructor
method promoter
method print
method preview
}
constructor PsSection {class this name document} {
set this [LocalSection::constructor $class $this $name $document]
# Start constructor user section
# End constructor user section
return $this
}
method PsSection::destructor {this} {
# Start destructor user section
# End destructor user section
$this LocalSection::destructor
}
method PsSection::promoter {this} {
$this uiType PS
}
method PsSection::print {this} {
set cmd [list \
"[m4_var get M4_ps_printer] [$this docLocation]" \
[$this uiName] \
]
$this execute "$cmd"
}
method PsSection::preview {this} {
set cmd [list \
"previewer PsSection" \
[$this docLocation] \
[$this uiName] \
]
$this execute "$cmd" m4
}
# Do not delete this line -- regeneration end marker