X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/55acd85e7134f8d16d40dc21cd665c5ea18a98f1..6c33b24c53c51b4053f898524a920eafba155ed0:/include/wx/help.h diff --git a/include/wx/help.h b/include/wx/help.h index b8d5098502..9fceec2754 100644 --- a/include/wx/help.h +++ b/include/wx/help.h @@ -1,19 +1,30 @@ #ifndef _WX_HELP_H_BASE_ #define _WX_HELP_H_BASE_ -#ifdef __WXMSW__ -#include "wx/msw/helpwin.h" -#else -#include "wx/generic/helpext.h" -#endif +#if wxUSE_HELP + +#include "wx/helpbase.h" #ifdef __WXMSW__ -#define wxHelpController wxWinHelpController -#define sm_classwxHelpController sm_classwxWinHelpController + #include "wx/msw/helpwin.h" + + #define wxHelpController wxWinHelpController + #define sm_classwxHelpController sm_classwxWinHelpController +#else // !MSW + +#if wxUSE_WXHTML_HELP + #include "wx/html/helpctrl.h" + #define wxHelpController wxHtmlHelpController + #define sm_classwxHelpController sm_classwxHtmlHelpController #else -#define wxHelpController wxExtHelpController -#define sm_classwxHelpController sm_classwxExtHelpController + #include "wx/generic/helpext.h" + #define wxHelpController wxExtHelpController + #define sm_classwxHelpController sm_classwxExtHelpController #endif +#endif // MSW/!MSW + +#endif // wxUSE_HELP + #endif // _WX_HELP_H_BASE_