summaryrefslogtreecommitdiff
path: root/include/rsettings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/rsettings.hpp')
-rw-r--r--include/rsettings.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/rsettings.hpp b/include/rsettings.hpp
new file mode 100644
index 00000000..2d90fe3b
--- /dev/null
+++ b/include/rsettings.hpp
@@ -0,0 +1,32 @@
+/* ============================================================
+ * The rekonq project
+ * ============================================================
+ * SPDX-License-Identifier: GPL-3.0-only
+ * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
+ * ============================================================
+ * Description: rekonq settings interface
+ * ============================================================ */
+
+#pragma once
+
+#include <QObject>
+#include <QVariant>
+
+class RekonqSettings : public QObject {
+ Q_OBJECT
+
+public:
+ explicit RekonqSettings(QObject *parent = nullptr) : QObject(parent) {}
+ virtual ~RekonqSettings() = default;
+
+ virtual void beginGroup(const QString &prefix) = 0;
+ virtual void endGroup() = 0;
+
+ virtual void setValue(const QString &key, const QVariant &value) = 0;
+ [[nodiscard]] virtual QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const = 0;
+
+ [[nodiscard]] virtual QString filePath() const = 0;
+
+signals:
+ void changed(QString, QVariant);
+};