]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
OS X savvy implementation
[wxWidgets.git] / include / wx / help.h
index 9622355ff6aa3a2aa4d007e428cf535b4d6e2903..5ea82acabd216a8ea53671e54540a671e9909032 100644 (file)
@@ -1,13 +1,35 @@
-#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"
+#if wxUSE_HELP
+
+#include "wx/helpbase.h"
+
+#ifdef __WXWINCE__
+    #include "wx/msw/wince/helpwce.h"
+
+    #define wxHelpController wxWinceHelpController
+#elif defined(__WXPALMOS__)
+    #include "wx/palmos/help.h"
+
+    #define wxHelpController wxPalmHelpController
+#elif defined(__WXMSW__)
+    #include "wx/msw/helpwin.h"
+
+    #define wxHelpController wxWinHelpController
+#else // !MSW
+
+#if wxUSE_WXHTML_HELP
+    #include "wx/html/helpctrl.h"
+    #define wxHelpController wxHtmlHelpController
 #else
-#include "wx/generic/helpxlp.h"
+    #include "wx/generic/helpext.h"
+    #define wxHelpController wxExtHelpController
 #endif
 
+#endif // MSW/!MSW
+
+#endif // wxUSE_HELP
+
 #endif
-    // __HELPH_BASE__
+    // _WX_HELP_H_BASE_