fecee84b148d827f5633c6a0f1060300ed23be52
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / debuggertab.h
1 //
2 // JPM = Jean-Paul Mari <djipi.mari@gmail.com>
3 //
4 // Who When What
5 // --- ---------- ------------------------------------------------------------
6 // JPM 06/19/2016 Created this file
7 // JPM 06/19/2016 Soft debugger support
8 //
9
10 #ifndef __DEBUGGERTAB_H__
11 #define __DEBUGGERTAB_H__
12
13 #include <QtWidgets>
14
15 class DebuggerTab: public QWidget
16 {
17 Q_OBJECT
18
19 public:
20 DebuggerTab(QWidget * parent = 0);
21 ~DebuggerTab();
22 void SetSettings(void);
23 void GetSettings(void);
24
25 public:
26 QLineEdit *edit3;
27
28 QCheckBox *displayHWlabels;
29 QCheckBox *disasmopcodes;
30 QCheckBox *displayFullSourceFilename;
31 };
32
33 #endif // __DEBUGGERTAB_H__