CheatSearchTab: Make the search results list auto update address values

This commit is contained in:
Lioncash
2015-08-07 10:04:28 -04:00
parent 40818c4aad
commit 00a4184893
2 changed files with 86 additions and 55 deletions

View File

@ -6,6 +6,7 @@
#include <vector>
#include <wx/panel.h>
#include <wx/timer.h>
class wxButton;
class wxChoice;
@ -32,11 +33,15 @@ private:
};
void UpdateCheatSearchResultsList();
void UpdateCheatSearchResultItem(long index);
void ResetListViewColumns();
u32 SwapValue(u32 value) const;
void StartNewSearch(wxCommandEvent& event);
void FilterCheatSearchResults(wxCommandEvent& event);
void CreateARCode(wxCommandEvent&);
void ApplyFocus(wxFocusEvent&);
void OnTimerUpdate(wxTimerEvent&);
std::vector<CheatSearchResult> m_search_results;
unsigned int m_search_type_size;
@ -51,6 +56,8 @@ private:
wxRadioBox* m_data_sizes;
wxTimer m_update_timer;
struct
{
wxRadioButton* rad_oldvalue;