Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The QSettings class provides persistent platform-independent application settings. More...
#include <qsettings.h>
On Unix systems, QSettings uses text files to store settings. On Windows systems, QSettings uses the system registry. On Mac OS X, QSettings will behave as on Unix, and store to text files.
Each setting comprises an identifying key and the data associated with the key. A key is a unicode string which consists of two or more subkeys. A subkey is a slash, '/', followed by one or more unicode characters (excluding slashes, newlines, carriage returns and equals, '=', signs). The associated data, called the entry or value, may be a boolean, an integer, a double, a string or a list of strings. Entry strings may contain any unicode characters.
If you want to save and restore the entire desktop's settings, i.e. which applications are running, use QSettings to save the settings for each individual application and QSessionManager to save the desktop's session.
Example settings:
/MyCompany/MyApplication/background color /MyCompany/MyApplication/foreground color /MyCompany/MyApplication/geometry/x /MyCompany/MyApplication/geometry/y /MyCompany/MyApplication/geometry/width /MyCompany/MyApplication/geometry/height /MyCompany/MyApplication/recent files/1 /MyCompany/MyApplication/recent files/2 /MyCompany/MyApplication/recent files/3Each line above is a complete key, made up of subkeys.
A typical usage pattern for application startup:
QSettings settings; settings.insertSearchPath( QSettings::Windows, "/MyCompany" ); // No search path needed for Unix; see notes further on. // Use default values if the keys don't exist QString bgColor = settings.readEntry( "/MyApplication/background color", "white" ); int width = settings.readNumEntry( "/MyApplication/geometry/width", 640 ); // ...
A typical usage pattern for application exit or 'save preferences':
QSettings settings; settings.insertSearchPath( QSettings::Windows, "/MyCompany" ); // No search path needed for Unix; see notes further on. settings.writeEntry( "/MyApplication/background color", bgColor ); settings.writeEntry( "/MyApplication/geometry/width", width ); // ...
You can get a list of entry-holding keys by calling entryList(), and a list of key-holding keys using subkeyList().
QStringList keys = entryList( "/MyApplication" ); // keys contains 'background color' and 'foreground color'. QStringList keys = entryList( "/MyApplication/recent files" ); // keys contains '1', '2' and '3'. QStringList subkeys = subkeyList( "/MyApplication" ); // subkeys contains 'geometry' and 'recent files' QStringList subkeys = subkeyList( "/MyApplication/recent files" ); // subkeys is empty.
If you wish to use a different search path call insertSearchPath() as often as necessary to add your preferred paths. Call removeSearchPath() to remove any unwanted paths.
Since settings for Windows are stored in the registry there are size limits as follows:
These limitations are not enforced on Unix.
There is no universally accepted place for storing application settings under Unix. In the examples the settings file will be searched for in the following directories:
If you want to put the settings in a particular place in the filesystem you could do this:
settings.insertSearchPath( QSettings::Unix, "/opt/MyCompany/share" );
But in practice you may prefer not to use a search path for Unix. For example the following code:
settings.writeEntry( "/MyApplication/geometry/width", width );will end up writing the "geometry/width" setting to the file $HOME/.qt/myapplicationrc (assuming that the application is being run by an ordinary user, i.e. not by root).
For multiplatform applications you should ensure that the Windows size limitations are not exceeded.
See also Input/Output and Networking and Miscellaneous Classes.
Example settings:
/MyCompany/MyApplication/background color /MyCompany/MyApplication/foreground color /MyCompany/MyApplication/geometry/x /MyCompany/MyApplication/geometry/y /MyCompany/MyApplication/geometry/width /MyCompany/MyApplication/geometry/height
QStringList keys = entryList( "/MyCompany/MyApplication" );keys contains 'background color' and 'foreground color'. It does not contain 'geometry' because this key contains keys not entries.
To access the geometry values could either use subkeyList() to read the keys and then read each entry, or simply read each entry directly by specifying its full key, e.g. "/MyCompany/MyApplication/geometry/y".
See also subkeyList().
When s is Windows and the execution environment is not Windows the function does nothing. Similarly when s is Unix and the execution environment is not Unix the function does nothing.
When s is Windows, and the execution environment is Windows, the search path list will be used as the first subfolder of the "Software" folder in the registry.
When reading settings the folders are searched forwards from the first folder (listed below) to the last, with later settings overriding settings found earlier, and ignoring any folders for which the user doesn't have read permission.
QSettings settings; settings.insertSearchPath( QSettings::Windows, "/MyCompany" ); settings.writeEntry( "/MyApplication/Tip of the day", TRUE );The code above will write the subkey "Tip of the day" into the first of the registry folders listed below that is found and for which the user has write permission.
When s is Unix, and the execution environment is Unix, the search path list will be used when trying to determine a suitable filename for reading and writing settings files. By default, there are two entries in the search path:
All insertions into the search path will go before $HOME/.qt/. For example:
QSettings settings; settings.insertSearchPath( QSettings::Unix, "/opt/MyCompany/share/etc" ); settings.insertSearchPath( QSettings::Unix, "/opt/MyCompany/share/MyApplication/etc" ); // ...Will result in a search path of:
Settings under Unix are stored in files whose names are based on the first subkey of the key (not including the search path). The algorithm for creating names is essentially: lowercase the first subkey, replace spaces with underscores and add 'rc', e.g. /MyCompany/MyApplication/background color will be stored in myapplicationrc (assuming that /MyCompany is part of the search path).
See also removeSearchPath().
Example: chart/chartform.cpp.
See also readEntry(), readNumEntry(), readDoubleEntry(), writeEntry() and removeEntry().
See also readEntry(), readNumEntry(), readBoolEntry(), writeEntry() and removeEntry().
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry(), writeEntry() and removeEntry().
Example: chart/chartform.cpp.
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
QStringList list = mySettings.readListEntry( "recentfiles" ); QStringList::Iterator it = list.begin(); while( it != list.end() ) { myProcessing( *it ); ++it; }
See also readEntry(), readDoubleEntry(), readBoolEntry(), writeEntry(), removeEntry() and QStringList::split().
Reads the entry specified by key as a string. The separator is used to create a QStringList by calling QStringList::split(separator, entry). If ok is non-null, *ok is set to TRUE if the key was read, FALSE otherwise.
Note that if you want to iterate over the list, you should iterate over a copy, e.g.
QStringList list = mySettings.readListEntry( "size", " " ); QStringList::Iterator it = list.begin(); while( it != list.end() ) { myProcessing( *it ); ++it; }
See also readEntry(), readDoubleEntry(), readBoolEntry(), writeEntry(), removeEntry() and QStringList::split().
See also readEntry(), readDoubleEntry(), readBoolEntry(), writeEntry() and removeEntry().
Example: chart/chartform.cpp.
Returns TRUE if the entry existed and was removed; otherwise returns FALSE.
See also readEntry() and writeEntry().
See also insertSearchPath().
Example settings:
/MyCompany/MyApplication/background color /MyCompany/MyApplication/foreground color /MyCompany/MyApplication/geometry/x /MyCompany/MyApplication/geometry/y /MyCompany/MyApplication/geometry/width /MyCompany/MyApplication/geometry/height /MyCompany/MyApplication/recent files/1 /MyCompany/MyApplication/recent files/2 /MyCompany/MyApplication/recent files/3
QStringList keys = subkeyList( "/MyCompany/MyApplication" );keys contains 'geometry' and 'recent files'. It does not contain 'background color' or 'foreground color' because they are keys which contain entries not keys. To get a list of keys that have values rather than subkeys use entryList().
See also entryList().
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
Example: chart/chartform.cpp.
Writes the double entry value into key key. The key is created if it doesn't exist. Any previous value is overwritten by value.
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
Writes the integer entry value into key key. The key is created if it doesn't exist. Any previous value is overwritten by value.
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
Writes the string entry value into key key. The key is created if it doesn't exist. Any previous value is overwritten by value. If value is an empty string or a null string the key's value will be an empty string.
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
Writes the string list entry value into key key. The key is created if it doesn't exist. Any previous value is overwritten by value.
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
Writes the string list entry value into key key. The key is created if it doesn't exist. Any previous value is overwritten by value. The list is stored as a sequence of strings separated by separator, so none of the strings in the list should contain the separator. If the list is empty or null the key's value will be an empty string.
If an error occurs the settings are left unchanged and FALSE is returned; otherwise TRUE is returned.
See also readListEntry(), readNumEntry(), readDoubleEntry(), readBoolEntry() and removeEntry().
This file is part of the Qt toolkit. Copyright © 1995-2002 Trolltech. All Rights Reserved.
Copyright © 2002 Trolltech | Trademarks | Qt version 3.0.5
|