home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Westmount Technology 1994
- #
- # File: @(#)fmmmlsecti.tcl 1.9
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)fmmmlsecti.tcl 1.9 12 Feb 1996 Copyright 1994 Westmount Technology
-
- # Start user added include file section
- # End user added include file section
-
- require "localsecti.tcl"
-
- Class FmMmlSection : {LocalSection} {
- constructor
- method destructor
- method promoter
- method edit
- method show
- method print
- }
-
- constructor FmMmlSection {class this name document} {
- set this [LocalSection::constructor $class $this $name $document]
- # Start constructor user section
- # End constructor user section
- return $this
- }
-
- method FmMmlSection::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this LocalSection::destructor
- }
-
- method FmMmlSection::promoter {this document} {
- $this extension mml
- $this DocSection::promoter $document
-
- $this uiType MML
- }
-
- method FmMmlSection::edit {this} {
-
- set cmd [list editor [$this docLocation] [$this uiName]]
- $this execute "$cmd" m4
- }
-
- method FmMmlSection::show {this} {
-
- set cmd [list viewer [$this docLocation] [$this uiName]]
- $this execute "$cmd" m4
- }
-
- method FmMmlSection::print {this} {
-
- set cmd [list \
- "[m4_var get M4_a_printer] [$this docLocation]" \
- [$this uiName] \
- ]
- $this execute "$cmd"
- }
-
- # Do not delete this line -- regeneration end marker
-
-