]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
Attempted to fix splittree problem by not pushing event handler
[wxWidgets.git] / include / wx / help.h
index eb1575cd8488b1205d89a9bcd97a4f58301b10ec..8b6a9c1ddbc529bf42f90620b77488d71723261d 100644 (file)
@@ -1,21 +1,30 @@
-#ifndef __HELPH_BASE__
-#define __HELPH_BASE__
+#ifndef _WX_HELP_H_BASE_
+#define _WX_HELP_H_BASE_
 
-#ifdef __WINDOWS__
-#include "wx/msw/helpwin.h"
-#elif defined(__GTK__)
-#include "wx/generic/helphtml.h"
-#else
-#include "wx/generic/helpxlp.h"
-#endif
+#if wxUSE_HELP
+
+#include "wx/helpbase.h"
+
+#ifdef __WXMSW__
+    #include "wx/msw/helpwin.h"
 
-#ifdef __WINDOWS__
-#define wxHelpController wxWinHelpController
-#elif defined(__GTK__)
-#define wxHelpController wxHTMLHelpController
+    #define wxHelpController wxWinHelpController
+    #define sm_classwxHelpController sm_classwxWinHelpController
+#else // !MSW
+
+#if wxUSE_WXHTML_HELP
+    #include "wx/generic/helpwxht.h"
+    #define wxHelpController wxHelpControllerHtml
+    #define sm_classwxHelpController sm_classwxHelpControllerHtml
 #else
-#define wxHelpController wxXLPHelpController
+    #include "wx/generic/helpext.h"
+    #define wxHelpController wxExtHelpController
+    #define sm_classwxHelpController sm_classwxExtHelpController
 #endif
 
+#endif // MSW/!MSW
+
+#endif // wxUSE_HELP
+
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_