1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_HELP_H_BASE_
|
|
|
|
#define _WX_HELP_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-07-03 15:38:19 -04:00
|
|
|
#if wxUSE_HELP
|
|
|
|
|
1999-06-01 11:32:12 -04:00
|
|
|
#include "wx/helpbase.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2003-07-12 16:11:24 -04:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
#include "wx/msw/wince/helpwce.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxWinceHelpController
|
|
|
|
#elif defined(__WXMSW__)
|
1999-06-01 11:32:12 -04:00
|
|
|
#include "wx/msw/helpwin.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxWinHelpController
|
|
|
|
#else // !MSW
|
2000-03-08 08:04:51 -05:00
|
|
|
|
2001-07-03 15:38:19 -04:00
|
|
|
#if wxUSE_WXHTML_HELP
|
2002-03-23 07:02:54 -05:00
|
|
|
#include "wx/html/helpctrl.h"
|
|
|
|
#define wxHelpController wxHtmlHelpController
|
2000-03-08 08:04:51 -05:00
|
|
|
#else
|
2001-07-03 15:38:19 -04:00
|
|
|
#include "wx/generic/helpext.h"
|
|
|
|
#define wxHelpController wxExtHelpController
|
2000-03-08 08:04:51 -05:00
|
|
|
#endif
|
|
|
|
|
1999-06-01 11:32:12 -04:00
|
|
|
#endif // MSW/!MSW
|
1998-06-14 16:53:26 -04:00
|
|
|
|
2001-07-03 15:38:19 -04:00
|
|
|
#endif // wxUSE_HELP
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_HELP_H_BASE_
|