]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/help.h
7b4b48e1b4e2c5ce7986906c9003d05801db48eb
[virtualjaguar] / src / gui / help.h
1 //
2 // help.h: Built-in help system
3 //
4 // by James L. 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         private:
19                 QVBoxLayout * layout;
20                 QTextBrowser * text;
21 //              QLabel * text;
22 //              QLabel * image;
23 };
24
25 #endif  // __HELP_H__