mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
CheatSearchTab: Make the search results list auto update address values
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user