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

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