mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
MemoryWindow: FindPrevious button added
This commit is contained in:
@ -32,11 +32,17 @@ public:
|
||||
void JumpToAddress(u32 _Address);
|
||||
|
||||
private:
|
||||
enum class SearchType
|
||||
{
|
||||
FindNext,
|
||||
FindPrevious
|
||||
};
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
void OnDataTypeChanged(wxCommandEvent& event);
|
||||
void OnFindNext(wxCommandEvent& event);
|
||||
void Search(bool find_next = true);
|
||||
void OnFindPrevious(wxCommandEvent& event);
|
||||
void OnAddrBoxChange(wxCommandEvent& event);
|
||||
void OnValueChanged(wxCommandEvent&);
|
||||
void SetMemoryValueFromValBox(wxCommandEvent& event);
|
||||
@ -46,7 +52,10 @@ private:
|
||||
void OnDumpFakeVMEM(wxCommandEvent& event);
|
||||
void OnMemCheckOptionChange(wxCommandEvent& event);
|
||||
|
||||
wxButton* btnSearch;
|
||||
void Search(SearchType search_type);
|
||||
|
||||
wxButton* m_btn_find_next;
|
||||
wxButton* m_btn_find_previous;
|
||||
wxRadioButton* m_rb_ascii;
|
||||
wxRadioButton* m_rb_hex;
|
||||
|
||||
|
Reference in New Issue
Block a user