2011-03-20 18:05:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/help.h
|
|
|
|
// Purpose: wxHelpController base header
|
|
|
|
// Author: wxWidgets Team
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// Copyright: (c) Julian Smart
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_HELP_H_BASE_
|
|
|
|
#define _WX_HELP_H_BASE_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_HELP
|
|
|
|
|
|
|
|
#include "wx/helpbase.h"
|
|
|
|
|
2016-06-26 05:25:29 +00:00
|
|
|
#if defined(__WXMSW__)
|
2011-03-20 18:05:19 +00:00
|
|
|
#include "wx/msw/helpchm.h"
|
|
|
|
|
|
|
|
#define wxHelpController wxCHMHelpController
|
|
|
|
#else // !MSW
|
|
|
|
|
|
|
|
#if wxUSE_WXHTML_HELP
|
|
|
|
#include "wx/html/helpctrl.h"
|
|
|
|
#define wxHelpController wxHtmlHelpController
|
|
|
|
#else
|
|
|
|
#include "wx/generic/helpext.h"
|
|
|
|
#define wxHelpController wxExtHelpController
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // MSW/!MSW
|
|
|
|
|
|
|
|
#endif // wxUSE_HELP
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_HELP_H_BASE_
|