Fixed bug with no_repeate mode, improved prev button behaviour
[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
23 private:
24         Ui::AboutForm *ui;
25         QString _icons_theme;
26 };
27
28 #endif // ABOUTFORM_H