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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)yesnodialo.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)yesnodialo.tcl    /main/titanic/3   21 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class YesNoDialog : {TemplateDialog} {
  16.     constructor
  17.     method destructor
  18.     method createDialog
  19.     method popUp
  20.     attribute message
  21. }
  22.  
  23. constructor YesNoDialog {class this name} {
  24.     set this [TemplateDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.     $this createDialog
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method YesNoDialog::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34. }
  35.  
  36. method YesNoDialog::createDialog {this} {
  37.     interface DlgRow $this.row {
  38.     Label message {
  39.     }
  40.     }
  41.  
  42.     PushButton new $this.yes \
  43.         -label "Yes" \
  44.         -activated "$this popDown; $this yesPressed"
  45.  
  46.     PushButton new $this.no \
  47.         -label "No" \
  48.         -activated "$this popDown; $this noPressed"
  49.  
  50.     $this delHelpButton
  51.     $this delOkButton
  52. }
  53.  
  54. method YesNoDialog::popUp {this} {
  55.     $this.row.message text [$this message]
  56.     $this TemplateDialog::popUp
  57. }
  58.  
  59. # Do not delete this line -- regeneration end marker
  60.  
  61.