home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
modelreser.tcl
< prev
next >
Wrap
Text File
|
1997-07-04
|
1KB
|
57 lines
#---------------------------------------------------------------------------
#
# (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