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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)griddialog.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)griddialog.tcl    /main/titanic/2   10 Oct 1997 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.         NamedGroup n {
  30.             label "Grid Size"
  31.             DlgRow r {
  32.                 VerRadioGroup size {
  33.                     entrySet {1 2 4 8 16 32 64}
  34.                     selected 16
  35.                 }
  36.                 spaceType EVEN
  37.             }
  38.         }
  39.     }
  40.  
  41.     $this config -modal yes -okPressed {%this updateArea} \
  42.              -helpPressed {.main helpOnName grid}
  43.  
  44.     # End constructor user section
  45.     return $this
  46. }
  47.  
  48. method GridDialog::destructor {this} {
  49.     # Start destructor user section
  50.     # End destructor user section
  51. }
  52.  
  53. method GridDialog::popUp {this} {
  54.     set area [$this area]
  55.     $this.c.n.r.size selected [$area gridSize]
  56.     $this TemplateDialog::popUp
  57. }
  58.  
  59. method GridDialog::updateArea {this} {
  60.     set area [$this area]
  61.     $area gridSize [$this.c.n.r.size selected]
  62.  
  63.     if {[m4_var get M4_grid_delta] != [$area gridSize]} {
  64.         m4_var set M4_grid_delta [$area gridSize]
  65.     }
  66. }
  67.  
  68. # Do not delete this line -- regeneration end marker
  69.  
  70.