[SOLVED] Read/write user settings
-
I need to save and read user settings for my QML application What would be the best way to do so? Some text/xml file? Is it possible to create/read/write text files from QML?
-
Thanks. So the scenario is to implement a method in main.cpp for reading / writing settings, and call it from QML side?
-
More or less. I use a thin wrapper around QSettings and expose it through a context property.
@
// settings.hclass Settings : public QSettings
{
Q_OBJECTpublic:
explicit Settings(QObject *parent = 0) : QSettings(QSettings::IniFormat,
QSettings::UserScope,
QCoreApplication::instance()->organizationName(),
QCoreApplication::instance()->applicationName(),
parent) {}Q_INVOKABLE inline void setValue(const QString &key, const QVariant &value) { QSettings::setValue(key, value); } Q_INVOKABLE inline QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const { return QSettings::value(key, defaultValue); }
};
Q_DECLARE_METATYPE(Settings*)
// main.cpp
QScopedPointer<QApplication> application(new QApplication(argc, argv));
Settings* settings = new Settings(application.data());QScopedPointer<QDeclarativeView> mainWindow(new QDeclarativeView);
mainWindow->rootContext()->setContextProperty("Settings", settings);// MainWindow.qml
Rectangle {
id: sidebarContent
width: Settings.value("desktop/MainWindow.sidebar.width", 200);
...
onReleased: {
Settings.setValue("desktop/MainWindow.sidebar.width", sidebarContent.width);
}
}@
-
Getting some troubles. Can you spot what is wrong here? I'm getting error: invalid use of incomplete type 'struct QDeclarativeContext' on line 12:
main.cpp
@#include <QtGui/QApplication>
#include "qmlapplicationviewer.h"
#include "settings.h"Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
QScopedPointer<QmlApplicationViewer> viewer(QmlApplicationViewer::create());// Attaching QSettings wrapper and exposing it to our QML UI Settings* settings = new Settings(app.data()); viewer->rootContext()->setContextProperty("Settings", settings); viewer->setMainQmlFile(QLatin1String("qml/myApp/main.qml")); viewer->showExpanded(); return app->exec();
}@
The only difference here with your code is that currently wizard generated code contains QmlApplicationViewer instance instead of QDeclarativeView (like in your code).
-
Thanks a lot, works now!
-
Hey, is there some way to save image to settings? I have path to the image, how do I save it now to Settings?
-
Thanks. How do I construct QPixmap in QML?
-
-
I'm still sort of confused. Is it possible to construct QPixmap in QML layer, or do I have to do something on C++ side as well?
-
Ok, thanks, I'll try to play with this idea.