Added the return address information in the call stack
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / debuggertab.h
... / ...
CommitLineData
1//\r
2// JPM = Jean-Paul Mari <djipi.mari@gmail.com>\r
3//\r
4// Who When What\r
5// --- ---------- ------------------------------------------------------------\r
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
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
25 private:\r
26 QString CheckForTrailingSlash(QString s);\r
27\r
28 public:\r
29 QLineEdit *nbrdisasmlines;\r
30 QLineEdit *sourcefilesearchpaths;\r
31 QCheckBox *displayHWlabels;\r
32 QCheckBox *disasmopcodes;\r
33 QCheckBox *displayFullSourceFilename;\r
34};\r
35\r
36#endif // __DEBUGGERTAB_H__\r