Added screenshot feature
[clinton/Virtual-Jaguar-Rx.git] / src / gui / emustatus.h
... / ...
CommitLineData
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>
11#include <stdint.h>
12
13class 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__