]>
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 | |
7a026580 JS |
8 | #ifdef __WXWINCE__ |
9 | #include "wx/msw/wince/helpwce.h" | |
10 | ||
11 | #define wxHelpController wxWinceHelpController | |
ffecfa5a JS |
12 | #elif defined(__PALMOS__) |
13 | #include "wx/palmos/help.h" | |
14 | ||
15 | #define wxHelpController wxPalmHelpController | |
7a026580 | 16 | #elif defined(__WXMSW__) |
88ac883a VZ |
17 | #include "wx/msw/helpwin.h" |
18 | ||
19 | #define wxHelpController wxWinHelpController | |
88ac883a | 20 | #else // !MSW |
7c4a59a8 | 21 | |
3379ed37 | 22 | #if wxUSE_WXHTML_HELP |
e152ed15 JS |
23 | #include "wx/html/helpctrl.h" |
24 | #define wxHelpController wxHtmlHelpController | |
7c4a59a8 | 25 | #else |
3379ed37 VZ |
26 | #include "wx/generic/helpext.h" |
27 | #define wxHelpController wxExtHelpController | |
7c4a59a8 JS |
28 | #endif |
29 | ||
88ac883a | 30 | #endif // MSW/!MSW |
e5fb7191 | 31 | |
3379ed37 VZ |
32 | #endif // wxUSE_HELP |
33 | ||
c801d85f | 34 | #endif |
34138703 | 35 | // _WX_HELP_H_BASE_ |