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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbfontchoo.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbfontchoo.tcl    /main/titanic/2   23 Sep 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CBFontChooser : {FontChooser} {
  16.     constructor
  17.     method destructor
  18.     method handleOkPressed
  19. }
  20.  
  21. constructor CBFontChooser {class this name} {
  22.     set this [FontChooser::constructor $class $this $name]
  23.     # Start constructor user section
  24.     set M4_font__classbrowser [m4_var get M4_font -context classbrowser]
  25.     $this config -title "Class Browser Font" \
  26.         -value "$M4_font__classbrowser" \
  27.         -okPressed "%this handleOkPressed"
  28.     $this delHelpButton
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method CBFontChooser::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36. }
  37.  
  38. method CBFontChooser::handleOkPressed {this} {
  39.     if {[m4_var get M4_font -context classbrowser] == [$this value]} {
  40.         return
  41.     }
  42.     if {[catch {m4_var set M4_font [$this value] -context classbrowser}]} {
  43.         wmtkerror "Unable to set Class Browser Font"
  44.         return
  45.     }
  46.     $classBrowser setFont [$this value]
  47. }
  48.  
  49. # Do not delete this line -- regeneration end marker
  50.  
  51.