]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
another compilation fix
[wxWidgets.git] / include / wx / help.h
index 9622355ff6aa3a2aa4d007e428cf535b4d6e2903..e67d49358a63d7d2c337e5e9a98ab4dcb8b928d1 100644 (file)
@@ -1,13 +1,31 @@
-#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"
+#include "wx/helpbase.h"
+
+#ifdef __WXMSW__
+    #include "wx/msw/helpwin.h"
+
+    #define wxHelpController wxWinHelpController
+    #define sm_classwxHelpController sm_classwxWinHelpController
+#else // !MSW
+
+/* By default, if wxHTML is compiled in, use the
+   wxHelpControllerHtml. If not, use the external help controller.
+   (of course, we shouldn't do it for wxMSW)
+*/
+
+#if wxUSE_HTML
+#   include "wx/generic/helpwxht.h"
+#   define wxHelpController wxHelpControllerHtml
+#   define sm_classwxHelpController sm_classwxHelpControllerHtml
 #else
-#include "wx/generic/helpxlp.h"
+#   include "wx/generic/helpext.h"
+#   define wxHelpController wxExtHelpController
+#   define sm_classwxHelpController sm_classwxExtHelpController
 #endif
 
+#endif // MSW/!MSW
+
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_