home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / newccfiled.tcl < prev    next >
Text File  |  1997-03-18  |  2KB  |  71 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)newccfiled.tcl    /main/hindenburg/2
  6. #      Author:         <generated>
  7. #      Description:    VCM integration file
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)newccfiled.tcl    /main/hindenburg/2   18 Mar 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 "newvsfiled.tcl" vcm
  15.  
  16. Class NewCCFileDialog : {NewVSFileDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method createVSFile
  21. }
  22.  
  23. constructor NewCCFileDialog {class this name} {
  24.     set this [NewVSFileDialog::constructor $class $this $name]
  25.     # Start constructor user section
  26.     # End constructor user section
  27.     return $this
  28. }
  29.  
  30. method NewCCFileDialog::destructor {this} {
  31.     # Start destructor user section
  32.     # End destructor user section
  33.     $this NewVSFileDialog::destructor
  34. }
  35.  
  36.  
  37. # Add creation comments to the dialog.
  38. #
  39. method NewCCFileDialog::createInterface {this} {
  40.     $this NewVSFileDialog::createInterface
  41.  
  42.     # Adjust the interface
  43.     $this title "New ClearCase File"
  44.     
  45.     Label new $this.DC.L -text "Creation comments:"
  46.     MultiLineText new $this.DC.CCFileComment -columnCount 80
  47. }
  48.  
  49.  
  50. # Create the ClearCase file.
  51. #
  52. method NewCCFileDialog::createVSFile {this name type} {
  53.     wmtkmessage "Creating ClearCase file '$name'"
  54.  
  55.     vsCommandHandler suspendOutput
  56.     busy {
  57.     set comment [$this.DC.CCFileComment text]
  58.     set ccSystem [[ClientContext::global] currentSystem]
  59.     set ccFile [$ccSystem createVSFile $name $type "$comment"]
  60.  
  61.     .main updateView
  62.     }
  63.     wmtkmessage ""
  64.     vsCommandHandler showOutput
  65.  
  66.     return $ccFile
  67. }
  68.  
  69. # Do not delete this line -- regeneration end marker
  70.  
  71.