First commit
[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
5// (C) 2012 Underground Software
6//
7
8#ifndef __EMUSTATUS_H__
9#define __EMUSTATUS_H__
10
11#include <QtWidgets>
12#include <stdint.h>
13
14class EmuStatusWindow : public QWidget
15{
16 Q_OBJECT
17
18 public:
19 EmuStatusWindow(QWidget * parent = 0);
20
21
22 public slots:
23// void DefineAllKeys(void);
24 void RefreshContents(void);
25 //void GoToAddress(void);
26
27 protected:
28 //void keyPressEvent(QKeyEvent *);
29
30 private:
31 QVBoxLayout * layout;
32// QTextBrowser * text;
33 QLabel * text;
34 //QPushButton * refresh;
35 //QLineEdit * address;
36 //QPushButton * go;
37
38 bool GPURunning;
39 bool M68000DebugHaltStatus;
40};
41
42#endif // __EMUSTATUS_H__