X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dabbc6a5a1795d169f26ce95927f3e4f1a5e7b7e..1e255b00ced5114d9b599cd66cd9d737686cec94:/include/wx/html/helpfrm.h diff --git a/include/wx/html/helpfrm.h b/include/wx/html/helpfrm.h index 6429c3147a..255739841b 100644 --- a/include/wx/html/helpfrm.h +++ b/include/wx/html/helpfrm.h @@ -70,6 +70,8 @@ struct wxHtmlHelpFrameCfg bool navig_on; }; +struct wxHtmlHelpMergedIndexItem; +class wxHtmlHelpMergedIndex; class WXDLLIMPEXP_CORE wxHelpControllerBase; @@ -155,6 +157,10 @@ protected: // Add books to search choice panel void CreateSearch(); + // Updates "merged index" structure that combines indexes of all books + // into better searchable structure + void UpdateMergedIndex(); + // Add custom buttons to toolbar virtual void AddToolbarButtons(wxToolBar *toolBar, int style); @@ -234,6 +240,10 @@ protected: int m_hfStyle; +private: + void DisplayIndexItem(const wxHtmlHelpMergedIndexItem *it); + wxHtmlHelpMergedIndex *m_mergedIndex; + DECLARE_EVENT_TABLE() DECLARE_NO_COPY_CLASS(wxHtmlHelpFrame) };