X-Git-Url: http://git.hcoop.net/clinton/Virtual-Jaguar-Rx.git/blobdiff_plain/cf76e892839806b64588635cb6accb636001e62a..f0dd2f7b7cc2f165b00dedcbc5bf6fbaa2ca136d:/src/debugger/debuggertab.h diff --git a/src/debugger/debuggertab.h b/src/debugger/debuggertab.h index 23aa6ce..f9e1b8a 100644 --- a/src/debugger/debuggertab.h +++ b/src/debugger/debuggertab.h @@ -1,31 +1,36 @@ -// -// JPM = Jean-Paul Mari -// -// Who When What -// --- ---------- ------------------------------------------------------------ -// JPM 06/19/2016 Created this file -// JPM 06/19/2016 Soft debugger support -// - -#ifndef __DEBUGGERTAB_H__ -#define __DEBUGGERTAB_H__ - -#include - -class DebuggerTab: public QWidget -{ - Q_OBJECT - - public: - DebuggerTab(QWidget * parent = 0); - ~DebuggerTab(); - - public: - QLineEdit *edit3; - - QCheckBox *displayHWlabels; - QCheckBox *disasmopcodes; - QCheckBox *displayFullSourceFilename; -}; - -#endif // __DEBUGGERTAB_H__ +// +// JPM = Jean-Paul Mari +// +// Who When What +// --- ---------- ------------------------------------------------------------ +// JPM Sept./2016 Created this file, and added Soft debugger support +// JPM 10/09/2018 Added the source file search paths +// + +#ifndef __DEBUGGERTAB_H__ +#define __DEBUGGERTAB_H__ + +#include + +class DebuggerTab: public QWidget +{ + Q_OBJECT + + public: + DebuggerTab(QWidget * parent = 0); + ~DebuggerTab(); + void SetSettings(void); + void GetSettings(void); + + private: + QString CheckForTrailingSlash(QString s); + + public: + QLineEdit *nbrdisasmlines; + QLineEdit *sourcefilesearchpaths; + QCheckBox *displayHWlabels; + QCheckBox *disasmopcodes; + QCheckBox *displayFullSourceFilename; +}; + +#endif // __DEBUGGERTAB_H__