Added search paths in case of missing DWARF directories information
[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 Sept./2016 Created this file, and added Soft debugger support
7 // JPM 10/09/2018 Added the source file search paths
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 private:
26 QString CheckForTrailingSlash(QString s);
27
28 public:
29 QLineEdit *nbrdisasmlines;
30 QLineEdit *sourcefilesearchpaths;
31 QCheckBox *displayHWlabels;
32 QCheckBox *disasmopcodes;
33 QCheckBox *displayFullSourceFilename;
34 };
35
36 #endif // __DEBUGGERTAB_H__