1999-09-12 17:45:34 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: helpctrl.h
|
|
|
|
// Purpose: wxHtmlHelpController
|
1999-09-13 05:27:36 +00:00
|
|
|
// Notes: Based on htmlhelp.cpp, implementing a monolithic
|
1999-09-12 17:45:34 +00:00
|
|
|
// HTML Help controller class, by Vaclav Slavik
|
|
|
|
// Author: Harm van der Heijden and Vaclav Slavik
|
1999-10-02 18:19:46 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-09-12 17:45:34 +00:00
|
|
|
// Copyright: (c) Harm van der Heijden and Vaclav Slavik
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_HELPCTRL_H_
|
|
|
|
#define _WX_HELPCTRL_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-10-02 18:19:46 +00:00
|
|
|
#pragma interface
|
1999-09-12 17:45:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_HTML
|
|
|
|
|
1999-10-25 20:03:39 +00:00
|
|
|
#include "wx/html/helpfrm.h"
|
2000-03-09 20:05:52 +00:00
|
|
|
#include "wx/helpbase.h"
|
1999-09-12 17:45:34 +00:00
|
|
|
|
2000-03-09 20:05:52 +00:00
|
|
|
class WXDLLEXPORT wxHtmlHelpController : public wxHelpControllerBase // wxEvtHandler
|
1999-09-12 17:45:34 +00:00
|
|
|
{
|
1999-10-27 23:26:24 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxHtmlHelpController)
|
1999-09-13 05:27:36 +00:00
|
|
|
|
1999-10-27 23:26:24 +00:00
|
|
|
public:
|
|
|
|
wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
|
|
|
|
virtual ~wxHtmlHelpController();
|
1999-09-12 17:45:34 +00:00
|
|
|
|
1999-10-27 23:26:24 +00:00
|
|
|
void SetTitleFormat(const wxString& format);
|
|
|
|
void SetTempDir(const wxString& path) { m_helpData.SetTempDir(path); }
|
|
|
|
bool AddBook(const wxString& book, bool show_wait_msg = FALSE);
|
|
|
|
bool Display(const wxString& x)
|
|
|
|
{
|
|
|
|
CreateHelpWindow(); return m_helpFrame->Display(x);
|
|
|
|
}
|
|
|
|
bool Display(int id)
|
|
|
|
{
|
|
|
|
CreateHelpWindow(); return m_helpFrame->Display(id);
|
|
|
|
}
|
|
|
|
bool DisplayContents()
|
|
|
|
{
|
|
|
|
CreateHelpWindow(); return m_helpFrame->DisplayContents();
|
|
|
|
}
|
|
|
|
bool DisplayIndex()
|
|
|
|
{
|
|
|
|
CreateHelpWindow(); return m_helpFrame->DisplayIndex();
|
|
|
|
}
|
|
|
|
bool KeywordSearch(const wxString& keyword)
|
|
|
|
{
|
2000-01-08 13:59:39 +00:00
|
|
|
CreateHelpWindow(); return m_helpFrame->KeywordSearch(keyword);
|
1999-10-27 23:26:24 +00:00
|
|
|
}
|
|
|
|
wxHtmlHelpFrame* GetFrame() { return m_helpFrame; }
|
2000-01-27 00:02:44 +00:00
|
|
|
void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
|
|
|
|
|
1999-10-27 23:26:24 +00:00
|
|
|
// Assigns config object to the Ctrl. This config is then
|
|
|
|
// used in subsequent calls to Read/WriteCustomization of both help
|
|
|
|
// Ctrl and it's wxHtmlWindow
|
|
|
|
virtual void ReadCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
|
|
|
|
virtual void WriteCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
|
2000-01-17 22:12:25 +00:00
|
|
|
|
2000-03-09 20:05:52 +00:00
|
|
|
//// Backward compatibility with wxHelpController API
|
|
|
|
|
|
|
|
virtual bool Initialize(const wxString& file, int WXUNUSED(server) ) { return Initialize(file); }
|
|
|
|
virtual bool Initialize(const wxString& file);
|
|
|
|
virtual void SetViewer(const wxString& WXUNUSED(viewer), long WXUNUSED(flags) = 0) {}
|
|
|
|
virtual bool LoadFile(const wxString& file = "");
|
|
|
|
virtual bool DisplaySection(int sectionNo);
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual bool DisplaySection(const wxString& section) { return Display(section); }
|
2000-03-09 20:05:52 +00:00
|
|
|
virtual bool DisplayBlock(long blockNo) { return DisplaySection(blockNo); }
|
2001-03-02 15:16:16 +00:00
|
|
|
virtual bool DisplayTextPopup(const wxString& text, const wxPoint& pos);
|
|
|
|
|
2000-03-09 20:05:52 +00:00
|
|
|
virtual void SetFrameParameters(const wxString& title,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
bool newFrameEachTime = FALSE);
|
|
|
|
/// Obtains the latest settings used by the help frame and the help
|
|
|
|
/// frame.
|
|
|
|
virtual wxFrame *GetFrameParameters(wxSize *size = NULL,
|
|
|
|
wxPoint *pos = NULL,
|
|
|
|
bool *newFrameEachTime = NULL);
|
2001-04-19 16:17:15 +00:00
|
|
|
|
|
|
|
// Sets the specified book or all books to have the given base path
|
|
|
|
virtual void SetBookBasePath(const wxString& basePath, int which = -1);
|
|
|
|
|
2000-03-09 20:05:52 +00:00
|
|
|
virtual bool Quit() ;
|
|
|
|
virtual void OnQuit() {};
|
|
|
|
|
|
|
|
void OnCloseFrame(wxCloseEvent& evt);
|
2000-01-17 22:12:25 +00:00
|
|
|
protected:
|
2000-01-19 01:01:08 +00:00
|
|
|
virtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData *data);
|
|
|
|
|
2000-01-17 22:12:25 +00:00
|
|
|
virtual void CreateHelpWindow();
|
2000-01-19 01:01:08 +00:00
|
|
|
virtual void DestroyHelpWindow();
|
1999-10-27 23:26:24 +00:00
|
|
|
|
2000-03-09 20:05:52 +00:00
|
|
|
wxHtmlHelpData m_helpData;
|
|
|
|
wxHtmlHelpFrame* m_helpFrame;
|
|
|
|
wxConfigBase * m_Config;
|
|
|
|
wxString m_ConfigRoot;
|
|
|
|
wxString m_titleFormat;
|
|
|
|
int m_FrameStyle;
|
|
|
|
// DECLARE_EVENT_TABLE()
|
1999-09-12 17:45:34 +00:00
|
|
|
};
|
|
|
|
|
1999-09-13 05:27:36 +00:00
|
|
|
#endif
|
1999-09-12 17:45:34 +00:00
|
|
|
|
|
|
|
#endif // _WX_HELPCTRL_H_
|