]>
Commit | Line | Data |
---|---|---|
2ecf902b | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/help.h |
2ecf902b WS |
3 | // Purpose: wxHelpController base header |
4 | // Author: wxWidgets Team | |
5 | // Modified by: | |
6 | // Created: | |
99d80019 | 7 | // Copyright: (c) Julian Smart |
2ecf902b WS |
8 | // RCS-ID: $Id$ |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_HELP_H_BASE_ |
13 | #define _WX_HELP_H_BASE_ | |
c801d85f | 14 | |
2ecf902b WS |
15 | #include "wx/defs.h" |
16 | ||
3379ed37 VZ |
17 | #if wxUSE_HELP |
18 | ||
88ac883a | 19 | #include "wx/helpbase.h" |
c801d85f | 20 | |
7a026580 JS |
21 | #ifdef __WXWINCE__ |
22 | #include "wx/msw/wince/helpwce.h" | |
23 | ||
24 | #define wxHelpController wxWinceHelpController | |
7a026580 | 25 | #elif defined(__WXMSW__) |
2f0e16e1 | 26 | #include "wx/msw/helpchm.h" |
88ac883a | 27 | |
2f0e16e1 | 28 | #define wxHelpController wxCHMHelpController |
88ac883a | 29 | #else // !MSW |
7c4a59a8 | 30 | |
3379ed37 | 31 | #if wxUSE_WXHTML_HELP |
e152ed15 JS |
32 | #include "wx/html/helpctrl.h" |
33 | #define wxHelpController wxHtmlHelpController | |
7c4a59a8 | 34 | #else |
3379ed37 VZ |
35 | #include "wx/generic/helpext.h" |
36 | #define wxHelpController wxExtHelpController | |
7c4a59a8 JS |
37 | #endif |
38 | ||
88ac883a | 39 | #endif // MSW/!MSW |
e5fb7191 | 40 | |
3379ed37 VZ |
41 | #endif // wxUSE_HELP |
42 | ||
c801d85f | 43 | #endif |
34138703 | 44 | // _WX_HELP_H_BASE_ |