No real changes, just refactor wxControlContainer code a little.
[wxWidgets.git] / include / wx / help.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/help.h
3 // Purpose: wxHelpController base header
4 // Author: wxWidgets Team
5 // Modified by:
6 // Created:
7 // Copyright: (c) Julian Smart
8 // RCS-ID: $Id$
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_HELP_H_BASE_
13 #define _WX_HELP_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_HELP
18
19 #include "wx/helpbase.h"
20
21 #ifdef __WXWINCE__
22 #include "wx/msw/wince/helpwce.h"
23
24 #define wxHelpController wxWinceHelpController
25 #elif defined(__WXMSW__)
26 #include "wx/msw/helpchm.h"
27
28 #define wxHelpController wxCHMHelpController
29 #else // !MSW
30
31 #if wxUSE_WXHTML_HELP
32 #include "wx/html/helpctrl.h"
33 #define wxHelpController wxHtmlHelpController
34 #else
35 #include "wx/generic/helpext.h"
36 #define wxHelpController wxExtHelpController
37 #endif
38
39 #endif // MSW/!MSW
40
41 #endif // wxUSE_HELP
42
43 #endif
44 // _WX_HELP_H_BASE_