]> Shamusworld >> Repos - schematic/blob - src/about.h
Move DB access to NoteDialog class, new AlertDialog class.
[schematic] / src / about.h
1 //
2 // about.h: Credits where credits are due ;-)
3 //
4 // by James Hammons
5 // (C) 2012 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         protected:
19                 void keyPressEvent(QKeyEvent *);
20
21         private:
22                 QVBoxLayout * layout;
23                 QLabel * text;
24                 QLabel * image;
25 };
26
27 #endif  // __ABOUT_H__