home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / reptoolfon.tcl < prev    next >
Text File  |  1996-09-16  |  1KB  |  55 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1996
  4. #
  5. #      File:           %W%
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = %W%   %G% Copyright 1996 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class RepToolFontChooser : {FontChooser} {
  16.     constructor
  17.     method destructor
  18.     method ok
  19.     attribute tool
  20. }
  21.  
  22. constructor RepToolFontChooser {class this name tool} {
  23.     set this [FontChooser::constructor $class $this $name]
  24.     $this tool $tool
  25.     # Start constructor user section
  26.  
  27.     $this config \
  28.                 -title "[$tool iconTitle] Font" \
  29.         -value [$tool getFont] \
  30.         -okPressed "%this ok"
  31.  
  32.     $this delHelpButton
  33.  
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method RepToolFontChooser::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41. }
  42.  
  43. method RepToolFontChooser::ok {this} {
  44.     set tool [$this tool]
  45.     set newFont [$this value]
  46.     set oldFont [$tool getFont]
  47.  
  48.     if {$newFont != $oldFont} {
  49.     $tool setFont $newFont
  50.     }
  51. }
  52.  
  53. # Do not delete this line -- regeneration end marker
  54.  
  55.