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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)notsaveddi.tcl    1.9
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)notsaveddi.tcl    1.9   16 Jan 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class NotSavedDialog : {YesNoWarningDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method handleYes
  20.     method handleNo
  21.     attribute action
  22.     attribute infoKind
  23.     attribute editor
  24. }
  25.  
  26. constructor NotSavedDialog {class this name} {
  27.     set this [YesNoWarningDialog::constructor $class $this $name]
  28.     $this infoKind "Diagram"
  29.     # Start constructor user section
  30.     $this config -title "Not Saved" \
  31.              -helpPressed {.main helpOnName notSaved} \
  32.              -yesPressed {%this handleYes} \
  33.              -noPressed {%this handleNo}
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method NotSavedDialog::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41. }
  42.  
  43. method NotSavedDialog::popUp {this} {
  44.     $this message "Save changes to [$this infoKind] first ?"
  45.     $this PopupDialog::popUp    
  46. }
  47.  
  48. method NotSavedDialog::handleYes {this} {
  49.     [$this editor] save
  50.     eval [$this action]
  51. }
  52.  
  53. method NotSavedDialog::handleNo {this} {
  54.     eval [$this action]
  55. }
  56.  
  57. # Do not delete this line -- regeneration end marker
  58.  
  59.