X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad860fbf5def17050cee42022d754bfa577f16ca..012409e9ef464462a096344d61119d783b77865d:/include/wx/help.h diff --git a/include/wx/help.h b/include/wx/help.h index f1ba186db5..8b6a9c1ddb 100644 --- a/include/wx/help.h +++ b/include/wx/help.h @@ -1,24 +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 -#define classwxHelpController classwxWinHelpController -#elif defined(__GTK__) -#define wxHelpController wxHTMLHelpController -#define classwxHelpController classwxHTMLHelpController + #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 -#define classwxHelpController classwxXLPHelpController + #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_