From: Robin Dunn Date: Thu, 7 Mar 2002 20:33:58 +0000 (+0000) Subject: Added some anchor related methods to wxHtmlWindow as suggested on the X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e5d41db01ae68fc6da1667d82a23bd842d9c037a Added some anchor related methods to wxHtmlWindow as suggested on the wxPython-users list. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/html.i b/wxPython/src/html.i index 59e6dc9c33..a79ef162ee 100644 --- a/wxPython/src/html.i +++ b/wxPython/src/html.i @@ -443,10 +443,19 @@ public: : wxHtmlWindow(parent, id, pos, size, style, name) {}; wxPyHtmlWindow() : wxHtmlWindow() {}; + bool ScrollToAnchor(const wxString& anchor) { + return wxHtmlWindow::ScrollToAnchor(anchor); + } + + bool HasAnchor(const wxString& anchor) { + const wxHtmlCell *c = m_Cell->Find(wxHTML_COND_ISANCHOR, &anchor); + return c!=NULL; + } + void OnLinkClicked(const wxHtmlLinkInfo& link); void base_OnLinkClicked(const wxHtmlLinkInfo& link); - wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type, + wxHtmlOpeningStatus OnOpeningURL(wxHtmlURLType type, const wxString& url, wxString *redirect) const; @@ -573,6 +582,9 @@ public: wxHtmlContainerCell* GetInternalRepresentation(); wxHtmlWinParser* GetParser(); + bool ScrollToAnchor(const wxString& anchor); + bool HasAnchor(const wxString& anchor); + void base_OnLinkClicked(const wxHtmlLinkInfo& link); void base_OnSetTitle(const char* title); void base_OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y);