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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)repdumpobj.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)repdumpobj.tcl    /main/titanic/2   25 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "repdumpdia.tcl"
  15.  
  16. Class RepDumpObjDialog : {RepDumpDialog} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor RepDumpObjDialog {class this name view} {
  22.     set this [RepDumpDialog::constructor $class $this $name $view]
  23.     # Start constructor user section
  24.  
  25.         interface DlgColumn [$this nameRow].b {
  26.         spaceType EVEN
  27.         horStretchFactor 0
  28.         PushButton browse {
  29.         horStretchFactor 0
  30.         label "Browse..."
  31.         }
  32.     }
  33.  
  34.         [$this nameRow].b.browse activated "$this browseObjects"
  35.  
  36.     # End constructor user section
  37.     return $this
  38. }
  39.  
  40. method RepDumpObjDialog::destructor {this} {
  41.     # Start destructor user section
  42.     # End destructor user section
  43.     $this RepDumpDialog::destructor
  44. }
  45.  
  46. # Do not delete this line -- regeneration end marker
  47.  
  48.