Falkon Develop
Cross-platform Qt-based web browser
qmlsettings.h
Go to the documentation of this file.
1/* ============================================================
2* Falkon - Qt web browser
3* Copyright (C) 2018 Anmol Gautam <tarptaeya@gmail.com>
4*
5* This program is free software: you can redistribute it and/or modify
6* it under the terms of the GNU General Public License as published by
7* the Free Software Foundation, either version 3 of the License, or
8* (at your option) any later version.
9*
10* This program is distributed in the hope that it will be useful,
11* but WITHOUT ANY WARRANTY; without even the implied warranty of
12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13* GNU General Public License for more details.
14*
15* You should have received a copy of the GNU General Public License
16* along with this program. If not, see <http://www.gnu.org/licenses/>.
17* ============================================================ */
18#pragma once
19
20#include <QObject>
21#include <QSettings>
22
26class QmlSettings : public QObject
27{
28 Q_OBJECT
29
34 Q_PROPERTY(QString name READ name WRITE setName)
35
36public:
37 explicit QmlSettings(QObject *parent = nullptr);
45 Q_INVOKABLE bool setValue(const QVariantMap &map);
53 Q_INVOKABLE QVariant value(const QVariantMap &map);
59 Q_INVOKABLE bool contains(const QString &key);
65 Q_INVOKABLE bool remove(const QString &key);
70 Q_INVOKABLE bool sync();
71
72private:
73 QSettings *m_settings = nullptr;
74 QString m_settingsPath;
75 QString m_name;
76
77 QString name() const;
78 void setName(const QString &name);
79 void createSettings();
80};
The class exposing Settings API to QML.
Definition: qmlsettings.h:27
Q_INVOKABLE bool contains(const QString &key)
Checks if a given key exists.
Definition: qmlsettings.cpp:60
QString name
name of the folder in which settings.ini file is located on the standard extension path.
Definition: qmlsettings.h:34
Q_INVOKABLE bool setValue(const QVariantMap &map)
Sets the value for a given key.
Definition: qmlsettings.cpp:28
Q_INVOKABLE bool sync()
syncs the settings
Definition: qmlsettings.cpp:79
QmlSettings(QObject *parent=nullptr)
Definition: qmlsettings.cpp:22
Q_INVOKABLE QVariant value(const QVariantMap &map)
Gets the value for a given key.
Definition: qmlsettings.cpp:44
Q_INVOKABLE bool remove(const QString &key)
Removes the given key-value from the settings.
Definition: qmlsettings.cpp:69