Handle number of M68K cycles used when tracing in debugger mode
[clinton/Virtual-Jaguar-Rx.git] / src / gui / help.h
1 //
2 // help.h: Built-in help system
3 //
4 // by James Hammons
5 // (C) 2011 Underground Software
6 //
7
8 #ifndef __HELP_H__
9 #define __HELP_H__
10
11 #include <QtWidgets/QtWidgets>
12
13 class HelpWindow: public QWidget
14 {
15 public:
16 HelpWindow(QWidget * parent = 0);
17
18 protected:
19 void keyPressEvent(QKeyEvent *);
20
21 private:
22 QVBoxLayout * layout;
23 QTextBrowser * text;
24 };
25
26 #endif // __HELP_H__