mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 13:40:20 +00:00
28 lines
579 B
C
28 lines
579 B
C
|
#ifndef PREFERENCES_DEFAULTS_H
|
||
|
#define PREFERENCES_DEFAULTS_H
|
||
|
|
||
|
#include "abstractpreferenceswidget.h"
|
||
|
#include "subsurface-core/pref.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class PreferencesDefaults;
|
||
|
}
|
||
|
|
||
|
class PreferencesDefaults : public AbstractPreferencesWidget {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
PreferencesDefaults();
|
||
|
virtual ~PreferencesDefaults();
|
||
|
virtual void refreshSettings();
|
||
|
virtual void syncSettings();
|
||
|
public slots:
|
||
|
void on_chooseFile_clicked();
|
||
|
void on_btnUseDefaultFile_toggled(bool toggled);
|
||
|
void on_localDefaultFile_toggled(bool toggled);
|
||
|
|
||
|
private:
|
||
|
Ui::PreferencesDefaults *ui;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|