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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)repunarpro.tcl    /main/titanic/6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)repunarpro.tcl    /main/titanic/6   28 Nov 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "repunarobj.tcl"
  15.  
  16. Class RepUnarProjectDialog : {RepUnarObjDialog} {
  17.     constructor
  18.     method destructor
  19.     method objType
  20.     method objDescription
  21.     method unarchive
  22. }
  23.  
  24. constructor RepUnarProjectDialog {class this name view} {
  25.     set this [RepUnarObjDialog::constructor $class $this $name $view]
  26.     # Start constructor user section
  27.  
  28.         $this config \
  29.             -title "Unarchive Single Project" \
  30.             -helpPressed "$view helpOnName unarchiveProject"
  31.  
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method RepUnarProjectDialog::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this RepUnarObjDialog::destructor
  40. }
  41.  
  42. method RepUnarProjectDialog::objType {this} {
  43.     return "Project"
  44. }
  45.  
  46. method RepUnarProjectDialog::objDescription {this} {
  47.     return "project archive '[[$this srcField] text]'"
  48. }
  49.  
  50. method RepUnarProjectDialog::unarchive {this} {
  51.     set rep [[$this view] rep]
  52.     set srcFile [[$this srcField] text]
  53.     set repName [$this currentRepositoryName]
  54.     set repDir [$this currentRepositoryDir]
  55.  
  56.     return [$rep unarchiveObjectDirectory "$this unarchiveFinished" \
  57.             $srcFile $repName $repDir "project"]
  58. }
  59.  
  60. # Do not delete this line -- regeneration end marker
  61.  
  62.