home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / griddialog.tcl < prev    next >
Text File  |  1996-08-22  |  2KB  |  69 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)griddialog.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)griddialog.tcl    /main/hindenburg/1   22 Aug 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class GridDialog : {TemplateDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method updateArea
  20.     attribute area
  21. }
  22.  
  23. constructor GridDialog {class this name} {
  24.     set this [TemplateDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.  
  27.     $this title Grid
  28.     interface DlgColumn $this.c {
  29.         DlgRow r {
  30.             Label lab {
  31.                 text "Grid size:"
  32.             }
  33.             OptionMenu size {
  34.                 entrySet {1 2 4 8 16 32 64}
  35.                 selected 16
  36.             }
  37.         }
  38.     }
  39.  
  40.     $this config -modal yes -okPressed {%this updateArea} \
  41.              -helpPressed {.main helpOnName grid}
  42.  
  43.     # End constructor user section
  44.     return $this
  45. }
  46.  
  47. method GridDialog::destructor {this} {
  48.     # Start destructor user section
  49.     # End destructor user section
  50. }
  51.  
  52. method GridDialog::popUp {this} {
  53.     set area [$this area]
  54.     $this.c.r.size selected [$area gridSize]
  55.     $this TemplateDialog::popUp
  56. }
  57.  
  58. method GridDialog::updateArea {this} {
  59.     set area [$this area]
  60.     $area gridSize [$this.c.r.size selected]
  61.  
  62.     if {[m4_var get M4_grid_delta] != [$area gridSize]} {
  63.         m4_var set M4_grid_delta [$area gridSize]
  64.     }
  65. }
  66.  
  67. # Do not delete this line -- regeneration end marker
  68.  
  69.