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 >
Text File  |  1997-07-04  |  1KB  |  57 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)modelreser.tcl    /main/titanic/2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)modelreser.tcl    /main/titanic/2   4 Jul 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14.  
  15. Class ModelReserveDialog : {EntryDialog} {
  16.     constructor
  17.     method destructor
  18.     method popUp
  19.     method ok
  20.     method cancel
  21.     attribute model
  22. }
  23.  
  24. constructor ModelReserveDialog {class this name} {
  25.     set this [EntryDialog::constructor $class $this $name]
  26.     # Start constructor user section
  27.  
  28.     $this config \
  29.         -title "Reserve Model" \
  30.         -modal 1 \
  31.         -message "Comments:" \
  32.         -okPressed "busy { $this ok }"
  33.  
  34.     # End constructor user section
  35.     return $this
  36. }
  37.  
  38. method ModelReserveDialog::destructor {this} {
  39.     # Start destructor user section
  40.     # End destructor user section
  41. }
  42.  
  43. method ModelReserveDialog::popUp {this} {
  44.     $this EntryDialog::popUp
  45. }
  46.  
  47. method ModelReserveDialog::ok {this} {
  48.     set model [$this model]
  49.     $model reserve [$this entry]
  50. }
  51.  
  52. method ModelReserveDialog::cancel {this} {
  53. }
  54.  
  55. # Do not delete this line -- regeneration end marker
  56.  
  57.