Local variables window detects now if a variable is used or not by the code
[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 DefineAllKeys(void);
24 void RefreshContents(void);
25 // void GoToAddress(void);
26
27 protected:
28 // void keyPressEvent(QKeyEvent *);
29
30 private:
31 QVBoxLayout *layout;
32 // QTextBrowser * text;
33 // QLabel *text;
34 QTextBrowser *text;
35 QPushButton *refresh;
36 // QLineEdit *address;
37 // QPushButton *go;
38 // WatchInfo *PtrWatchInfo;
39 // int32_t memBase;
40 // size_t NbWatch;
41 };
42
43 #endif // __EXCEPTIONVECTORTABLEBROWSER_H__