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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)contsysdia.tcl    /main/titanic/3
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)contsysdia.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 extends VSSysDialog with functionality to execute
  17. # continuus dialogs on the selected files.
  18.  
  19. Class ContSysDialog : {VSSysDialog} {
  20.     constructor
  21.     method destructor
  22.     method popUpContinuusDialog
  23.     attribute contDialogCommand
  24. }
  25.  
  26. constructor ContSysDialog {class this name} {
  27.     set this [VSSysDialog::constructor $class $this $name]
  28.     # Start constructor user section
  29.     # End constructor user section
  30.     return $this
  31. }
  32.  
  33. method ContSysDialog::destructor {this} {
  34.     # Start destructor user section
  35.     # End destructor user section
  36.     $this VSSysDialog::destructor
  37. }
  38.  
  39.  
  40. # Pops up the continuus dialog in 
  41. # contDialogCommand.
  42. #
  43. method ContSysDialog::popUpContinuusDialog {this} {
  44.     busy {
  45.     $this selectedFiles [.main selectedObjSet]
  46.  
  47.     foreach file [$this selectedFiles] {
  48.         [$this contDialogCommand] addArgument [$file path]
  49.     }
  50.     vsCommandHandler execute [$this contDialogCommand]
  51.  
  52.     [$this contDialogCommand] deleteArguments
  53.  
  54.     if [$this needsUpdate] {
  55.         .main updateView
  56.     }
  57.     wmtkmessage ""
  58.     }
  59. }
  60.  
  61. # Do not delete this line -- regeneration end marker
  62.  
  63.