Added search paths in case of missing DWARF directories information
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / debuggertab.h
CommitLineData
024bfc46
JPM
1//\r
2// JPM = Jean-Paul Mari <djipi.mari@gmail.com>\r
3//\r
4// Who When What\r
5// --- ---------- ------------------------------------------------------------\r
f0dd2f7b
JPM
6// JPM Sept./2016 Created this file, and added Soft debugger support\r
7// JPM 10/09/2018 Added the source file search paths\r
024bfc46
JPM
8//\r
9\r
10#ifndef __DEBUGGERTAB_H__\r
11#define __DEBUGGERTAB_H__\r
12\r
13#include <QtWidgets>\r
14\r
15class DebuggerTab: public QWidget\r
16{\r
17 Q_OBJECT\r
18\r
19 public:\r
20 DebuggerTab(QWidget * parent = 0);\r
21 ~DebuggerTab();\r
22 void SetSettings(void);\r
23 void GetSettings(void);\r
24\r
f0dd2f7b
JPM
25 private:\r
26 QString CheckForTrailingSlash(QString s);\r
024bfc46 27\r
f0dd2f7b
JPM
28 public:\r
29 QLineEdit *nbrdisasmlines;\r
30 QLineEdit *sourcefilesearchpaths;\r
024bfc46
JPM
31 QCheckBox *displayHWlabels;\r
32 QCheckBox *disasmopcodes;\r
33 QCheckBox *displayFullSourceFilename;\r
34};\r
35\r
36#endif // __DEBUGGERTAB_H__\r