X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c801d85f158c4cba50b588807daabdcbd0ed3853..7d59475e80c3ed8b9bb002fd402d6a7cc7dc090a:/include/wx/help.h diff --git a/include/wx/help.h b/include/wx/help.h index 9622355ff6..8fd7026427 100644 --- a/include/wx/help.h +++ b/include/wx/help.h @@ -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" +#if wxUSE_HELP + +#include "wx/helpbase.h" + +#ifdef __WXWINCE__ + #include "wx/msw/wince/helpwce.h" + + #define wxHelpController wxWinceHelpController +#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_