summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_reset.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop-widgets/preferences/preferences_reset.h')
-rw-r--r--desktop-widgets/preferences/preferences_reset.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_reset.h b/desktop-widgets/preferences/preferences_reset.h
new file mode 100644
index 000000000..bf5af593b
--- /dev/null
+++ b/desktop-widgets/preferences/preferences_reset.h
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: GPL-2.0
+#ifndef PREFERENCES_RESET_H
+#define PREFERENCES_RESET_H
+
+#include "abstractpreferenceswidget.h"
+#include "core/pref.h"
+
+namespace Ui {
+ class PreferencesReset;
+}
+
+class PreferencesReset : public AbstractPreferencesWidget {
+ Q_OBJECT
+public:
+ PreferencesReset();
+ ~PreferencesReset();
+ void refreshSettings() override;
+ void syncSettings() override;
+
+public slots:
+ void on_resetSettings_clicked();
+
+private:
+ Ui::PreferencesReset *ui;
+};
+
+
+#endif
+