]>
Commit | Line | Data |
---|---|---|
5ca24bf4 HH |
1 | /* htmlsys.h : wxHtmlHelpSystem is an extension of the wxHtmlHelpController. |
2 | * mainly does two things: | |
3 | * - extend the interface somewhat so the programmer can dictate most of the | |
4 | * look and feel of the htmlhelp frame. | |
5 | * - make some protected functions public (adding _ to the function name) so | |
6 | * that SWIG can wrap them. | |
7 | * | |
8 | * Harm van der Heijden 32aug1999 | |
9 | */ | |
10 | #ifndef __HELPSYS_H__ | |
11 | #define __HELPSYS_H__ | |
12 | ||
0f66a9f3 | 13 | #include <wx/wx.h> |
5ca24bf4 HH |
14 | |
15 | #if ! wxUSE_HTML | |
16 | #error "wxHtml needed" | |
17 | #endif | |
18 | ||
19 | #include <wx/toolbar.h> | |
0f66a9f3 | 20 | #include <wx/listbox.h> |
5ca24bf4 HH |
21 | #include <wx/html/htmlhelp.h> |
22 | ||
23 | class wxHtmlHelpSystem : public wxHtmlHelpController | |
24 | { | |
25 | DECLARE_DYNAMIC_CLASS(wxHtmlHelpSystem) | |
26 | ||
27 | public: | |
28 | wxHtmlHelpSystem() {}; | |
29 | ~wxHtmlHelpSystem() {}; | |
0f66a9f3 RD |
30 | |
31 | bool AddBookParam(const wxString& title, const wxString& contfile, | |
32 | const wxString& indexfile=wxEmptyString, const wxString& deftopic=wxEmptyString, | |
5ca24bf4 HH |
33 | const wxString& path=wxEmptyString, bool show_wait_msg=FALSE); |
34 | // Alternative to AddBook(wxString& hhpfile) | |
35 | wxToolBar* CreateToolBar(wxFrame* frame); | |
36 | // creates a dockable toolbar for the frame, containing hide/show, back and forward buttons | |
37 | wxTreeCtrl* CreateContentsTree(wxWindow* parent); | |
38 | // creates a treecontrol with imagelist for books, folders etc and id wxID_HTML_TREECTRL | |
39 | wxListBox* CreateIndexList(wxWindow* parent); | |
40 | // creates a listbox with the right id | |
41 | virtual void CreateHelpWindow(); | |
42 | // Slightly different version than in wxHtmlHelpController; uses helpers above | |
43 | // Do nothing if the window already exists | |
0f66a9f3 | 44 | void SetControls(wxFrame* frame, wxHtmlWindow* htmlwin, |
5ca24bf4 HH |
45 | wxTreeCtrl* contents=NULL, wxListBox* index=NULL, |
46 | wxListBox* searchlist=NULL); | |
47 | // alternative for CreateHelpWindow(), sets frame, htmlwindow, contents tree, index | |
48 | // listbox and searchlist listbox. If null, their functionality won't be used | |
49 | ||
50 | // Some extra accessor functions | |
51 | wxFrame* GetFrame() { return m_Frame; } | |
52 | wxHtmlWindow* GetHtmlWindow() { return m_HtmlWin; } | |
53 | wxTreeCtrl* GetContentsTree() { return m_ContentsBox; } | |
54 | wxListBox* GetIndexList() { return m_IndexBox; } | |
55 | wxListBox* GetSearchList() { return m_SearchList; } | |
56 | wxImageList* GetContentsImageList() { return m_ContentsImageList; } | |
57 | // public interface for wxHtmlHelpControllers handlers, so wxPython can call them | |
58 | void OnToolbar(wxCommandEvent& event); | |
59 | void OnContentsSel(wxTreeEvent& event) {wxHtmlHelpController::OnContentsSel(event);} | |
60 | void OnIndexSel(wxCommandEvent& event) {wxHtmlHelpController::OnIndexSel(event);} | |
61 | void OnSearchSel(wxCommandEvent& event) {wxHtmlHelpController::OnSearchSel(event);} | |
62 | void OnSearch(wxCommandEvent& event) {wxHtmlHelpController::OnSearch(event);} | |
63 | void OnCloseWindow(wxCloseEvent& event); | |
64 | ||
65 | // some more protected functions that should be accessible from wxPython | |
66 | void RefreshLists(); | |
67 | void CreateContents() { if (!m_ContentsBox) return; wxHtmlHelpController::CreateContents(); } | |
68 | // Adds items to m_Contents tree control | |
69 | void CreateIndex() { if (! m_IndexBox) return; wxHtmlHelpController::CreateIndex(); } | |
70 | // Adds items to m_IndexList | |
71 | ||
72 | DECLARE_EVENT_TABLE() | |
73 | }; | |
74 | ||
75 | #endif | |
0f66a9f3 | 76 |