Handle number of M68K cycles used when tracing in debugger mode
[clinton/Virtual-Jaguar-Rx.git] / src / gui / about.h
CommitLineData
cf76e892
JPM
1//
2// about.h: Credits where credits are due ;-)
3//
4// by James Hammons
5// (C) 2010 Underground Software
6//
7
8#ifndef __ABOUT_H__
9#define __ABOUT_H__
10
8646ea44 11#include <QtWidgets/QtWidgets>
cf76e892
JPM
12
13class AboutWindow: public QWidget
14{
15 public:
16 AboutWindow(QWidget * parent = 0);
17
18 protected:
19 void keyPressEvent(QKeyEvent *);
20
21 private:
22 QVBoxLayout * layout;
23 QLabel * text;
24 QLabel * image;
25};
26
27#endif // __ABOUT_H__