home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)modelreser.tcl /main/titanic/2
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)modelreser.tcl /main/titanic/2 4 Jul 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
-
- Class ModelReserveDialog : {EntryDialog} {
- constructor
- method destructor
- method popUp
- method ok
- method cancel
- attribute model
- }
-
- constructor ModelReserveDialog {class this name} {
- set this [EntryDialog::constructor $class $this $name]
- # Start constructor user section
-
- $this config \
- -title "Reserve Model" \
- -modal 1 \
- -message "Comments:" \
- -okPressed "busy { $this ok }"
-
- # End constructor user section
- return $this
- }
-
- method ModelReserveDialog::destructor {this} {
- # Start destructor user section
- # End destructor user section
- }
-
- method ModelReserveDialog::popUp {this} {
- $this EntryDialog::popUp
- }
-
- method ModelReserveDialog::ok {this} {
- set model [$this model]
- $model reserve [$this entry]
- }
-
- method ModelReserveDialog::cancel {this} {
- }
-
- # Do not delete this line -- regeneration end marker
-
-