mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-12 13:46:16 +00:00
26 lines
416 B
C
26 lines
416 B
C
|
#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
|