home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cccheckout.tcl < prev    next >
Text File  |  1997-08-29  |  2KB  |  77 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cccheckout.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cccheckout.tcl    /main/titanic/4   29 Aug 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require_module_file "cccommentd.tcl" clearcase
  15.  
  16. # This is the checkout dialog for ClearCase files.
  17.  
  18. Class CCCheckOutDialog : {CCCommentDialog} {
  19.     constructor
  20.     method destructor
  21.     method setTitle
  22.     method popUp
  23.  
  24.     # Indicates whether this must be a dialog for reserved or unreserved checkouts.
  25.     #
  26.     attribute reserved
  27. }
  28.  
  29. constructor CCCheckOutDialog {class this name} {
  30.     set this [CCCommentDialog::constructor $class $this $name]
  31.     # Start constructor user section
  32.         $this createInterface
  33.     # End constructor user section
  34.     return $this
  35. }
  36.  
  37. method CCCheckOutDialog::destructor {this} {
  38.     # Start destructor user section
  39.     # End destructor user section
  40.     $this CCCommentDialog::destructor
  41. }
  42.  
  43.  
  44. # Set the title according to reserved.
  45. #
  46. method CCCheckOutDialog::setTitle {this} {
  47.     if [$this reserved] {
  48.      $this title "Checkout reserved"
  49.     } else {
  50.     $this title  "Checkout unreserved"
  51.     }
  52. }
  53.  
  54.  
  55. # Prepare interface and pop up.
  56. #
  57. method CCCheckOutDialog::popUp {this} {
  58.     $this selectedFiles [.main selectedObjSet]
  59.     $this setTitle
  60.  
  61.     # make comment label
  62.     $this.col.label text \
  63.         "Checkout comments for [$this selectionDescription]:\n"
  64.  
  65.     # specify the action
  66.     $this vsMethod {
  67.     $file checkOut [$this.col.comments text] [$this reserved]
  68.     }
  69.  
  70.     $this needsUpdate 1
  71.  
  72.     $this TemplateDialog::popUp
  73. }
  74.  
  75. # Do not delete this line -- regeneration end marker
  76.  
  77.