aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmltoolingsettings/qqmltoolingsettings_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmltoolingsettings/qqmltoolingsettings_p.h')
-rw-r--r--src/qmltoolingsettings/qqmltoolingsettings_p.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/qmltoolingsettings/qqmltoolingsettings_p.h b/src/qmltoolingsettings/qqmltoolingsettings_p.h
new file mode 100644
index 0000000000..555f6dec79
--- /dev/null
+++ b/src/qmltoolingsettings/qqmltoolingsettings_p.h
@@ -0,0 +1,48 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#ifndef QQMLTOOLINGSETTINGS_P_H
+#define QQMLTOOLINGSETTINGS_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QtCore/qstring.h>
+#include <QtCore/qhash.h>
+#include <QtCore/qvariant.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQmlToolingSettings
+{
+public:
+ QQmlToolingSettings(const QString &toolName) : m_toolName(toolName) { }
+
+ void addOption(const QString &name, const QVariant defaultValue = QVariant());
+
+ bool writeDefaults() const;
+ bool search(const QString &path);
+
+ QVariant value(QString name) const;
+ bool isSet(QString name) const;
+
+private:
+ QString m_toolName;
+ QString m_currentSettingsPath;
+ QHash<QString, QString> m_seenDirectories;
+ QVariantHash m_values;
+
+ bool read(const QString &settingsFilePath);
+};
+
+QT_END_NAMESPACE
+
+#endif // QQMLTOOLINGSETTINGS_P_H