wxHtmlHelpController made compatible with other controllers
[wxWidgets.git] / include / wx / html / helpctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: helpctrl.h
3 // Purpose: wxHtmlHelpController
4 // Notes: Based on htmlhelp.cpp, implementing a monolithic
5 // HTML Help controller class, by Vaclav Slavik
6 // Author: Harm van der Heijden and Vaclav Slavik
7 // RCS-ID: $Id$
8 // Copyright: (c) Harm van der Heijden and Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_HELPCTRL_H_
13 #define _WX_HELPCTRL_H_
14
15 #include "wx/defs.h"
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #if wxUSE_HTML
22
23 #include "wx/html/helpfrm.h"
24 #include "wx/helpbase.h"
25
26 class WXDLLEXPORT wxHtmlHelpController : public wxHelpControllerBase // wxEvtHandler
27 {
28 DECLARE_DYNAMIC_CLASS(wxHtmlHelpController)
29
30 public:
31 wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE);
32 virtual ~wxHtmlHelpController();
33
34 void SetTitleFormat(const wxString& format);
35 void SetTempDir(const wxString& path) { m_helpData.SetTempDir(path); }
36 bool AddBook(const wxString& book, bool show_wait_msg = FALSE);
37 bool Display(const wxString& x)
38 {
39 CreateHelpWindow(); return m_helpFrame->Display(x);
40 }
41 bool Display(int id)
42 {
43 CreateHelpWindow(); return m_helpFrame->Display(id);
44 }
45 bool DisplayContents()
46 {
47 CreateHelpWindow(); return m_helpFrame->DisplayContents();
48 }
49 bool DisplayIndex()
50 {
51 CreateHelpWindow(); return m_helpFrame->DisplayIndex();
52 }
53 bool KeywordSearch(const wxString& keyword)
54 {
55 CreateHelpWindow(); return m_helpFrame->KeywordSearch(keyword);
56 }
57 wxHtmlHelpFrame* GetFrame() { return m_helpFrame; }
58 void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
59
60 // Assigns config object to the Ctrl. This config is then
61 // used in subsequent calls to Read/WriteCustomization of both help
62 // Ctrl and it's wxHtmlWindow
63 virtual void ReadCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
64 virtual void WriteCustomization(wxConfigBase *cfg, const wxString& path = wxEmptyString);
65
66 //// Backward compatibility with wxHelpController API
67
68 virtual bool Initialize(const wxString& file, int WXUNUSED(server) ) { return Initialize(file); }
69 virtual bool Initialize(const wxString& file);
70 virtual void SetViewer(const wxString& WXUNUSED(viewer), long WXUNUSED(flags) = 0) {}
71 virtual bool LoadFile(const wxString& file = "");
72 virtual bool DisplaySection(int sectionNo);
73 virtual bool DisplayBlock(long blockNo) { return DisplaySection(blockNo); }
74 virtual void SetFrameParameters(const wxString& title,
75 const wxSize& size,
76 const wxPoint& pos = wxDefaultPosition,
77 bool newFrameEachTime = FALSE);
78 /// Obtains the latest settings used by the help frame and the help
79 /// frame.
80 virtual wxFrame *GetFrameParameters(wxSize *size = NULL,
81 wxPoint *pos = NULL,
82 bool *newFrameEachTime = NULL);
83 virtual bool Quit() ;
84 virtual void OnQuit() {};
85
86 void OnCloseFrame(wxCloseEvent& evt);
87 protected:
88 virtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData *data);
89
90 virtual void CreateHelpWindow();
91 virtual void DestroyHelpWindow();
92
93 wxHtmlHelpData m_helpData;
94 wxHtmlHelpFrame* m_helpFrame;
95 wxConfigBase * m_Config;
96 wxString m_ConfigRoot;
97 wxString m_titleFormat;
98 int m_FrameStyle;
99 // DECLARE_EVENT_TABLE()
100 };
101
102 #endif
103
104 #endif // _WX_HELPCTRL_H_