96bcd292522d7840b319cbc244ffd5d82d09cb94
[mverbiste] / about.h
1 #ifndef ABOUT_H
2 #define ABOUT_H
3
4 #include <QtGui/QDialog>
5 #include <QtGui/QHBoxLayout>
6 #include <QtGui/QLabel>
7
8 class AboutDialog: public QDialog
9 {
10     Q_OBJECT
11 public:
12     explicit AboutDialog(const char *iconFile, const QString &title);
13
14     void setIntro(const QString &text);
15     void addAuthor(const QString &name);
16
17 private:
18     QVBoxLayout *rlayout;
19 };
20
21 #endif // ABOUT_H