home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / ccdestroyb.tcl < prev    next >
Text File  |  1997-03-18  |  2KB  |  58 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ccdestroyb.tcl    /main/hindenburg/2
  6. #      Author:         <generated>
  7. #      Description:    VCM integration file
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ccdestroyb.tcl    /main/hindenburg/2   18 Mar 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. Class CCDestroyBranchDialog : {VSSysDialog YesNoWarningDialog} {
  17.     method destructor
  18.     constructor
  19.     method createInterface
  20.     method popUp
  21.     attribute branch
  22. }
  23.  
  24. method CCDestroyBranchDialog::destructor {this} {
  25.     # Start destructor user section
  26.     # End destructor user section
  27.     $this VSSysDialog::destructor
  28. }
  29.  
  30. constructor CCDestroyBranchDialog {class this name} {
  31.     set this [YesNoWarningDialog::constructor $class $this $name]
  32.     $this createInterface
  33.     return $this
  34. }
  35.  
  36. method CCDestroyBranchDialog::createInterface {this} {
  37.     $this title "Destroy Branch"
  38.     $this delHelpButton
  39.  
  40.     $this yesPressed {
  41.     %this processFiles
  42.     }
  43. }
  44.  
  45. method CCDestroyBranchDialog::popUp {this} {
  46.     $this selectedFiles [.main selectedObjSet]
  47.  
  48.     $this vsMethod {
  49.     $file destroyBranch [$this branch]
  50.     }
  51.  
  52.     $this needsUpdate 1
  53.     $this YesNoWarningDialog::popUp
  54. }
  55.  
  56. # Do not delete this line -- regeneration end marker
  57.  
  58.