-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index de02dcc..6e3179f 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp @@ -43,45 +43,46 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, while ( !stream.eof() ) { lines.append( stream.readLine() ); } file.close(); } lines = lines.grep( queryword ); QString top, bottom; parseInfo( lines, top , bottom ); 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 ); - QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; + //rot: QString substitute = "<font color='#FF0000'>"+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); }else{ right.replace( reg_word, substitute ); bottomlist.append( right + " -> " + left ); } // .replace( reg_word, substitute ); } //thats it, the lists are rendered. Lets put them in one string bottom = bottomlist.join( "<br>\n" ); top = toplist.join( "<br>\n" ); } |