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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)vssyswarni.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)vssyswarni.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. require_module_file "vssysdialo.tcl" vcm
  15.  
  16. # This class provides a general warning dialog.
  17. # If yes is Pressed the selected files are processed
  18. # as in VSSysDialog.
  19.  
  20. Class VSSysWarningDialog : {YesNoWarningDialog VSSysDialog} {
  21.     method destructor
  22.     constructor
  23.     method createInterface
  24.     method popUp
  25.  
  26.     # This string together with the description of
  27.     # the selected files makes up the warning message.
  28.     # The title is also constructed from this string.
  29.     #
  30.     attribute action
  31. }
  32.  
  33. method VSSysWarningDialog::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this VSSysDialog::destructor
  37. }
  38.  
  39. constructor VSSysWarningDialog {class this name} {
  40.     set this [YesNoWarningDialog::constructor $class $this $name]
  41.     $this createInterface
  42.     $this needsUpdate 1
  43.     return $this
  44. }
  45.  
  46. method VSSysWarningDialog::createInterface {this} {
  47.     $this delHelpButton
  48.  
  49.     $this yesPressed {
  50.         %this processFiles
  51.     }
  52. }
  53.  
  54. method VSSysWarningDialog::popUp {this} {
  55.     $this selectedFiles [.main selectedObjSet]
  56.  
  57.     $this title "[lindex [$this action] 0] warning"
  58.     $this message "[$this action] [$this selectionDescription] ?"
  59.     
  60.     $this YesNoWarningDialog::popUp
  61. }
  62.  
  63. # Do not delete this line -- regeneration end marker
  64.  
  65.