]> Shamusworld >> Repos - guemap/blob - src/about.h
Fix room adding to work properly, misc. small changes.
[guemap] / src / about.h
1 //
2 // about.h: Credits where credits are due ;-)
3 //
4 // by James Hammons
5 // (C) 2019 Underground Software
6 //
7
8 #ifndef __ABOUT_H__
9 #define __ABOUT_H__
10
11 #include <QtWidgets>
12
13 class 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__