B2019-161 Timing of display history

B2019-161 Timing of display RO
B2019-161 Timing of display search
B2019-161 Timing of display tab control
B2019-161 Timing of DSO Tab Panel Refresh
B2019-161 Timing of close word app
B2019-161 Timing of MyStepRTB selection changed
This commit is contained in:
Rich 2019-10-29 13:21:32 +00:00
parent 0bc786f46f
commit ee658d6a6d
7 changed files with 202 additions and 166 deletions

View File

@ -10,6 +10,7 @@ using Volian.Controls.Library;
using System.Reflection;
using LBWordLibrary;
using JR.Utils.GUI.Forms;
using Volian.Base.Library;
namespace Volian.Controls.Library
{
@ -143,8 +144,12 @@ namespace Volian.Controls.Library
_MyEdWord.DisableSaveHotKey(true);
_MyEdWord.DisablePrintHotKey(true);
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("DSOTabPanel.cs _RefreshTimer_Tick", 148);
void _RefreshTimer_Tick(object sender, EventArgs e)
{
_TimeActivity.Open();
_RefreshTimer.Enabled = false;
if (_MyEdWord != null)// B2017-133 Edraw
{
@ -155,6 +160,7 @@ namespace Volian.Controls.Library
//{
// _MyDisplayTabControl.CloseTabItem(_MyDisplayTabItem);
//}
_TimeActivity.Close();
}
void DSOTabPanel_ClientSizeChanged(object sender, EventArgs e)

View File

@ -9,6 +9,7 @@ using VEPROMS.CSLA.Library;
using System.IO;
using System.Text.RegularExpressions;
using JR.Utils.GUI.Forms;
using Volian.Base.Library;
namespace Volian.Controls.Library
{
@ -969,13 +970,18 @@ namespace Volian.Controls.Library
myTimer.Enabled = false;
myTimer.Enabled = true;
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("DisplayHistory myTimer_Tick", 974);
private void myTimer_Tick(object sender, System.EventArgs e)
{
_TimeActivity.Open();
myTimer.Enabled = false;
if (this.lbChanges.Visible)
this.tabControl1.SelectedTab = tabItem2;
UpdateHistory();
RefreshRequired = true;
_TimeActivity.Close();
}
}
@ -1033,4 +1039,3 @@ namespace Volian.Controls.Library
}
}
}

View File

@ -112,9 +112,12 @@ namespace Volian.Controls.Library
MyROFST = null;
}
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("DisplayRO MyRTB_SelectionChanged", 117);
void MyRTB_SelectionChanged(object sender, EventArgs e)
{
_TimeActivity.Open();
lbFound.SelectionMode = SelectionMode.None;
lbFound.DataSource = null;
//Spin through ROs looking for the selected text
@ -135,6 +138,7 @@ namespace Volian.Controls.Library
}
else
lbFound.Visible = false;
_TimeActivity.Close();
}
void MyRTB_LinkChanged(object sender, StepPanelLinkEventArgs args)

View File

@ -393,11 +393,16 @@ namespace Volian.Controls.Library
return _TmrRefresh;
}
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("DisplaySearch _TmrRefresh_Tick", 399);
// B2016-258 Hang after selecting a procedure if the Step Type panel is open on the search panel
void _TmrRefresh_Tick(object sender, EventArgs e)
{
_TimeActivity.Open();
TmrRefresh.Enabled = false;
AdvTreeStepTypesFillIn();
_TimeActivity.Close();
}
public void StartAdvTreeStepTypesFillIn()// B2016-258 Hang after selecting a procedure if the Step Type panel is open on the search panel
{

View File

@ -9,6 +9,7 @@ using VEPROMS.CSLA.Library;
using Volian.Controls.Library;
using DevComponents.DotNetBar;
using JR.Utils.GUI.Forms;
using Volian.Base.Library;
namespace Volian.Controls.Library
{
@ -877,9 +878,14 @@ namespace Volian.Controls.Library
tmrCaret.Enabled = false;
PnlCaret.Visible = false;
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("DisplayTabControl.cs tmrCaret_Tick", 881);
private void tmrCaret_Tick(object sender, EventArgs e)
{
_TimeActivity.Open();
PnlCaret.Visible = !PnlCaret.Visible;
_TimeActivity.Close();
}
#endregion
#region Private Methods

View File

@ -896,10 +896,15 @@ namespace Volian.Controls.Library
{
if (ReadOnly) return;
}
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("StepRTB CloseWordApp_Tick", 902);
void StepRTB_SelectionChanged(object sender, EventArgs e)
{
_TimeActivity.Open();
if (_InitializingRTB || _IsExperimenting || (MyItemInfo!=null && MyItemInfo.IsRtfRaw)) return;
HandleSelectionChange();
_TimeActivity.Close();
}
private bool _MouseDown = false;
private bool _ContextMenuStripChanged = false;

View File

@ -831,8 +831,12 @@ namespace Volian.Controls.Library
private int lastStart = -1;
private int lastLength = -1;
private string lastText = null;
// B2019-161 When tracking timing time this action
private static VolianTimer _TimeActivity = new VolianTimer("StepTabRibbon.cs _MyStepRTB_SelectionChanged",837);
void _MyStepRTB_SelectionChanged(object sender, EventArgs e)
{
_TimeActivity.Open();
//B2019-154 This will prevent duplicate processing of the ribbon menu and refresh of step items, speeding up the editing experience
if (_MyStepRTB.MyItemInfo == lastItem && _MyStepRTB.SelectionStart == lastStart && _MyStepRTB.SelectionLength == lastLength && _MyStepRTB.SelectedText == lastText)
return;
@ -841,6 +845,7 @@ namespace Volian.Controls.Library
lastLength = _MyStepRTB.SelectionLength;
lastText = _MyStepRTB.SelectedText;
SetButtonAndMenuEnabling(false);
_TimeActivity.Close();
}
//void _MyStepRTB_MouseUp(object sender, MouseEventArgs e)
//{