-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 61ddbbf..8ad0b16 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp @@ -55,36 +55,37 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, browser_top->setText( top ); browser_bottom->setText( bottom ); } void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) { QString current; QString left; QString right; QRegExp reg_div( "\\" ); QRegExp reg_word( queryword ); - //rot: QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; + //QString substitute = "<font color=red>"+queryword+"</font>"; QString substitute = "<a href=''>"+queryword+"</a>"; QStringList toplist, bottomlist; for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) { current = *it; left = current.left( current.find(reg_div) ); right = current.right( current.length() - current.find(reg_div) - 1 ); if ( left.contains( reg_word ) ) { left.replace( queryword, substitute ); - toplist.append( left + " -> " + right); + toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" ); } else { right.replace( reg_word, substitute ); - bottomlist.append( right + " -> " + left ); + bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" ); } } //thats it, the lists are rendered. Lets put them in one string - bottom = bottomlist.join( "<br>\n" ); - top = toplist.join( "<br>\n" ); + + bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>"; + top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>"; } |