home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / reparchobj.tcl < prev    next >
Text File  |  1997-07-18  |  1KB  |  51 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)reparchobj.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)reparchobj.tcl    /main/titanic/2   18 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. require "repdirbrow.tcl"
  13. # End user added include file section
  14.  
  15. require "reparchdia.tcl"
  16.  
  17. Class RepArchObjDialog : {RepArchDialog} {
  18.     constructor
  19.     method destructor
  20.     method popUp
  21. }
  22.  
  23. constructor RepArchObjDialog {class this name view} {
  24.     set this [RepArchDialog::constructor $class $this $name $view]
  25.     # Start constructor user section
  26.  
  27.         set objDir [path_name concat [[$view rep] lastRepDir] .]
  28.         $this setDirectory $objDir
  29.  
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method RepArchObjDialog::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37.     $this RepArchDialog::destructor
  38. }
  39.  
  40. method RepArchObjDialog::popUp {this} {
  41.     set rep [[$this view] rep]
  42.     set repDir [$rep currentRepDir]
  43.     set objDir [location $repDir [string tolower [$this objType]]]
  44.     [$this dstField] text [Repository::defaultDumpFile $objDir]
  45.  
  46.     $this RepArchDialog::popUp
  47. }
  48.  
  49. # Do not delete this line -- regeneration end marker
  50.  
  51.