2005-03-16 11:18:31 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: help.h
|
|
|
|
// Purpose: wxHelpController base header
|
|
|
|
// Author: wxWidgets Team
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
2005-05-04 14:57:50 -04:00
|
|
|
// Copyright: (c) Julian Smart
|
2005-03-16 11:18:31 -05:00
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2005-03-16 11:18:31 -05:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
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
|
2004-12-20 07:44:22 -05:00
|
|
|
#elif defined(__WXPALMOS__)
|
2004-10-19 09:40:30 -04:00
|
|
|
#include "wx/palmos/help.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxPalmHelpController
|
2003-07-12 16:11:24 -04:00
|
|
|
#elif defined(__WXMSW__)
|
2005-04-17 06:54:56 -04:00
|
|
|
#include "wx/msw/helpchm.h"
|
1999-06-01 11:32:12 -04:00
|
|
|
|
2005-04-17 06:54:56 -04:00
|
|
|
#define wxHelpController wxCHMHelpController
|
1999-06-01 11:32:12 -04:00
|
|
|
#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_
|