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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)newmoduled.tcl    /main/titanic/11
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newmoduled.tcl    /main/titanic/11   23 Sep 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "selectmodu.tcl"
  15.  
  16. Class NewModuleDialog : {SelectModuleDialog} {
  17.     constructor
  18.     method destructor
  19.     method handleSuppModsStateChanged
  20. }
  21.  
  22. constructor NewModuleDialog {class this name} {
  23.     set this [SelectModuleDialog::constructor $class $this $name]
  24.     # Start constructor user section
  25.  
  26.     CheckButton new $this.c.suppMods \
  27.         -state 0 \
  28.         -label "Show Supporting Modules" \
  29.         -stateChanged "$this handleSuppModsStateChanged"
  30.     [$this filter] isSupportingModule 1
  31.  
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method NewModuleDialog::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this SelectModuleDialog::destructor
  40. }
  41.  
  42. method NewModuleDialog::handleSuppModsStateChanged {this} {
  43.     [$this filter] isSupportingModule \
  44.         [expr {[$this.c.suppMods state] ? 0 : 1}]
  45.     set dir [[$this modulesSelDlg] directory]
  46.  
  47.     $this updateView $dir
  48. }
  49.  
  50. # Do not delete this line -- regeneration end marker
  51.  
  52.