home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / fmsection.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  86 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)fmsection.tcl    1.8
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)fmsection.tcl    1.8   12 Feb 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "localsecti.tcl"
  15.  
  16. Class FmSection : {LocalSection} {
  17.     constructor
  18.     method destructor
  19.     method promoter
  20.     method edit
  21.     method show
  22.     method preview
  23.     method print
  24.     method escapeText
  25. }
  26.  
  27. constructor FmSection {class this name document} {
  28.     set this [LocalSection::constructor $class $this $name $document]
  29.     # Start constructor user section
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method FmSection::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37.     $this LocalSection::destructor
  38. }
  39.  
  40. method FmSection::promoter {this document} {
  41.     $this DocSection::promoter $document
  42.  
  43.     $this operationClass manipulate
  44. }
  45.  
  46. proc FmSection::isAscii {} {
  47.     return 0
  48. }
  49.  
  50. method FmSection::edit {this} {
  51.  
  52.     # edit with the document editor command
  53.     [[$this document] editor] edit $this
  54. }
  55.  
  56. method FmSection::show {this} {
  57.  
  58.     # show with the document editor command
  59.     [[$this document] editor] show $this
  60. }
  61.  
  62. method FmSection::preview {this} {
  63.  
  64.     # preview with the document editor command
  65.     [[$this document] editor] preview $this
  66. }
  67.  
  68. method FmSection::print {this} {
  69.  
  70.     # print with the document editor command
  71.     [[$this document] editor] print $this
  72. }
  73.  
  74. method FmSection::escapeText {this text} {
  75.  
  76.     set sn $text
  77.     if {[regsub -all {\\} $sn {\\\\} snn]} {set sn $snn}
  78.     if {[regsub -all {'}  $sn {\\'}  snn]} {set sn $snn}
  79.     if {[regsub -all {<}  $sn {\\<}  snn]} {set sn $snn}
  80.     if {[regsub -all {>}  $sn {\\>}  snn]} {set sn $snn}
  81.     return $sn
  82. }
  83.  
  84. # Do not delete this line -- regeneration end marker
  85.  
  86.