Debugger sources code clean-up
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / exceptionvectortablebrowser.h
CommitLineData
cf76e892
JPM
1//
2// exceptionvectortablebrowser.h: Exception Vector Table
3//
4// by Jean-Paul Mari
5//
6
7#ifndef __EXCEPTIONVECTORTABLEBROWSER_H__
8#define __EXCEPTIONVECTORTABLEBROWSER_H__
9
10#include <QtWidgets>
11#include <stdint.h>
12
13
14class ExceptionVectorTableBrowserWindow: public QWidget
15{
16 Q_OBJECT
17
18 public:
19 ExceptionVectorTableBrowserWindow(QWidget *parent = 0);
20 ~ExceptionVectorTableBrowserWindow(void);
21
22 public slots:
cf76e892 23 void RefreshContents(void);
cf76e892
JPM
24
25 protected:
570dad92 26 void keyPressEvent(QKeyEvent *);
cf76e892
JPM
27
28 private:
29 QVBoxLayout *layout;
cf76e892
JPM
30 QTextBrowser *text;
31 QPushButton *refresh;
cf76e892
JPM
32};
33
34#endif // __EXCEPTIONVECTORTABLEBROWSER_H__