]> git.saurik.com Git - wxWidgets.git/commitdiff
wxUSE_CONFIG_NATIVE fix
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 2 Dec 1999 16:32:16 +0000 (16:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 2 Dec 1999 16:32:16 +0000 (16:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4795 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/confbase.h
include/wx/config.h
include/wx/msw/setup0.h
src/common/config.cpp

index 46336d3d6551188246001bc04f4d3c1e5fe0d6c5..abb5f96dd0e049718940d718fc2e05df291aba07 100644 (file)
   #define   wxCONFIG_IMMUTABLE_PREFIX   '!'
 #endif
 
-/// should we use registry instead of configuration files under Win32?
+/// should we use registry instead of configuration files under Windows?
 // (i.e. whether wxConfigBase::Create() will create a wxFileConfig (if it's
 //  FALSE) or wxRegConfig (if it's true and we're under Win32) or wxIniConfig
 //  (under Win16))
-#ifndef   wxCONFIG_WIN32_NATIVE
-  #define wxCONFIG_WIN32_NATIVE          TRUE
+#ifndef   wxUSE_CONFIG_NATIVE
+  #define wxUSE_CONFIG_NATIVE 1
 #endif
 
 // Style flags for constructor style parameter
@@ -93,7 +93,7 @@ public:
   static wxConfigBase *Get() { if ( !ms_pConfig ) Create(); return ms_pConfig; }
     // create a new config object: this function will create the "best"
     // implementation of wxConfig available for the current platform, see
-    // comments near definition wxCONFIG_WIN32_NATIVE for details. It returns
+    // comments near definition wxUSE_CONFIG_NATIVE for details. It returns
     // the created object and also sets it as ms_pConfig.
   static wxConfigBase *Create();
     // should Get() try to create a new log object if the current one is NULL?
@@ -279,7 +279,7 @@ private:
 // ----------------------------------------------------------------------------
 
 // under Windows we prefer to use the native implementation
-#if defined(__WXMSW__) && wxCONFIG_WIN32_NATIVE
+#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
   #ifdef __WIN32__
     #define wxConfig  wxRegConfig
     #define sm_classwxConfig sm_classwxRegConfig
index d9ffb9fa58042f6b3ce6904afb7e62333b84f9c1..41afd94b018314fb8f82ff355fdae61438b274a2 100644 (file)
@@ -3,7 +3,7 @@
 
 #include "wx/confbase.h"
 
-#if defined(__WXMSW__) && defined(wxCONFIG_WIN32_NATIVE)
+#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
 #  ifdef __WIN32__
 #    include "wx/msw/regconf.h"
 #else
index 1a73808f9e2645272d23d085c3fe8dae91a76290..6e207d34cf970668b6088798e5652684750f8b13 100644 (file)
 // General features
 // ----------------------------------------------------------------------------
 
+// Setting wxUSE_CONFIG to 1 enables the use of wxConfig and related classes
+// which allow the application to store its settings in the persistent
+// storage. Setting this to 1 will also enable on-demand creation of the
+// global config object in wxApp.
+//
+// See also wxUSE_CONFIG_NATIVE below.
+//
+// Recommended setting: 1
 #define wxUSE_CONFIG           1
-                                // Use wxConfig, with CreateConfig in wxApp
+
+// If wxUSE_CONFIG is 1, you may choose to use either the native config
+// classes under Windows (using .INI files under Win16 and the registry under
+// Win32) or the portable text file format used by the config classes under
+// Unix.
+//
+// Default is 1 to use native classes. Note that you may still use
+// wxFileConfig even if you set this to 1 - just the config object created by
+// default for the applications needs will be a wxRegConfig or wxIniConfig and
+// not wxFileConfig.
+//
+// Recommended setting: 1
+#define wxUSE_CONFIG_NATIVE   1
+
 #define wxUSE_DIALUP_MANAGER   1
                                 // Use wxDialUpManager class
 #define wxUSE_POSTSCRIPT  0
index 19822e46912a335c1d6efe3e886a9e76118683b5..57d71204e3881de948858344332daa8edb23da7a 100644 (file)
@@ -23,7 +23,7 @@
   #pragma hdrstop
 #endif  //__BORLANDC__
 
-#if wxUSE_CONFIG && ((wxUSE_FILE && wxUSE_TEXTFILE) || defined(wxCONFIG_WIN32_NATIVE))
+#if wxUSE_CONFIG && ((wxUSE_FILE && wxUSE_TEXTFILE) || wxUSE_CONFIG_NATIVE))
 
 #include "wx/app.h"
 #include "wx/file.h"
@@ -75,7 +75,7 @@ wxConfigBase *wxConfigBase::Create()
 {
   if ( ms_bAutoCreate && ms_pConfig == NULL ) {
     ms_pConfig =
-    #if defined(__WXMSW__) && defined(wxCONFIG_WIN32_NATIVE)
+    #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
       #ifdef __WIN32__
         new wxRegConfig(wxTheApp->GetAppName(), wxTheApp->GetVendorName());
       #else  //WIN16