1 /////////////////////////////////////////////////////////////////////////////
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
8 // Copyright: (c) Harm van der Heijden and Vaclav Slavik
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HELPCTRL_H_
13 #define _WX_HELPCTRL_H_
17 #if defined(__GNUG__) && !defined(__APPLE__)
18 #pragma interface "helpctrl.h"
23 #include "wx/html/helpfrm.h"
24 #include "wx/helpbase.h"
26 #define wxID_HTML_HELPFRAME (wxID_HIGHEST + 1)
28 class WXDLLEXPORT wxHtmlHelpController
: public wxHelpControllerBase
// wxEvtHandler
30 DECLARE_DYNAMIC_CLASS(wxHtmlHelpController
)
33 wxHtmlHelpController(int style
= wxHF_DEFAULT_STYLE
);
34 virtual ~wxHtmlHelpController();
36 void SetTitleFormat(const wxString
& format
);
37 void SetTempDir(const wxString
& path
) { m_helpData
.SetTempDir(path
); }
38 bool AddBook(const wxString
& book_url
, bool show_wait_msg
= FALSE
);
39 bool AddBook(const wxFileName
& book_file
, bool show_wait_msg
= FALSE
);
41 bool Display(const wxString
& x
);
43 bool DisplayContents();
45 bool KeywordSearch(const wxString
& keyword
);
47 wxHtmlHelpFrame
* GetFrame() { return m_helpFrame
; }
48 void UseConfig(wxConfigBase
*config
, const wxString
& rootpath
= wxEmptyString
);
50 // Assigns config object to the Ctrl. This config is then
51 // used in subsequent calls to Read/WriteCustomization of both help
52 // Ctrl and it's wxHtmlWindow
53 virtual void ReadCustomization(wxConfigBase
*cfg
, const wxString
& path
= wxEmptyString
);
54 virtual void WriteCustomization(wxConfigBase
*cfg
, const wxString
& path
= wxEmptyString
);
56 //// Backward compatibility with wxHelpController API
58 virtual bool Initialize(const wxString
& file
, int WXUNUSED(server
) ) { return Initialize(file
); }
59 virtual bool Initialize(const wxString
& file
);
60 virtual void SetViewer(const wxString
& WXUNUSED(viewer
), long WXUNUSED(flags
) = 0) {}
61 virtual bool LoadFile(const wxString
& file
= wxT(""));
62 virtual bool DisplaySection(int sectionNo
);
63 virtual bool DisplaySection(const wxString
& section
) { return Display(section
); }
64 virtual bool DisplayBlock(long blockNo
) { return DisplaySection(blockNo
); }
65 virtual bool DisplayTextPopup(const wxString
& text
, const wxPoint
& pos
);
67 virtual void SetFrameParameters(const wxString
& title
,
69 const wxPoint
& pos
= wxDefaultPosition
,
70 bool newFrameEachTime
= FALSE
);
71 /// Obtains the latest settings used by the help frame and the help
73 virtual wxFrame
*GetFrameParameters(wxSize
*size
= NULL
,
75 bool *newFrameEachTime
= NULL
);
77 // Get direct access to help data:
78 wxHtmlHelpData
*GetHelpData() { return &m_helpData
; }
81 virtual void OnQuit() {};
83 void OnCloseFrame(wxCloseEvent
& evt
);
85 // Make the help controller's frame 'modal' if
87 void AddGrabIfNeeded();
90 virtual wxHtmlHelpFrame
* CreateHelpFrame(wxHtmlHelpData
*data
);
92 virtual void CreateHelpWindow();
93 virtual void DestroyHelpWindow();
95 wxHtmlHelpData m_helpData
;
96 wxHtmlHelpFrame
* m_helpFrame
;
97 wxConfigBase
* m_Config
;
98 wxString m_ConfigRoot
;
99 wxString m_titleFormat
;
101 // DECLARE_EVENT_TABLE()
103 DECLARE_NO_COPY_CLASS(wxHtmlHelpController
)
106 #endif // wxUSE_WXHTML_HELP
108 #endif // _WX_HELPCTRL_H_