mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-03 06:38:53 +00:00
CheatSearchTab: Make the search results list auto update address values
This commit is contained in:
parent
40818c4aad
commit
00a4184893
2 changed files with 86 additions and 55 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue