home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / mtoptionme.tcl < prev    next >
Text File  |  1997-07-18  |  2KB  |  57 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)mtoptionme.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)mtoptionme.tcl    /main/titanic/1   18 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class MTOptionMenuProcs : {Object} {
  16.     constructor
  17.     method destructor
  18. }
  19.  
  20. constructor MTOptionMenuProcs {class this} {
  21.     set this [Object::constructor $class $this $name]
  22.     # Start constructor user section
  23.     # End constructor user section
  24.     return $this
  25. }
  26.  
  27. method MTOptionMenuProcs::destructor {this} {
  28.     # Start destructor user section
  29.     # End destructor user section
  30. }
  31.  
  32. proc MTOptionMenuProcs::selectFont {} {
  33.  
  34.     # retrieve M4 variable
  35.     set M4_font__mt [m4_var get M4_font -context mt]
  36.  
  37.     busy {
  38.     FontChooser new .main.font \
  39.         -title "Browser Font" \
  40.         -value "$M4_font__mt" \
  41.         -cancelPressed {%this delete} \
  42.         -okPressed {
  43.         [.main infoView] font [%this value]
  44.         [.main navigView] font [%this value]
  45.         if {"[m4_var get M4_font -context mt]" != "[%this value]"} {
  46.             catch {m4_var set M4_font "[%this value]" -context mt}
  47.         }
  48.         %this delete
  49.         }
  50.     }
  51.     .main.font delHelpButton
  52.     .main.font popUp
  53. }
  54.  
  55. # Do not delete this line -- regeneration end marker
  56.  
  57.