home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / browseropt.tcl < prev    next >
Text File  |  1997-10-16  |  3KB  |  99 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)browseropt.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)browseropt.tcl    /main/titanic/4   16 Oct 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "tooloption.tcl"
  15.  
  16. Class BrowserOptions : {ToolOptions} {
  17.     constructor
  18.     method destructor
  19.     method font
  20.     method compareCmd
  21.     method editor
  22.     method previewer
  23.     method viewer
  24.     attribute editorContexts
  25.     attribute previewerContexts
  26.     attribute viewerContexts
  27. }
  28.  
  29. constructor BrowserOptions {class this name} {
  30.     set this [ToolOptions::constructor $class $this $name]
  31.     # Start constructor user section
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method BrowserOptions::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this ToolOptions::destructor
  40. }
  41.  
  42. method BrowserOptions::font {this} {
  43.     # retrieve M4 variable
  44.     set M4_font__desk [m4_var get M4_font -context desk]
  45.  
  46.     busy {
  47.     FontChooser new $wmttoolObj.font \
  48.         -title "Browser Font" \
  49.         -value "$M4_font__desk" \
  50.         -cancelPressed {%this delete} \
  51.         -helpPressed {.main helpOnName font} \
  52.         -okPressed {
  53.         [$wmttoolObj flatView] font [%this value]
  54.         [$wmttoolObj treeView] font [%this value]
  55.         if {"[m4_var get M4_font -context desk]" != "[%this value]"} {
  56.             catch {m4_var set M4_font "[%this value]" -context desk}
  57.         }
  58.         %this delete
  59.         }
  60.     }
  61.     $wmttoolObj.font popUp
  62. }
  63.  
  64. method BrowserOptions::compareCmd {this} {
  65.     # retrieve M4 variables
  66.     set M4_diff [m4_var get M4_diff]
  67.  
  68.     # create dialog box
  69.     EntryDialog new $wmttoolObj.compareCommand \
  70.     -modal yes \
  71.     -title "Compare Command" \
  72.     -message "Compare Command:" \
  73.     -entry $M4_diff \
  74.     -helpPressed {.main helpOnName compareCommand} \
  75.     -cancelPressed {%this delete} \
  76.     -okPressed {
  77.         if {"[m4_var get M4_diff]" != "[%this entry]"} {
  78.         catch {m4_var set M4_diff [%this entry]}
  79.         }
  80.         %this delete
  81.     }
  82.     $wmttoolObj.compareCommand popUp
  83. }
  84.  
  85. method BrowserOptions::editor {this} {
  86.     $this createBox editor
  87. }
  88.  
  89. method BrowserOptions::previewer {this} {
  90.     $this createBox previewer
  91. }
  92.  
  93. method BrowserOptions::viewer {this} {
  94.     $this createBox viewer
  95. }
  96.  
  97. # Do not delete this line -- regeneration end marker
  98.  
  99.