Upped revision number to 1.8
C2020-033: 2021 UPGRADE Handling of incoming transitions on delete or review
This commit is contained in:
@@ -387,6 +387,8 @@ namespace VEPROMS
|
||||
tv.InsertItemInfo += new vlnTreeViewItemInfoInsertEvent(tv_InsertItemInfo);
|
||||
tv.NodeInsert += new vlnTreeViewEvent(tv_NodeInsert);
|
||||
tv.PasteItemInfo += new vlnTreeViewItemInfoPasteEvent(tv_PasteItemInfo);
|
||||
tv.SearchIncTrans += new vlnTreeViewSearchIncTransEvent(tv_SearchIncTrans);
|
||||
tc.SearchIncTrans += new DisplayTabControlEditorSearchIncTransEvent(tc_SearchIncTrans);
|
||||
tv.GetChangeId += new vlnTreeViewGetChangeIdEvent(tv_GetChangeId);
|
||||
tv.NodeCopy += new vlnTreeViewEvent(tv_NodeCopy);
|
||||
tv.ClipboardStatus += new vlnTreeViewClipboardStatusEvent(tv_ClipboardStatus);
|
||||
@@ -1198,6 +1200,22 @@ namespace VEPROMS
|
||||
{
|
||||
return tc.PasteRTBItem(args.MyItemInfo, args.CopyStartID, args.PasteType, (int)args.Type);
|
||||
}
|
||||
// C2020-033: Display the search panel with Incoming Transition info for the tree view
|
||||
// and for the editor.
|
||||
private ItemInfo tv_SearchIncTrans(object sender, vlnTreeItemInfoEventArgs args)
|
||||
{
|
||||
displaySearch1.SearchIncTransII = args.MyItemInfo;
|
||||
toolsPanel.Expanded = true;
|
||||
displaySearch1.UpdateSearchIncTransResults();
|
||||
return args.MyItemInfo;
|
||||
}
|
||||
private ItemInfo tc_SearchIncTrans(object sender, vlnTreeItemInfoEventArgs args)
|
||||
{
|
||||
displaySearch1.SearchIncTransII = args.MyItemInfo;
|
||||
toolsPanel.Expanded = true;
|
||||
displaySearch1.UpdateSearchIncTransResults();
|
||||
return args.MyItemInfo;
|
||||
}
|
||||
private bool _RemoveFromPROMSWindowForms = true;
|
||||
public bool ClosingWithError = false; // B2019-098: prevent looping between error & exit dialog
|
||||
private bool _WeAreExitingPROMS = false; // B2019-101 if exiting PROMS from main window don't prompt on each child window (separate windows)
|
||||
@@ -1636,6 +1654,7 @@ namespace VEPROMS
|
||||
StepTabRibbon.MyUserInfo = MyUserInfo; // set the user's security information in the ribbon
|
||||
DisplayTransition.MyUserInfo = MyUserInfo; // set the user's security information in the Transition panel
|
||||
DisplayTags.MyUserInfo = MyUserInfo; // set the user's security information in the Tags panel
|
||||
DisplaySearch.MyUserInfo = MyUserInfo; // set the user's security information in the Search panel
|
||||
DisplayHistory.MyUserInfo = MyUserInfo; // set the user's security information in the History panel
|
||||
DisplayApplicability.MyUserInfo = MyUserInfo; // set the user's security information in the Applicability panel
|
||||
StepRTB.MyUserInfo = MyUserInfo; // set the user's security information in the StepRTB
|
||||
|
Reference in New Issue
Block a user