Potential fix to compile on Linux
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / VideoWin.h
CommitLineData
cf76e892
JPM
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
8646ea44 11#include <QtWidgets/QtWidgets>
cf76e892
JPM
12#include <glwidget.h>
13
14class 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