Implement the configuration of how a breakpoint is added in the memory window

There might be a better way to highlight the options when adding the memory check, but for now, this works and the breakpoint list reports the right settings anyway.
This commit is contained in:
aldelaro5
2016-08-18 16:08:26 -04:00
committed by aldelaro5
parent da55d2a381
commit 72f1d99634
4 changed files with 44 additions and 2 deletions

View File

@ -15,6 +15,7 @@ class wxCheckBox;
class wxListBox;
class wxSearchCtrl;
class wxTextCtrl;
class wxRadioButton;
class CMemoryWindow : public wxPanel
{
@ -48,6 +49,7 @@ private:
void OnDumpMemory(wxCommandEvent& event);
void OnDumpMem2(wxCommandEvent& event);
void OnDumpFakeVMEM(wxCommandEvent& event);
void onMemCheckOptionChange(wxCommandEvent& event);
wxCheckBox* chk8;
wxCheckBox* chk16;
@ -55,6 +57,10 @@ private:
wxButton* btnSearch;
wxCheckBox* chkAscii;
wxCheckBox* chkHex;
wxCheckBox* chkLog;
wxRadioButton* rdbRead;
wxRadioButton* rdbWrite;
wxRadioButton* rdbReadWrite;
CCodeWindow* m_code_window;