Top "Qsettings" questions

QSettings is a Qt class that provides an ability to store and use platform-independant settings for an application.

QSettings - where is the location of the ini file?

I'm using QSettings to store some data as ini file in Windows. I want to see the ini file, but …

qt ini qsettings
How to load settings in Qt app with QSettings

There are two possible ways: load all settings into some struct load values on-demand Which approach is better?

c++ qt qsettings
How to properly use QSettings

I want to use QSettings to save highscores but it doesn't work properly. I'm saving and reading those values in 2 …

qt qsettings
QSettings - reading INI file

I create an INI file and then try to read it. There is no compile errors and the file is …

c++ qt ini qsettings
Qt QSettings try to create ini file but none created why?

Im trying to create ini file that will hold me the configuration data, I have singletone class that setting the …

c++ qt qsettings
Check if a value registry exists with QSettings

What i'm trying to do is to check if a registry key (NOT VALUE, KEY) exists in the registry. I …

qt registry qsettings
QSettings - File chooser should remember the last directory

I upload a file from a location, then the next upload has to point the last uploaded location. How can …

qt qsettings
Writing and reading custom class to QSettings

I need to store instances of a custom class in the registry via QSettings. After reading from Qt's documentation, I …

c++ qt serialization qsettings