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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)cdmscopech.tcl    /main/titanic/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cdmscopech.tcl    /main/titanic/1   27 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 "scopechang.tcl"
  15.  
  16. # This dialog is the scope change dialog for Cdms in the browser.
  17.  
  18. Class CdmScopeChangeDialog : {ScopeChangeDialog} {
  19.     constructor
  20.     method destructor
  21.     method popUp
  22. }
  23.  
  24. constructor CdmScopeChangeDialog {class this name} {
  25.     set this [ScopeChangeDialog::constructor $class $this $name]
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method CdmScopeChangeDialog::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this ScopeChangeDialog::destructor
  35. }
  36.  
  37.  
  38. # Set allowedscopes and initial scope and popUp.
  39. #
  40. method CdmScopeChangeDialog::popUp {this} {
  41.     set item [$this item]
  42.     set workItem [$this workItem]
  43.     if [$workItem isNil] {
  44.     wmtkerror "There is no work item for item '[$item name]'\nScope Change is not possible."
  45.     $this delete
  46.     return
  47.     }
  48.     set scope [$workItem scope]
  49.     if {$scope == "scopePhaseRef" || $scope == "scopePhaseDef"} {
  50.     set scope scopePhase
  51.     }
  52.     $this allowedScopes "scopePhase scopeSystem"
  53.     set selected ""
  54.     foreach newScope [$this allowedScopes] {
  55.     if {$newScope == $scope} {
  56.         set selected \
  57.             "Current scope is [string range $scope 5 end]"
  58.         $this addOption $selected
  59.         $this addAction ""
  60.     } else {
  61.         $this ${scope}_${newScope}
  62.     }
  63.     }
  64.     $this.c.group entrySet [[$this optionSet] contents]
  65.     $this.c.group selected $selected
  66.     $this TemplateDialog::popUp
  67. }
  68.  
  69. # Do not delete this line -- regeneration end marker
  70.  
  71.