Using QSettings in QML with also json and XML support
This article explains how to use settings in QML
Contents |
Introduction
This class is used as a context property in QML applications as an easy way to store and get user settings. It supports storing arrays. These can also retrieved in json or xml format.
Usage
Start copying setting.cpp and setting.h into your project source directory. In the main.cpp file include the .h:
#include "setting.h"
the register the context property
Settings settings(appName, fileName);
viewer.rootContext()->setContextProperty("settings", &settings);
fileName will be create as follow:
QDesktopServices::storageLocation( QDesktopServices::DataLocation ) + "/" + appName + "/" + fileName;
In your QML sources you will now be able to use the property settings in ini format as explained below.
single settings
The ini format is likely as:
[main]
user=Marco
location=Italy
...
so to write a new value or overwrite the existing just put in your qml this
settings.setValue("main/user", "Marco");to get a value:
var user;
user = settings.getValue("main/user");
if you want to have a default value if there is not yet a setting named "main/user", do:
var user;
user = settings.getValue("main/user", "Marco");
if "main/user" exist it will return that value, else will return "Marco".
array settings
The ini format for arrays is likely as:
[main]
user/size=2
user/1/name=Marco
user/1/location=Italy
user/2/name=Marco2
user/2/location=Italy2
...
appendToArray
to make this in your qml just use:
settings.appendToArray( "main/user", { "name": "Marco" , "location": "Italy" });
settings.appendToArray( "main/user", { "name": "Marco2" , "location": "Italy2" });removeArray
to remove the whole array:
settings.removeArray( "main/user");
removeArrayEntry
to remove a single entry of the array:
settings.removeArrayEntry( "main/user", 1);
getIndexOfValueInArray
this will get the index settings.getIndexOfValueInArray("favourites/place", "name", value);

