]>
Commit | Line | Data |
---|---|---|
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 __WXWINCE__ | |
9 | #include "wx/msw/wince/helpwce.h" | |
10 | ||
11 | #define wxHelpController wxWinceHelpController | |
12 | #elif defined(__WXPALMOS__) | |
13 | #include "wx/palmos/help.h" | |
14 | ||
15 | #define wxHelpController wxPalmHelpController | |
16 | #elif defined(__WXMSW__) | |
17 | #include "wx/msw/helpwin.h" | |
18 | ||
19 | #define wxHelpController wxWinHelpController | |
20 | #else // !MSW | |
21 | ||
22 | #if wxUSE_WXHTML_HELP | |
23 | #include "wx/html/helpctrl.h" | |
24 | #define wxHelpController wxHtmlHelpController | |
25 | #else | |
26 | #include "wx/generic/helpext.h" | |
27 | #define wxHelpController wxExtHelpController | |
28 | #endif | |
29 | ||
30 | #endif // MSW/!MSW | |
31 | ||
32 | #endif // wxUSE_HELP | |
33 | ||
34 | #endif | |
35 | // _WX_HELP_H_BASE_ |