Added detection for the unsigned/signed short type
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / VideoWin.h
1 //
2 // VideoWin.h: Credits where credits are due ;-)
3 //
4 // based on the work from James Hammons
5 // (C) 2010 Underground Software
6 //
7
8 #ifndef __VIDEOWIN_H__
9 #define __VIDEOWIN_H__
10
11 #include <QtWidgets>
12 #include <glwidget.h>
13
14 class VideoOutputWindow : public QWidget
15 {
16 Q_OBJECT
17
18 public:
19 VideoOutputWindow(QWidget * parent = 0);
20 ~VideoOutputWindow();
21
22 public slots:
23 // void DefineAllKeys(void);
24 void RefreshContents(GLWidget *Lt);
25
26 protected:
27 //void keyPressEvent(QKeyEvent *);
28
29 private:
30 QHBoxLayout *layout;
31 QLabel * text;
32 };
33
34 #endif // __VIDEOWIN_H__
35