+
+
+wxString wxHtmlWindow::SelectionToText()
+{
+ if ( !m_selection )
+ return wxEmptyString;
+
+ const wxHtmlCell *end = m_selection->GetToCell();
+ wxString text;
+ wxHtmlTerminalCellsInterator i(m_selection->GetFromCell(), end);
+ if ( i )
+ {
+ text << i->ConvertToText(m_selection);
+ ++i;
+ }
+ const wxHtmlCell *prev = *i;
+ while ( i )
+ {
+ if ( prev->GetParent() != i->GetParent() )
+ text << _T('\n');
+ text << i->ConvertToText(*i == end ? m_selection : NULL);
+ prev = *i;
+ ++i;
+ }
+ return text;
+}
+
+void wxHtmlWindow::CopySelection(ClipboardType t)
+{
+#if wxUSE_CLIPBOARD
+ if ( m_selection )
+ {
+ wxTheClipboard->UsePrimarySelection(t == Primary);
+ wxString txt(SelectionToText());
+ if ( wxTheClipboard->Open() )
+ {
+ wxTheClipboard->SetData(new wxTextDataObject(txt));
+ wxTheClipboard->Close();
+ wxLogTrace(_T("wxhtmlselection"),
+ _("Copied to clipboard:\"%s\""), txt.c_str());
+ }
+ }
+#endif
+}