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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)ccchangeco.tcl    /main/titanic/4
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)ccchangeco.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. # Dialog for changing the comment of a file.
  17.  
  18. Class CCChangeCommentDialog : {CCCommentDialog} {
  19.     constructor
  20.     method destructor
  21.     method popUp
  22. }
  23.  
  24. constructor CCChangeCommentDialog {class this name} {
  25.     set this [CCCommentDialog::constructor $class $this $name]
  26.     # Start constructor user section
  27.         $this createInterface
  28.     # End constructor user section
  29.     return $this
  30. }
  31.  
  32. method CCChangeCommentDialog::destructor {this} {
  33.     # Start destructor user section
  34.     # End destructor user section
  35.     $this CCCommentDialog::destructor
  36. }
  37.  
  38.  
  39. # Prepare interface and pop up.
  40. #
  41. method CCChangeCommentDialog::popUp {this} {
  42.     $this selectedFiles [.main selectedObjSet]
  43.     $this title "Change comment"
  44.    
  45.     $this.col.label text "Comments for [$this selectionDescription]:\n"    
  46.     $this setComment
  47.  
  48.     # action; also update info if action succeeds
  49.     $this vsMethod {
  50.     set comment [$this.col.comments text] 
  51.     set result [$file setComment $comment]
  52.     if $result {
  53.         $file setInfo Comments $comment
  54.     }
  55.     set result
  56.     }
  57.  
  58.     $this needsUpdate 0
  59.     $this TemplateDialog::popUp
  60. }
  61.  
  62. # Do not delete this line -- regeneration end marker
  63.  
  64.