Debugger sources code clean-up
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / exceptionvectortablebrowser.h
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
14 class ExceptionVectorTableBrowserWindow: public QWidget
15 {
16 Q_OBJECT
17
18 public:
19 ExceptionVectorTableBrowserWindow(QWidget *parent = 0);
20 ~ExceptionVectorTableBrowserWindow(void);
21
22 public slots:
23 void RefreshContents(void);
24
25 protected:
26 void keyPressEvent(QKeyEvent *);
27
28 private:
29 QVBoxLayout *layout;
30 QTextBrowser *text;
31 QPushButton *refresh;
32 };
33
34 #endif // __EXCEPTIONVECTORTABLEBROWSER_H__