Add Break On Hit and Log On Hit for instruction breakpoints

This commit is contained in:
Rena Kunisaki
2020-07-06 18:16:32 -04:00
parent 87287181dd
commit a553f22385
7 changed files with 71 additions and 19 deletions

View File

@ -48,9 +48,11 @@ private:
QRadioButton* m_memory_on_read;
QRadioButton* m_memory_on_read_and_write;
QRadioButton* m_memory_on_write;
QRadioButton* m_memory_do_log;
QRadioButton* m_memory_do_break;
QRadioButton* m_memory_do_log_and_break;
// Action
QRadioButton* m_do_log;
QRadioButton* m_do_break;
QRadioButton* m_do_log_and_break;
QDialogButtonBox* m_buttons;
BreakpointWidget* m_parent;