added wxHtmlWindow::ToText

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28261 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2004-07-16 17:19:17 +00:00
parent 051aa330fe
commit 977b867e72
2 changed files with 24 additions and 7 deletions

View File

@@ -253,13 +253,18 @@ protected:
#if wxUSE_CLIPBOARD
// Convert selection to text:
wxString SelectionToText();
wxString SelectionToText() { return DoSelectionToText(m_selection); }
// Converts current page to text:
wxString ToText();
// Automatic scrolling during selection:
void StopAutoScrolling();
#endif // wxUSE_CLIPBOARD
protected:
wxString DoSelectionToText(wxHtmlSelection *sel);
// This is pointer to the first cell in parsed data. (Note: the first cell
// is usually top one = all other cells are sub-cells of this one)
wxHtmlContainerCell *m_Cell;