From 927d7cfa7091043841e0243e04a6cdf168bdfde8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 12 Feb 2004 01:34:37 +0000 Subject: [PATCH] Added selection methods git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25762 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/html.i | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wxPython/src/html.i b/wxPython/src/html.i index 8682499057..250a7666bb 100644 --- a/wxPython/src/html.i +++ b/wxPython/src/html.i @@ -883,7 +883,12 @@ public: //Adds input filter static void AddFilter(wxPyHtmlFilter *filter); + // Helper functions to select parts of page: + void SelectWord(const wxPoint& pos); + void SelectLine(const wxPoint& pos); + void SelectAll(); + void base_OnLinkClicked(const wxHtmlLinkInfo& link); void base_OnSetTitle(const wxString& title); void base_OnCellMouseHover(wxHtmlCell *cell, wxCoord x, wxCoord y); -- 2.45.2