summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/dasmwindow.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2015-02-22 01:06:37 +1100
committer Vas Crabb <vas@vastheman.com>2015-02-22 01:19:09 +1100
commita581728a279f5320245579fbcacf4d5b7268831a (patch)
tree14500370faa2185bd3db346ca9b5dcbdb959289a /src/osd/modules/debugger/qt/dasmwindow.h
parentb5afc9dfea42f3c7f361fb2006c9b3df2bc41b00 (diff)
Qt debugger dynamically updates menu items controlling disassembly views
Diffstat (limited to 'src/osd/modules/debugger/qt/dasmwindow.h')
-rw-r--r--src/osd/modules/debugger/qt/dasmwindow.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/osd/modules/debugger/qt/dasmwindow.h b/src/osd/modules/debugger/qt/dasmwindow.h
index 0954f80d61f..3e7c4978918 100644
--- a/src/osd/modules/debugger/qt/dasmwindow.h
+++ b/src/osd/modules/debugger/qt/dasmwindow.h
@@ -24,19 +24,26 @@ private slots:
void expressionSubmitted();
void toggleBreakpointAtCursor(bool changedTo);
+ void enableBreakpointAtCursor(bool changedTo);
void runToCursor(bool changedTo);
void rightBarChanged(QAction* changedTo);
+ void dasmViewUpdated();
+
private:
void populateComboBox();
-private:
// Widgets
QLineEdit* m_inputEdit;
QComboBox* m_cpuComboBox;
DebuggerView* m_dasmView;
+
+ // Menu items
+ QAction* m_breakpointToggleAct;
+ QAction* m_breakpointEnableAct;
+ QAction* m_runToCursorAct;
};