]> git.saurik.com Git - wxWidgets.git/blame - include/wx/config.h
Restore correct setting of the background colour.
[wxWidgets.git] / include / wx / config.h
CommitLineData
2ecf902b
WS
1/////////////////////////////////////////////////////////////////////////////
2// Name: config.h
3// Purpose: wxConfig base header
99d80019 4// Author: Julian Smart
2ecf902b
WS
5// Modified by:
6// Created:
99d80019 7// Copyright: (c) Julian Smart
2ecf902b
WS
8// RCS-ID: $Id$
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
26ac5fad
JS
12#ifndef _WX_CONFIG_H_BASE_
13#define _WX_CONFIG_H_BASE_
14
7ac1b576 15#include "wx/confbase.h"
fad4327b
VZ
16
17#if wxUSE_CONFIG
18
f0d3a2cc
VZ
19// ----------------------------------------------------------------------------
20// define the native wxConfigBase implementation
21// ----------------------------------------------------------------------------
22
23// under Windows we prefer to use the native implementation but can be forced
24// to use the file-based one
16193c2b 25#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
f0d3a2cc
VZ
26 #include "wx/msw/regconf.h"
27 #define wxConfig wxRegConfig
28#elif defined(__WXOS2__) && wxUSE_CONFIG_NATIVE
29 #include "wx/os2/iniconf.h"
30 #define wxConfig wxIniConfig
23a59c2c 31#elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
f0d3a2cc
VZ
32 #include "wx/palmos/prefconf.h"
33 #define wxConfig wxPrefConfig
34#else // either we're under Unix or wish to always use config files
35 #include "wx/fileconf.h"
36 #define wxConfig wxFileConfig
c801d85f
KB
37#endif
38
fad4327b
VZ
39#endif // wxUSE_CONFIG
40
f0d3a2cc 41#endif // _WX_CONFIG_H_BASE_