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