Ignore:
Timestamp:
Jun 11, 2009, 2:40:50 PM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

corelib: More OS/2 bits for QSettings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/io/qsettings.cpp

    r2 r25  
    350350// see also qsettings_win.cpp and qsettings_mac.cpp
    351351
    352 #if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
     352#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
    353353QSettingsPrivate *QSettingsPrivate::create(QSettings::Format format, QSettings::Scope scope,
    354354                                           const QString &organization, const QString &application)
     
    358358#endif
    359359
    360 #if !defined(Q_OS_WIN)
     360#if !defined(Q_OS_WIN)
    361361QSettingsPrivate *QSettingsPrivate::create(const QString &fileName, QSettings::Format format)
    362362{
     
    11301130           Windows registry and the Mac CFPreferences.)
    11311131       */
    1132 #ifdef Q_OS_WIN
     1132#if
    11331133        pathHash->insert(pathHashKey(QSettings::IniFormat, QSettings::UserScope),
    11341134                         windowsConfigPath(CSIDL_APPDATA) + QDir::separator());
    11351135        pathHash->insert(pathHashKey(QSettings::IniFormat, QSettings::SystemScope),
    11361136                         windowsConfigPath(CSIDL_COMMON_APPDATA) + QDir::separator());
     1137
     1138
     1139
     1140
     1141
     1142
     1143
     1144
     1145
     1146
     1147
     1148
     1149
     1150
     1151
     1152
     1153
     1154
     1155
     1156
     1157
     1158
    11371159#else
    11381160        QString userPath;
     
    18981920    IniMap::const_iterator i;
    18991921
    1900 #ifdef Q_OS_WIN
     1922#if
    19011923    const char * const eol = "\r\n";
    19021924#else
     
    20322054    Users normally expect an application to remember its settings
    20332055    (window sizes and positions, options, etc.) across sessions. This
    2034     information is often stored in the system registry on Windows,
     2056    information is often stored in the system registry on Windows,
    20352057    and in XML preferences files on Mac OS X. On Unix systems, in the
    20362058    absence of a standard, many applications (including the KDE
     
    21352157    \section1 Key Syntax
    21362158
    2137     Setting keys can contain any Unicode characters. The Windows
     2159    Setting keys can contain any Unicode characters. The Windows
    21382160    registry and INI files use case-insensitive keys, whereas the
    21392161    Carbon Preferences API on Mac OS X uses case-sensitive keys. To
     
    23212343    \endlist
    23222344
    2323     On Windows, NativeFormat settings are stored in the following
     2345    On Windows, NativeFormat settings are stored in the following
    23242346    registry paths:
    23252347
     
    23592381    Settings\\All Users\\Application Data}.
    23602382
     2383
     2384
     2385
     2386
     2387
     2388
     2389
     2390
     2391
    23612392    The paths for the \c .ini and \c .conf files can be changed using
    2362     setPath(). On Unix and Mac OS X, the user can override them by by
    2363     setting the \c XDG_CONFIG_HOME environment variable; see
    2364     setPath() for details.
     2393    setPath(). On Unix, Mac OS X and OS/2, the user can override them by setting
     2394    the \c XDG_CONFIG_HOME environment variable; see setPath() for details.
    23652395
    23662396    \section2 Accessing INI and .plist Files Directly
     
    23822412    \snippet doc/src/snippets/code/src_corelib_io_qsettings.cpp 3
    23832413
    2384     \section2 Accessing the Windows Registry Directly
    2385 
    2386     On Windows, QSettings lets you access settings that have been
     2414    \section2 Accessing the Windows Registry Directly
     2415
     2416    On Windows, QSettings lets you access settings that have been
    23872417    written with QSettings (or settings in a supported format, e.g., string
    23882418    data) in the system registry. This is done by constructing a QSettings
     
    24052435    so.
    24062436
    2407     \section2 Accessing Common Registry Settings on Windows
    2408 
    2409     On Windows, it is possible for a key to have both a value and subkeys.
    2410     Its default value is accessed by using "Default" or "." in
     2437    \section2 Accessing Common Registry Settings on Windows
     2438
     2439    On Windows
     2440    Its default value is accessed by using "Default" or "." in
    24112441    place of a subkey:
    24122442
    24132443    \snippet doc/src/snippets/code/src_corelib_io_qsettings.cpp 6
    24142444
    2415     On other platforms than Windows, "Default" and "." would be
     2445    On other platforms than Windows, "Default" and "." would be
    24162446    treated as regular subkeys.
    24172447
     
    24242454
    24252455    \list
    2426     \o  The Windows system registry has the following limitations: A
     2456    \o  The Windows system registry has the following limitations: A
    24272457        subkey may not exceed 255 characters, an entry's value may
    24282458        not exceed 16,383 characters, and all the values of a key may
     
    24822512    \value NativeFormat  Store the settings using the most
    24832513                         appropriate storage format for the platform.
    2484                          On Windows, this means the system registry;
     2514                         On Windows, this means the system registry;
    24852515                         on Mac OS X, this means the CFPreferences
    24862516                         API; on Unix, this means textual
     
    26472677    fileName depends on the platform. On Unix, \a fileName is the
    26482678    name of an INI file. On Mac OS X, \a fileName is the name of a
    2649     \c .plist file. On Windows, \a fileName is a path in the system
     2679    \c .plist file. On Windows, \a fileName is a path in the system
    26502680    registry.
    26512681
     
    28062836    object are stored.
    28072837
    2808     On Windows, if the format is QSettings::NativeFormat, the return value
    2809     is a system registry path, not a file path.
     2838    On Windows
     2839    is a system registry path, not a file path.
    28102840
    28112841    \sa isWritable(), format()
     
    32063236
    32073237/*!
    3208  
     3238
    32093239  Sets the value of setting \a key to \a value. If the \a key already
    32103240  exists, the previous value is overwritten.
    32113241
    3212   Note that the Windows registry and INI files use case-insensitive
     3242  Note that the Windows registry and INI files use case-insensitive
    32133243  keys, whereas the Carbon Preferences API on Mac OS X uses
    32143244  case-sensitive keys. To avoid portability problems, see the \l{Key
     
    32453275    \snippet doc/src/snippets/code/src_corelib_io_qsettings.cpp 25
    32463276
    3247     Note that the Windows registry and INI files use case-insensitive
    3248     keys, whereas the Carbon Preferences API on Mac OS X uses
    3249     case-sensitive keys. To avoid portability problems, see the \l{Key
    3250     Syntax} rules.
     3277    Note that the Windows and OS/2 registry and INI files use case-insensitive
     3278    keys, whereas the Carbon Preferences API on Mac OS X uses case-sensitive
     3279    keys. To avoid portability problems, see the \l{Key Syntax} rules.
    32513280
    32523281    \sa setValue(), value(), contains()
     
    32803309    relative to that group.
    32813310
    3282     Note that the Windows registry and INI files use case-insensitive
    3283     keys, whereas the Carbon Preferences API on Mac OS X uses
    3284     case-sensitive keys. To avoid portability problems, see the \l{Key
    3285     Syntax} rules.
     3311    Note that the Windows and OS/2 registry and INI files use case-insensitive
     3312    keys, whereas the Carbon Preferences API on Mac OS X uses case-sensitive
     3313    keys. To avoid portability problems, see the \l{Key Syntax} rules.
    32863314
    32873315    \sa value(), setValue()
     
    33423370    returned.
    33433371
    3344     Note that the Windows registry and INI files use case-insensitive
     3372    Note that the Windows registry and INI files use case-insensitive
    33453373    keys, whereas the Carbon Preferences API on Mac OS X uses
    33463374    case-sensitive keys. To avoid portability problems, see the \l{Key
     
    34053433{
    34063434    setPath(IniFormat, SystemScope, dir);
    3407 #if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
     3435#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
    34083436    setPath(NativeFormat, SystemScope, dir);
    34093437#endif
     
    34193447{
    34203448    setPath(IniFormat, UserScope, dir);
    3421 #if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
     3449#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
    34223450    setPath(NativeFormat, UserScope, dir);
    34233451#endif
     
    34423470    \row    \o{1,2} Mac OS X    \o{1,2} IniFormat               \o UserScope   \o \c $HOME/.config
    34433471    \row                                                        \o SystemScope \o \c /etc/xdg
     3472
     3473
    34443474    \endtable
    34453475
    3446     The default UserScope paths on Unix and Mac OS X (\c
    3447     $HOME/.config or $HOME/Settings) can be overridden by the user by setting the
     3476    The default UserScope paths on Unix
     3477    $HOME/Settings) can be overridden by the user by setting the
    34483478    \c XDG_CONFIG_HOME environment variable. The default SystemScope
    3449     paths on Unix and Mac OS X (\c /etc/xdg) can be overridden when
    3450     building the Qt library using the \c configure script's \c
     3479    paths on Unix, Mac OS X (\c /etc/xdg) and OS/2 (\c <boot_drv>:\OS2\xdg) can
     3480    be overridden when building the Qt library using the \c configure script's
     3481    \c
    34513482    --sysconfdir flag (see QLibraryInfo for details).
    34523483
    3453     Setting the NativeFormat paths on Windows and Mac OS X has no
    3454     effect.
     3484    Setting the NativeFormat paths on Windows, Mac OS X and OS/2 has no effect.
    34553485
    34563486    \warning This function doesn't affect existing QSettings objects.
     
    37233753
    37243754    \value Unix Unix systems (X11 and Embedded Linux)
    3725     \value Windows Microsoft Windows systems
     3755    \value Windows Microsoft Windows systems
    37263756    \value Mac Mac OS X systems
    37273757
Note: See TracChangeset for help on using the changeset viewer.