blob: ab5a214edea2d5622f6b74b615b18e45061b43af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef PREFERENCES_DIALOG_H
#define PREFERENCES_DIALOG_H
#include <QDialog>
namespace Ui{
class PreferencesDialog;
}
class PreferencesDialog :public QDialog{
Q_OBJECT
public:
static PreferencesDialog* instance();
signals:
void settingsChanged();
public slots:
void syncSettings();
private:
explicit PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
Ui::PreferencesDialog* ui;
};
#endif
|