X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e0c6027b5a0af9050eca56774967437a66241026..1338c59a025505bc066be220fe56e898a72b3ad3:/include/wx/htmllbox.h diff --git a/include/wx/htmllbox.h b/include/wx/htmllbox.h index c3764c399d..1b77758faf 100644 --- a/include/wx/htmllbox.h +++ b/include/wx/htmllbox.h @@ -62,6 +62,10 @@ public: // destructor cleans up whatever resources we use virtual ~wxHtmlListBox(); + // refresh everything + virtual void RefreshAll(); + + protected: // this method must be implemented in the derived class and should return // the body (i.e. without ) of the HTML for the given item @@ -77,6 +81,10 @@ protected: virtual wxCoord OnMeasureItem(size_t n) const; + // event handlers + void OnSize(wxSizeEvent& event); + + // common part of all ctors void Init(); @@ -88,6 +96,9 @@ private: // HTML parser we use wxHtmlWinParser *m_htmlParser; + + + DECLARE_EVENT_TABLE() }; #endif // _WX_HTMLLBOX_H_