From 3ebd9bb2df1696aad531b44ec2502d650778ac41 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 5 Feb 2015 00:04:05 +0000 Subject: [PATCH] Lua functions list - greatly speedup drawing --- .../tools/Lua/LuaFunctionsForm.cs | 40 ++++++++++--------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs b/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs index 647a01312f..552a514c07 100644 --- a/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs +++ b/BizHawk.Client.EmuHawk/tools/Lua/LuaFunctionsForm.cs @@ -15,18 +15,19 @@ namespace BizHawk.Client.EmuHawk private List FunctionList = new List(); - private List FilteredList - { - get - { - if (!string.IsNullOrWhiteSpace(FilterBox.Text)) - { - return FunctionList - .Where(f => (f.Library + "." + f.Name).Contains(FilterBox.Text)) - .ToList(); - } + private List _filteredList = new List(); - return FunctionList; + private void GenerateFilteredList() + { + if (!string.IsNullOrWhiteSpace(FilterBox.Text)) + { + _filteredList = FunctionList + .Where(f => (f.Library + "." + f.Name).Contains(FilterBox.Text)) + .ToList(); + } + else + { + _filteredList = FunctionList.ToList(); } } @@ -59,25 +60,25 @@ namespace BizHawk.Client.EmuHawk text = string.Empty; try - { - if (FilteredList.Any() && index < FilteredList.Count) + { + if (_filteredList.Any() && index < _filteredList.Count) { switch (column) { case 0: - text = FilteredList[index].ReturnType; + text = _filteredList[index].ReturnType; break; case 1: - text = FilteredList[index].Library; + text = _filteredList[index].Library; break; case 2: - text = FilteredList[index].Name; + text = _filteredList[index].Name; break; case 3: - text = FilteredList[index].ParameterList; + text = _filteredList[index].ParameterList; break; case 4: - text = FilteredList[index].Description; + text = _filteredList[index].Description; break; } } @@ -202,7 +203,8 @@ namespace BizHawk.Client.EmuHawk private void UpdateList() { - FunctionView.ItemCount = FilteredList.Count; + GenerateFilteredList(); + FunctionView.ItemCount = _filteredList.Count; } private void FilterBox_KeyUp(object sender, KeyEventArgs e)