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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cccreatebr.tcl    /main/titanic/5
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cccreatebr.tcl    /main/titanic/5   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. Class CCCreateBranchDialog : {CCCommentDialog} {
  17.     constructor
  18.     method destructor
  19.     method createInterface
  20.     method popUp
  21.  
  22.     # The available branches.
  23.     #
  24.     attribute branches
  25. }
  26.  
  27. constructor CCCreateBranchDialog {class this name} {
  28.     set this [CCCommentDialog::constructor $class $this $name]
  29.     # Start constructor user section
  30.         $this createInterface
  31.     # End constructor user section
  32.     return $this
  33. }
  34.  
  35. method CCCreateBranchDialog::destructor {this} {
  36.     # Start destructor user section
  37.     # End destructor user section
  38.     $this CCCommentDialog::destructor
  39. }
  40.  
  41. method CCCreateBranchDialog::createInterface {this} {
  42.     $this title "Create Branch"
  43.     
  44.     # create branch selection part
  45.     DlgColumn new $this.col
  46.     Label new $this.col.label \
  47.             -text "Select Branch Type:"
  48.     TextList new $this.col.branches
  49.  
  50.     # create comment part
  51.     $this CCCommentDialog::createInterface
  52.  
  53.     # make sure Ok is only enabled if a selection has been made
  54.     $this okSensitive 0
  55.     $this.col.branches selectionChanged {
  56.     [[%this parent] parent] okSensitive 1
  57.     }
  58.  
  59. }
  60.  
  61.  
  62. # Prepare interface and pop up.
  63. #
  64. method CCCreateBranchDialog::popUp {this} {
  65.     $this selectedFiles [.main selectedObjSet]
  66.  
  67.     # comment label
  68.     $this.col.label text "Creation comments:\n"
  69.     
  70.     # put branches in selection list
  71.     $this.col.branches entrySet [$this branches]
  72.  
  73.     $this vsMethod {
  74.     $file createBranch \
  75.         [lindex [$this.col.branches selectedSet] 0] \
  76.         [$this.col.comments text]
  77.     }
  78.  
  79.     $this needsUpdate 1
  80.     
  81.     $this TemplateDialog::popUp
  82. }
  83.  
  84. # Do not delete this line -- regeneration end marker
  85.  
  86.