summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/dasmwindow.h
diff options
context:
space:
mode:
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;
};