summaryrefslogtreecommitdiff
authortille <tille>2003-01-03 22:16:52 (UTC)
committer tille <tille>2003-01-03 22:16:52 (UTC)
commit342292813524e2721346003b0f9f70aeaa92c740 (patch) (unidiff)
tree6ee439fd798839f0e12e6173dee3d3898ed37666
parentbd02568a9a02f27b40c62ae8f56f4ce76bcb62da (diff)
downloadopie-342292813524e2721346003b0f9f70aeaa92c740.zip
opie-342292813524e2721346003b0f9f70aeaa92c740.tar.gz
opie-342292813524e2721346003b0f9f70aeaa92c740.tar.bz2
got it :-D
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp3
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,
43 while ( !stream.eof() ) 43 while ( !stream.eof() )
44 { 44 {
45 lines.append( stream.readLine() ); 45 lines.append( stream.readLine() );
46 } 46 }
47 file.close(); 47 file.close();
48 } 48 }
49 49
50 lines = lines.grep( queryword ); 50 lines = lines.grep( queryword );
51 51
52 QString top, bottom; 52 QString top, bottom;
53 53
54 parseInfo( lines, top , bottom ); 54 parseInfo( lines, top , bottom );
55 browser_top->setText( top ); 55 browser_top->setText( top );
56 browser_bottom->setText( bottom ); 56 browser_bottom->setText( bottom );
57} 57}
58 58
59void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) 59void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
60{ 60{
61 61
62 QString current; 62 QString current;
63 QString left; 63 QString left;
64 QString right; 64 QString right;
65 QRegExp reg_div( "\\" ); 65 QRegExp reg_div( "\\" );
66 QRegExp reg_word( queryword ); 66 QRegExp reg_word( queryword );
67 QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; 67 //rot:QString substitute = "<font color='#FF0000'>"+queryword+"</font>";
68 QString substitute = "<a href=''>"+queryword+"</a>";
68 QStringList toplist, bottomlist; 69 QStringList toplist, bottomlist;
69 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) 70 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it )
70 { 71 {
71 current = *it; 72 current = *it;
72 left = current.left( current.find(reg_div) ); 73 left = current.left( current.find(reg_div) );
73 right = current.right( current.length() - current.find(reg_div) - 1 ); 74 right = current.right( current.length() - current.find(reg_div) - 1 );
74 if ( left.contains( reg_word ) ){ 75 if ( left.contains( reg_word ) ){
75 left.replace( queryword, substitute ); 76 left.replace( queryword, substitute );
76 toplist.append( left + " -> " + right); 77 toplist.append( left + " -> " + right);
77 }else{ 78 }else{
78 right.replace( reg_word, substitute ); 79 right.replace( reg_word, substitute );
79 bottomlist.append( right + " -> " + left ); 80 bottomlist.append( right + " -> " + left );
80 } 81 }
81 // .replace( reg_word, substitute ); 82 // .replace( reg_word, substitute );
82 } 83 }
83 84
84 //thats it, the lists are rendered. Lets put them in one string 85 //thats it, the lists are rendered. Lets put them in one string
85 bottom = bottomlist.join( "<br>\n" ); 86 bottom = bottomlist.join( "<br>\n" );
86 top = toplist.join( "<br>\n" ); 87 top = toplist.join( "<br>\n" );
87} 88}