Version bump
[someplayer] / src / aboutform.h
1 #ifndef ABOUTFORM_H
2 #define ABOUTFORM_H
3
4 #include <QWidget>
5 #include "someplayer.h"
6
7 namespace Ui {
8         class AboutForm;
9 }
10
11 class AboutForm : public QWidget
12 {
13         Q_OBJECT
14
15 public:
16         explicit AboutForm(QWidget *parent = 0);
17         ~AboutForm();
18
19 public slots:
20         void updateTranslations();
21         void updateIcons();
22         void onlineHelp();
23
24 private slots:
25         void donate();
26
27 private:
28         Ui::AboutForm *ui;
29         QString _icons_theme;
30 };
31
32 #endif // ABOUTFORM_H