core: Fix libdwarf and Qt build failure
[clinton/Virtual-Jaguar-Rx.git] / src / debugger / VideoWin.h
CommitLineData
cf76e892 1//
96aa54e4
JPM
2// VideoWin.h: Video output
3//
4// by Jean-Paul Mari
cf76e892 5//
cf76e892
JPM
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);
96aa54e4 25 void SetupVideo(GLWidget *Lt);
cf76e892
JPM
26
27 protected:
96aa54e4 28 void keyPressEvent(QKeyEvent *);
cf76e892
JPM
29
30 private:
96aa54e4
JPM
31 QVBoxLayout *layout;
32 QHBoxLayout *hbox1;
33 //QTextBrowser * text;
34 //QStatusBar *statusbar;
35 GLWidget *gl;
cf76e892
JPM
36};
37
38#endif // __VIDEOWIN_H__
39