mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 12:53:23 +00:00
f5411b7d68
And at least admit that the reset settings button isn't hooked up at all. OOOOPS. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
33 lines
740 B
C++
33 lines
740 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PREFERENCES_DEFAULTS_H
|
|
#define PREFERENCES_DEFAULTS_H
|
|
|
|
#include "abstractpreferenceswidget.h"
|
|
#include "core/pref.h"
|
|
|
|
namespace Ui {
|
|
class PreferencesDefaults;
|
|
}
|
|
|
|
class PreferencesDefaults : public AbstractPreferencesWidget {
|
|
Q_OBJECT
|
|
public:
|
|
PreferencesDefaults();
|
|
~PreferencesDefaults();
|
|
void refreshSettings();
|
|
void syncSettings();
|
|
public slots:
|
|
void on_chooseFile_clicked();
|
|
void on_btnUseDefaultFile_toggled(bool toggled);
|
|
void on_localDefaultFile_toggled(bool toggled);
|
|
void on_ffmpegFile_clicked();
|
|
void on_extractVideoThumbnails_toggled(bool toggled);
|
|
void on_resetSettings_clicked();
|
|
void on_resetRememberedDCs_clicked();
|
|
|
|
private:
|
|
Ui::PreferencesDefaults *ui;
|
|
};
|
|
|
|
|
|
#endif
|