]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/help.h
59690838275ea8a368fd713a76bda443e41cbf4c
[virtualjaguar] / 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 <QtGui>
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__