]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/help.h
OSX adaptions
[wxWidgets.git] / include / wx / help.h
index e67d49358a63d7d2c337e5e9a98ab4dcb8b928d1..17539c1b32881092eadfe60c03206f9c7a971986 100644 (file)
@@ -1,31 +1,43 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        wx/help.h
+// Purpose:     wxHelpController base header
+// Author:      wxWidgets Team
+// Modified by:
+// Created:
+// Copyright:   (c) Julian Smart
+// Licence:     wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
 #ifndef _WX_HELP_H_BASE_
 #define _WX_HELP_H_BASE_
 
+#include "wx/defs.h"
+
+#if wxUSE_HELP
+
 #include "wx/helpbase.h"
 
-#ifdef __WXMSW__
-    #include "wx/msw/helpwin.h"
+#ifdef __WXWINCE__
+    #include "wx/msw/wince/helpwce.h"
 
-    #define wxHelpController wxWinHelpController
-    #define sm_classwxHelpController sm_classwxWinHelpController
-#else // !MSW
+    #define wxHelpController wxWinceHelpController
+#elif defined(__WXMSW__)
+    #include "wx/msw/helpchm.h"
 
-/* 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)
-*/
+    #define wxHelpController wxCHMHelpController
+#else // !MSW
 
-#if wxUSE_HTML
-#   include "wx/generic/helpwxht.h"
-#   define wxHelpController wxHelpControllerHtml
-#   define sm_classwxHelpController sm_classwxHelpControllerHtml
+#if wxUSE_WXHTML_HELP
+    #include "wx/html/helpctrl.h"
+    #define wxHelpController wxHtmlHelpController
 #else
-#   include "wx/generic/helpext.h"
-#   define wxHelpController wxExtHelpController
-#   define sm_classwxHelpController sm_classwxExtHelpController
+    #include "wx/generic/helpext.h"
+    #define wxHelpController wxExtHelpController
 #endif
 
 #endif // MSW/!MSW
 
+#endif // wxUSE_HELP
+
 #endif
     // _WX_HELP_H_BASE_