summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/qt/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/qt/mainwindow.h')
-rw-r--r--src/osd/modules/debugger/qt/mainwindow.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/qt/mainwindow.h b/src/osd/modules/debugger/qt/mainwindow.h
index d3a6a6b33fc..810631b0f1a 100644
--- a/src/osd/modules/debugger/qt/mainwindow.h
+++ b/src/osd/modules/debugger/qt/mainwindow.h
@@ -37,6 +37,7 @@ protected:
private slots:
void toggleBreakpointAtCursor(bool changedTo);
+ void enableBreakpointAtCursor(bool changedTo);
void runToCursor(bool changedTo);
void rightBarChanged(QAction* changedTo);
@@ -45,23 +46,30 @@ private slots:
void mountImage(bool changedTo);
void unmountImage(bool changedTo);
+ void dasmViewUpdated();
+
// Closing the main window actually exits the program
void debugActClose();
private:
+ void createImagesMenu();
+
// Widgets and docks
QLineEdit* m_inputEdit;
DebuggerView* m_consoleView;
ProcessorDockWidget* m_procFrame;
DasmDockWidget* m_dasmFrame;
+ // Menu items
+ QAction* m_breakpointToggleAct;
+ QAction* m_breakpointEnableAct;
+ QAction* m_runToCursorAct;
+
// Terminal history
int m_historyIndex;
std::vector<QString> m_inputHistory;
void addToHistory(const QString& command);
-
- void createImagesMenu();
};