]> Shamusworld >> Repos - virtualjaguar/blob - src/gui/about.h
c4486516f0ff9a63a2cf5aaa778950978d195bb2
[virtualjaguar] / src / gui / about.h
1 //
2 // about.h: Credits where credits are due ;-)
3 //
4 // by James L. Hammons
5 // (C) 2010 Underground Software
6 //
7
8 #ifndef __ABOUT_H__
9 #define __ABOUT_H__
10
11 #include <QtGui>
12
13 class AboutWindow: public QWidget
14 {
15         public:
16                 AboutWindow(QWidget * parent = 0);
17
18         private:
19                 QVBoxLayout * layout;
20                 QLabel * text;
21 };
22
23 #endif  // __ABOUT_H__
24
25
26 #if 0
27 class AboutWindow : public QbWindow {
28   Q_OBJECT
29
30 public:
31   QVBoxLayout *layout;
32   struct Logo : public QWidget {
33     void paintEvent(QPaintEvent*);
34   } *logo;
35   QLabel *info;
36
37   AboutWindow();
38 };
39
40 extern AboutWindow *aboutWindow;
41 #endif