]> git.saurik.com Git - wxWidgets.git/blame - include/wx/help.h
SQLINTEGER typedef
[wxWidgets.git] / include / wx / help.h
CommitLineData
2ecf902b
WS
1/////////////////////////////////////////////////////////////////////////////
2// Name: help.h
3// Purpose: wxHelpController base header
4// Author: wxWidgets Team
5// Modified by:
6// Created:
7// Copyright: (c) wxWidgets Team
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
4055ed82 25#elif defined(__WXPALMOS__)
ffecfa5a
JS
26 #include "wx/palmos/help.h"
27
28 #define wxHelpController wxPalmHelpController
7a026580 29#elif defined(__WXMSW__)
5fae57de 30 #include "wx/msw/helpbest.h"
88ac883a 31
5fae57de
JS
32 // CHM or WinHelp, whichever is available
33 #define wxHelpController wxBestHelpController
88ac883a 34#else // !MSW
7c4a59a8 35
3379ed37 36#if wxUSE_WXHTML_HELP
e152ed15
JS
37 #include "wx/html/helpctrl.h"
38 #define wxHelpController wxHtmlHelpController
7c4a59a8 39#else
3379ed37
VZ
40 #include "wx/generic/helpext.h"
41 #define wxHelpController wxExtHelpController
7c4a59a8
JS
42#endif
43
88ac883a 44#endif // MSW/!MSW
e5fb7191 45
3379ed37
VZ
46#endif // wxUSE_HELP
47
c801d85f 48#endif
34138703 49 // _WX_HELP_H_BASE_