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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)repunarcor.tcl    /main/titanic/6
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)repunarcor.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 "repunardia.tcl"
  15.  
  16. Class RepUnarCorporateDialog : {RepUnarDialog} {
  17.     constructor
  18.     method destructor
  19.     method objType
  20.     method objDescription
  21.     method unarchive
  22. }
  23.  
  24. constructor RepUnarCorporateDialog {class this name view} {
  25.     set this [RepUnarDialog::constructor $class $this $name $view]
  26.     # Start constructor user section
  27.  
  28.         $this config \
  29.             -title "Unarchive Entire Corporate" \
  30.             -helpPressed "$view helpOnName unarchiveCorporate"
  31.  
  32.         interface DlgColumn $this.c.r.b {
  33.         spaceType EVEN
  34.         horStretchFactor 0
  35.         PushButton browse {
  36.         horStretchFactor 0
  37.         label "Browse..."
  38.         }
  39.     }
  40.     $this.c.r.n.dir editable 1
  41.     $this.c.r.b.browse activated "$this browseDirectory"
  42.  
  43.         [$this dirLabel] text "Into Directory"
  44.  
  45.         set rep [$view rep]
  46.         set corp [$rep currentCorporate]
  47.         if ![$corp isNil] {
  48.         set repDir [$rep currentRepDir]
  49.         $this setDirectory [file dir $repDir]
  50.         }
  51.  
  52.     # End constructor user section
  53.     return $this
  54. }
  55.  
  56. method RepUnarCorporateDialog::destructor {this} {
  57.     # Start destructor user section
  58.     # End destructor user section
  59.     $this RepUnarDialog::destructor
  60. }
  61.  
  62. method RepUnarCorporateDialog::objType {this} {
  63.     return "Corporate"
  64. }
  65.  
  66. method RepUnarCorporateDialog::objDescription {this} {
  67.     return "repository archive '[[$this srcField] text]'"
  68. }
  69.  
  70. method RepUnarCorporateDialog::unarchive {this} {
  71.     set rep [[$this view] rep]
  72.     set srcFile [[$this srcField] text]
  73.     set repParentDir [[$this dirField] text]
  74.  
  75.     return [$rep unarchiveRepositoryDirectory "$this unarchiveFinished" \
  76.             $srcFile $repParentDir]
  77. }
  78.  
  79. # Do not delete this line -- regeneration end marker
  80.  
  81.