Added showing infotext.
[speedfreak] / Client / creditsdialog.h
1 /*
2  * Credits Dialog
3  *
4  * @author      Rikhard Kuutti <rikhard.kuutti@fudeco.com>
5  * @copyright   (c) 2010 Speed Freak team
6  * @license     http://opensource.org/licenses/gpl-license.php GNU Public License
7  */
8
9 #ifndef CREDITSDIALOG_H
10 #define CREDITSDIALOG_H
11
12 #include <QDialog>
13
14 namespace Ui {
15     class CreditsDialog;
16 }
17
18 class CreditsDialog : public QDialog {
19     Q_OBJECT
20 public:
21     CreditsDialog(QWidget *parent = 0);
22     ~CreditsDialog();
23
24 protected:
25     void changeEvent(QEvent *e);
26
27 private:
28     Ui::CreditsDialog *ui;
29
30 private slots:
31 };
32
33 #endif // CREDITSDIALOG_H