Potential fix to compile on Linux
[clinton/Virtual-Jaguar-Rx.git] / src / gui / emustatus.h
CommitLineData
cf76e892
JPM
1//
2// emustatus.h: Jaguar emulator status
3//
4// by Jean-Paul Mari
cf76e892
JPM
5//
6
7#ifndef __EMUSTATUS_H__
8#define __EMUSTATUS_H__
9
8646ea44 10#include <QtWidgets/QtWidgets>
cf76e892
JPM
11#include <stdint.h>
12
13class EmuStatusWindow : public QWidget
14{
15 Q_OBJECT
16
17 public:
18 EmuStatusWindow(QWidget * parent = 0);
19
cf76e892 20 public slots:
cf76e892 21 void RefreshContents(void);
cf76e892
JPM
22
23 protected:
d259f61f 24 void keyPressEvent(QKeyEvent *);
cf76e892
JPM
25
26 private:
27 QVBoxLayout * layout;
cf76e892 28 QLabel * text;
cf76e892
JPM
29 bool GPURunning;
30 bool M68000DebugHaltStatus;
31};
32
33#endif // __EMUSTATUS_H__