Potential fix to compile on Linux
[clinton/Virtual-Jaguar-Rx.git] / src / gui / debug / hwregsblitterbrowser.h
1 //
2 // hwregsblitterbrowser.h: Hardware registers blitter browser
3 //
4 // by Jean-Paul Mari
5 //
6
7 #ifndef __HWREGSBLITTERBROWSER_H__
8 #define __HWREGSBLITTERBROWSER_H__
9
10 #include <QtWidgets/QtWidgets>
11 #include <stdint.h>
12
13
14 //
15 class HWRegsBlitterBrowserWindow : public QWidget
16 {
17 Q_OBJECT
18
19 public:
20 HWRegsBlitterBrowserWindow(QWidget *parent = 0);
21 ~HWRegsBlitterBrowserWindow(void);
22 void Reset(void);
23
24 public slots:
25 void RefreshContents(void);
26
27 protected:
28 //void keyPressEvent(QKeyEvent *);
29
30 private:
31 QVBoxLayout *layout;
32 QTableView *TableView;
33 QStandardItemModel *model;
34 };
35
36
37 #endif