home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / closeexitd.tcl < prev    next >
Text File  |  1996-05-29  |  1KB  |  49 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)closeexitd.tcl    1.5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)closeexitd.tcl    1.5   14 Nov 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class CloseExitDialog : {TemplateDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method handleOk
  20.     attribute action
  21. }
  22.  
  23. constructor CloseExitDialog {class this name} {
  24.     set this [TemplateDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this delHelpButton
  27.     Label new $this.message
  28.     $this config -modal yes -okPressed {%this handleOk} -title Close
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method CloseExitDialog::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36. }
  37.  
  38. method CloseExitDialog::popUp {this} {
  39.     $this.message text "Close will mean Exit. Do you really want to Close?"
  40.     $this TemplateDialog::popUp
  41. }
  42.  
  43. method CloseExitDialog::handleOk {this} {
  44.     eval [$this action]
  45. }
  46.  
  47. # Do not delete this line -- regeneration end marker
  48.  
  49.