]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/app.h
Experimental notebook API
[wxWidgets.git] / include / wx / msw / app.h
index 8fe8d1224819cea4b91b3adb254cb9628ee79fda..239e5888f3d65cf1e58c411d4e609cbbe650599d 100644 (file)
@@ -25,6 +25,10 @@ class WXDLLEXPORT wxApp ;
 class WXDLLEXPORT wxKeyEvent;
 class WXDLLEXPORT wxLog;
 
+#if USE_WXCONFIG
+  class WXDLLEXPORT wxConfig;
+#endif //USE_WXCONFIG 
+
 #define wxPRINT_WINDOWS         1
 #define wxPRINT_POSTSCRIPT      2
 
@@ -111,7 +115,13 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
   inline bool GetAuto3D(void) const { return m_auto3D; }
 
   // Creates a log object
-  virtual wxLog* CreateLogTarget(void);
+  virtual wxLog* CreateLogTarget();
+
+#if USE_WXCONFIG
+  // override this function to create a global wxConfig object of different
+  // than default type (right now the default implementation returns NULL)
+  virtual wxConfig* CreateConfig() { return NULL; }
+#endif //USE_WXCONFIG 
 
 public:
 //  void (*work_proc)(wxApp*app); // work procedure;