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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)repunarmod.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)repunarmod.tcl    /main/titanic/5   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 RepUnarModelDialog : {RepUnarObjDialog} {
  17.     constructor
  18.     method destructor
  19.     method objType
  20.     method objDescription
  21.     method unarchive
  22. }
  23.  
  24. constructor RepUnarModelDialog {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 Model" \
  30.             -helpPressed "$view helpOnName unarchiveModel"
  31.  
  32.     # End constructor user section
  33.     return $this
  34. }
  35.  
  36. method RepUnarModelDialog::destructor {this} {
  37.     # Start destructor user section
  38.     # End destructor user section
  39.     $this RepUnarObjDialog::destructor
  40. }
  41.  
  42. method RepUnarModelDialog::objType {this} {
  43.     return "Model"
  44. }
  45.  
  46. method RepUnarModelDialog::objDescription {this} {
  47.     return "model archive '[[$this srcField] text]'"
  48. }
  49.  
  50. method RepUnarModelDialog::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 "model"]
  58. }
  59.  
  60. # Do not delete this line -- regeneration end marker
  61.  
  62.