blob: 0a07b4facfb49d4b55bcca50dd4ad7962f051ee3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// license:BSD-3-Clause
// copyright-holders:Andrew Gardner
#ifndef MAME_DEBUGGER_QT_BREAKPOINTSWINDOW_H
#define MAME_DEBUGGER_QT_BREAKPOINTSWINDOW_H
#include "debuggerview.h"
#include "windowqt.h"
namespace osd::debugger::qt {
//============================================================
// The Breakpoints Window.
//============================================================
class BreakpointsWindow : public WindowQt
{
Q_OBJECT
public:
BreakpointsWindow(DebuggerQt &debugger, QWidget *parent = nullptr);
virtual ~BreakpointsWindow();
virtual void restoreConfiguration(util::xml::data_node const &node) override;
protected:
virtual void saveConfigurationToNode(util::xml::data_node &node) override;
private slots:
void typeChanged(QAction *changedTo);
private:
// Widgets
DebuggerView *m_breakpointsView;
};
} // namespace osd::debugger::qt
#endif // MAME_DEBUGGER_QT_BREAKPOINTSWINDOW_H
|