blob: 9912841603ac5b8284c3c39d0ab4cc0700db58ad (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// license:BSD-3-Clause
// copyright-holders:Andrew Gardner
#ifndef __DEBUG_QT_DASM_WINDOW_H__
#define __DEBUG_QT_DASM_WINDOW_H__
#include <QtGui/QtGui>
#include "debuggerview.h"
#include "windowqt.h"
//============================================================
// The Disassembly Window.
//============================================================
class DasmWindow : public WindowQt
{
Q_OBJECT
public:
DasmWindow(running_machine* machine, QWidget* parent=NULL);
virtual ~DasmWindow();
private slots:
void cpuChanged(int index);
void expressionSubmitted();
void toggleBreakpointAtCursor(bool changedTo);
void enableBreakpointAtCursor(bool changedTo);
void runToCursor(bool changedTo);
void rightBarChanged(QAction* changedTo);
void dasmViewUpdated();
private:
void populateComboBox();
// Widgets
QLineEdit* m_inputEdit;
QComboBox* m_cpuComboBox;
DebuggerView* m_dasmView;
// Menu items
QAction* m_breakpointToggleAct;
QAction* m_breakpointEnableAct;
QAction* m_runToCursorAct;
};
//=========================================================================
// A way to store the configuration of a window long enough to read/write.
//=========================================================================
class DasmWindowQtConfig : public WindowQtConfig
{
public:
DasmWindowQtConfig() :
WindowQtConfig(WIN_TYPE_DASM),
m_cpu(0),
m_rightBar(0)
{
}
~DasmWindowQtConfig() {}
// Settings
int m_cpu;
int m_rightBar;
void buildFromQWidget(QWidget* widget);
void applyToQWidget(QWidget* widget);
void addToXmlDataNode(xml_data_node* node) const;
void recoverFromXmlNode(xml_data_node* node);
};
#endif
|