2001-09-01 08:59:08 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: helpbest.h
|
|
|
|
// Purpose: Tries to load MS HTML Help, falls back to wxHTML upon failure
|
|
|
|
// Author: Mattia Barbon
|
|
|
|
// Modified by:
|
|
|
|
// Created: 02/04/2001
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Mattia Barbon
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-09-01 08:59:08 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_HELPBEST_H_
|
|
|
|
#define _WX_HELPBEST_H_
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-09-01 08:59:08 -04:00
|
|
|
#pragma interface "helpbest.h"
|
|
|
|
#endif
|
|
|
|
|
2004-05-08 05:38:14 -04:00
|
|
|
#if wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) \
|
|
|
|
&& wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
|
2001-09-01 08:59:08 -04:00
|
|
|
|
|
|
|
#include "wx/helpbase.h"
|
|
|
|
|
2003-07-04 09:04:05 -04:00
|
|
|
class WXDLLIMPEXP_HTML wxBestHelpController: public wxHelpControllerBase
|
2001-09-01 08:59:08 -04:00
|
|
|
{
|
|
|
|
public:
|
2002-03-09 16:55:39 -05:00
|
|
|
wxBestHelpController()
|
|
|
|
: m_helpControllerType( wxUseNone ),
|
|
|
|
m_helpController( NULL )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~wxBestHelpController() { delete m_helpController; }
|
|
|
|
|
2001-09-01 08:59:08 -04:00
|
|
|
// Must call this to set the filename
|
|
|
|
virtual bool Initialize(const wxString& file);
|
2003-09-11 05:58:31 -04:00
|
|
|
virtual bool Initialize(const wxString& file, int WXUNUSED(server) ) { return Initialize( file ); }
|
2002-03-09 16:55:39 -05:00
|
|
|
|
2001-09-01 08:59:08 -04:00
|
|
|
// If file is "", reloads file given in Initialize
|
|
|
|
virtual bool LoadFile(const wxString& file = wxEmptyString)
|
|
|
|
{
|
|
|
|
return m_helpController->LoadFile( GetValidFilename( file ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplayContents()
|
|
|
|
{
|
|
|
|
return m_helpController->DisplayContents();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplaySection(int sectionNo)
|
|
|
|
{
|
|
|
|
return m_helpController->DisplaySection( sectionNo );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplaySection(const wxString& section)
|
|
|
|
{
|
|
|
|
return m_helpController->DisplaySection( section );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplayBlock(long blockNo)
|
|
|
|
{
|
|
|
|
return m_helpController->DisplayBlock( blockNo );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplayContextPopup(int contextId)
|
|
|
|
{
|
|
|
|
return m_helpController->DisplayContextPopup( contextId );
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos)
|
|
|
|
{
|
|
|
|
return m_helpController->DisplayTextPopup( text, pos );
|
|
|
|
}
|
|
|
|
|
2003-09-09 13:29:11 -04:00
|
|
|
virtual bool KeywordSearch(const wxString& k,
|
2003-09-10 03:55:34 -04:00
|
|
|
wxHelpSearchMode mode = wxHELP_SEARCH_ALL)
|
2001-09-01 08:59:08 -04:00
|
|
|
{
|
2003-09-09 13:29:11 -04:00
|
|
|
return m_helpController->KeywordSearch( k, mode );
|
2001-09-01 08:59:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool Quit()
|
|
|
|
{
|
|
|
|
return m_helpController->Quit();
|
|
|
|
}
|
|
|
|
|
2002-03-09 16:55:39 -05:00
|
|
|
// Allows one to override the default settings for the help frame.
|
2001-09-01 08:59:08 -04:00
|
|
|
virtual void SetFrameParameters(const wxString& title,
|
2002-03-09 16:55:39 -05:00
|
|
|
const wxSize& size,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
bool newFrameEachTime = FALSE)
|
2001-09-01 08:59:08 -04:00
|
|
|
{
|
|
|
|
m_helpController->SetFrameParameters( title, size, pos,
|
|
|
|
newFrameEachTime );
|
|
|
|
}
|
|
|
|
|
2002-03-09 16:55:39 -05:00
|
|
|
// Obtains the latest settings used by the help frame and the help frame.
|
2001-09-01 08:59:08 -04:00
|
|
|
virtual wxFrame *GetFrameParameters(wxSize *size = NULL,
|
2002-03-09 16:55:39 -05:00
|
|
|
wxPoint *pos = NULL,
|
|
|
|
bool *newFrameEachTime = NULL)
|
2001-09-01 08:59:08 -04:00
|
|
|
{
|
|
|
|
return m_helpController->GetFrameParameters( size, pos,
|
|
|
|
newFrameEachTime );
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Append/change extension if necessary.
|
|
|
|
wxString GetValidFilename(const wxString& file) const;
|
2002-03-09 16:55:39 -05:00
|
|
|
|
2001-09-01 08:59:08 -04:00
|
|
|
protected:
|
|
|
|
enum HelpControllerType { wxUseNone, wxUseHtmlHelp, wxUseChmHelp };
|
|
|
|
|
|
|
|
HelpControllerType m_helpControllerType;
|
|
|
|
wxHelpControllerBase* m_helpController;
|
2002-03-09 16:55:39 -05:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBestHelpController)
|
2003-01-02 18:38:11 -05:00
|
|
|
DECLARE_NO_COPY_CLASS(wxBestHelpController)
|
2001-09-01 08:59:08 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_HELP && wxUSE_MS_HTML_HELP && defined(__WIN95__) && wxUSE_WXHTML_HELP
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_HELPBEST_H_
|