home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)repdumpobj.tcl /main/titanic/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)repdumpobj.tcl /main/titanic/2 25 Jul 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "repdumpdia.tcl"
-
- Class RepDumpObjDialog : {RepDumpDialog} {
- constructor
- method destructor
- }
-
- constructor RepDumpObjDialog {class this name view} {
- set this [RepDumpDialog::constructor $class $this $name $view]
- # Start constructor user section
-
- interface DlgColumn [$this nameRow].b {
- spaceType EVEN
- horStretchFactor 0
- PushButton browse {
- horStretchFactor 0
- label "Browse..."
- }
- }
-
- [$this nameRow].b.browse activated "$this browseObjects"
-
- # End constructor user section
- return $this
- }
-
- method RepDumpObjDialog::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this RepDumpDialog::destructor
- }
-
- # Do not delete this line -- regeneration end marker
-
-