]> git.saurik.com Git - wxWidgets.git/blame - include/wx/help.h
Calling sizerItem->SetWindow shoudl set the minsize too.
[wxWidgets.git] / include / wx / help.h
CommitLineData
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
7a026580 12#elif defined(__WXMSW__)
88ac883a
VZ
13 #include "wx/msw/helpwin.h"
14
15 #define wxHelpController wxWinHelpController
88ac883a 16#else // !MSW
7c4a59a8 17
3379ed37 18#if wxUSE_WXHTML_HELP
e152ed15
JS
19 #include "wx/html/helpctrl.h"
20 #define wxHelpController wxHtmlHelpController
7c4a59a8 21#else
3379ed37
VZ
22 #include "wx/generic/helpext.h"
23 #define wxHelpController wxExtHelpController
7c4a59a8
JS
24#endif
25
88ac883a 26#endif // MSW/!MSW
e5fb7191 27
3379ed37
VZ
28#endif // wxUSE_HELP
29
c801d85f 30#endif
34138703 31 // _WX_HELP_H_BASE_