2005-03-16 16:18:31 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: help.h
|
|
|
|
// Purpose: wxHelpController base header
|
|
|
|
// Author: wxWidgets Team
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// Copyright: (c) wxWidgets Team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_HELP_H_BASE_
|
|
|
|
#define _WX_HELP_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-07-03 19:38:19 +00:00
|
|
|
#if wxUSE_HELP
|
|
|
|
|
1999-06-01 15:32:12 +00:00
|
|
|
#include "wx/helpbase.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-12 20:11:24 +00:00
|
|
|
#ifdef __WXWINCE__
|
|
|
|
#include "wx/msw/wince/helpwce.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxWinceHelpController
|
2004-12-20 12:44:22 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
2004-10-19 13:40:30 +00:00
|
|
|
#include "wx/palmos/help.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxPalmHelpController
|
2003-07-12 20:11:24 +00:00
|
|
|
#elif defined(__WXMSW__)
|
2005-04-17 10:54:56 +00:00
|
|
|
#include "wx/msw/helpchm.h"
|
1999-06-01 15:32:12 +00:00
|
|
|
|
2005-04-17 10:54:56 +00:00
|
|
|
#define wxHelpController wxCHMHelpController
|
1999-06-01 15:32:12 +00:00
|
|
|
#else // !MSW
|
2000-03-08 13:04:51 +00:00
|
|
|
|
2001-07-03 19:38:19 +00:00
|
|
|
#if wxUSE_WXHTML_HELP
|
2002-03-23 12:02:54 +00:00
|
|
|
#include "wx/html/helpctrl.h"
|
|
|
|
#define wxHelpController wxHtmlHelpController
|
2000-03-08 13:04:51 +00:00
|
|
|
#else
|
2001-07-03 19:38:19 +00:00
|
|
|
#include "wx/generic/helpext.h"
|
|
|
|
#define wxHelpController wxExtHelpController
|
2000-03-08 13:04:51 +00:00
|
|
|
#endif
|
|
|
|
|
1999-06-01 15:32:12 +00:00
|
|
|
#endif // MSW/!MSW
|
1998-06-14 20:53:26 +00:00
|
|
|
|
2001-07-03 19:38:19 +00:00
|
|
|
#endif // wxUSE_HELP
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_HELP_H_BASE_
|