]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_HELP_H_BASE_ |
2 | #define _WX_HELP_H_BASE_ | |
c801d85f | 3 | |
3379ed37 VZ |
4 | #if wxUSE_HELP |
5 | ||
88ac883a | 6 | #include "wx/helpbase.h" |
c801d85f | 7 | |
2049ba38 | 8 | #ifdef __WXMSW__ |
88ac883a VZ |
9 | #include "wx/msw/helpwin.h" |
10 | ||
11 | #define wxHelpController wxWinHelpController | |
12 | #define sm_classwxHelpController sm_classwxWinHelpController | |
13 | #else // !MSW | |
7c4a59a8 | 14 | |
3379ed37 | 15 | #if wxUSE_WXHTML_HELP |
e152ed15 JS |
16 | #include "wx/html/helpctrl.h" |
17 | #define wxHelpController wxHtmlHelpController | |
18 | #define sm_classwxHelpController sm_classwxHtmlHelpController | |
7c4a59a8 | 19 | #else |
3379ed37 VZ |
20 | #include "wx/generic/helpext.h" |
21 | #define wxHelpController wxExtHelpController | |
22 | #define sm_classwxHelpController sm_classwxExtHelpController | |
7c4a59a8 JS |
23 | #endif |
24 | ||
88ac883a | 25 | #endif // MSW/!MSW |
e5fb7191 | 26 | |
3379ed37 VZ |
27 | #endif // wxUSE_HELP |
28 | ||
c801d85f | 29 | #endif |
34138703 | 30 | // _WX_HELP_H_BASE_ |