Upped revision number to 1.8
C2020-033: 2021 UPGRADE Handling of incoming transitions on delete or review
This commit is contained in:
@@ -13,6 +13,7 @@ using Volian.Base.Library;
|
||||
|
||||
namespace Volian.Controls.Library
|
||||
{
|
||||
public delegate ItemInfo DisplayTabControlEditorSearchIncTransEvent(object sender, vlnTreeItemInfoEventArgs args);
|
||||
public delegate void DisplayTabControlEvent(object sender,EventArgs args);
|
||||
public delegate void DisplayTabControlStatusEvent(object sender, DisplayTabControlStatusEventArgs args);
|
||||
public partial class DisplayTabControlStatusEventArgs : EventArgs
|
||||
@@ -150,6 +151,13 @@ namespace Volian.Controls.Library
|
||||
if (OpenInSeparateWindow != null)
|
||||
OpenInSeparateWindow(this, args);
|
||||
}
|
||||
// C2020-033: Provide way to expand/fill in Search/Incoming Transition panel
|
||||
public event DisplayTabControlEditorSearchIncTransEvent SearchIncTrans;
|
||||
public ItemInfo OnSearchIncTrans(object sender, vlnTreeItemInfoEventArgs args)
|
||||
{
|
||||
if (SearchIncTrans != null) return SearchIncTrans(sender, args);
|
||||
return args.MyItemInfo;
|
||||
}
|
||||
public event ItemSelectedChangedEvent RefreshEnhancedDocument;
|
||||
public void OnRefreshEnhancedDocument(ItemSelectedChangedEventArgs args)
|
||||
{
|
||||
|
Reference in New Issue
Block a user