Use wxHtmlHelpController for HTML help, not wxHelpControllerHtml :-)
[wxWidgets.git] / include / wx / help.h
1 #ifndef _WX_HELP_H_BASE_
2 #define _WX_HELP_H_BASE_
3
4 #if wxUSE_HELP
5
6 #include "wx/helpbase.h"
7
8 #ifdef __WXMSW__
9 #include "wx/msw/helpwin.h"
10
11 #define wxHelpController wxWinHelpController
12 #define sm_classwxHelpController sm_classwxWinHelpController
13 #else // !MSW
14
15 #if wxUSE_WXHTML_HELP
16 #include "wx/html/helpctrl.h"
17 #define wxHelpController wxHtmlHelpController
18 #define sm_classwxHelpController sm_classwxHtmlHelpController
19 #else
20 #include "wx/generic/helpext.h"
21 #define wxHelpController wxExtHelpController
22 #define sm_classwxHelpController sm_classwxExtHelpController
23 #endif
24
25 #endif // MSW/!MSW
26
27 #endif // wxUSE_HELP
28
29 #endif
30 // _WX_HELP_H_BASE_