diff options
Diffstat (limited to 'src/osd/sdl/debugqtwindow.h')
-rw-r--r-- | src/osd/sdl/debugqtwindow.h | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/src/osd/sdl/debugqtwindow.h b/src/osd/sdl/debugqtwindow.h index bc687a41899..ba6c0919236 100644 --- a/src/osd/sdl/debugqtwindow.h +++ b/src/osd/sdl/debugqtwindow.h @@ -11,40 +11,40 @@ //============================================================ class WindowQt : public QMainWindow { - Q_OBJECT - + Q_OBJECT + public: - WindowQt(running_machine* machine, QWidget* parent=NULL); - virtual ~WindowQt() {} + WindowQt(running_machine* machine, QWidget* parent=NULL); + virtual ~WindowQt() {} - // The interface to an all-window refresh - void refreshAll() { s_refreshAll = true; } - bool wantsRefresh() { return s_refreshAll; } - void clearRefreshFlag() { s_refreshAll = false; } + // The interface to an all-window refresh + void refreshAll() { s_refreshAll = true; } + bool wantsRefresh() { return s_refreshAll; } + void clearRefreshFlag() { s_refreshAll = false; } protected slots: - void debugActOpenMemory(); - void debugActOpenDasm(); - void debugActOpenLog(); - void debugActRun(); - void debugActRunAndHide(); - void debugActRunToNextCpu(); - void debugActRunNextInt(); - void debugActRunNextVBlank(); - void debugActStepInto(); - void debugActStepOver(); - void debugActStepOut(); - void debugActSoftReset(); - void debugActHardReset(); - void debugActClose(); - void debugActQuit(); + void debugActOpenMemory(); + void debugActOpenDasm(); + void debugActOpenLog(); + void debugActRun(); + void debugActRunAndHide(); + void debugActRunToNextCpu(); + void debugActRunNextInt(); + void debugActRunNextVBlank(); + void debugActStepInto(); + void debugActStepOver(); + void debugActStepOut(); + void debugActSoftReset(); + void debugActHardReset(); + void debugActClose(); + void debugActQuit(); protected: - running_machine* m_machine; + running_machine* m_machine; - static bool s_refreshAll; + static bool s_refreshAll; }; |