author | tille <tille> | 2003-01-03 23:05:43 (UTC) |
---|---|---|
committer | tille <tille> | 2003-01-03 23:05:43 (UTC) |
commit | f1140315017f49805c4dafa495791e0810effb91 (patch) (unidiff) | |
tree | 3319a23b52dbbf74e41c2328a18838dd5eced66d | |
parent | da1889933ccd03ef948fef7debda0b7e13f12add (diff) | |
download | opie-f1140315017f49805c4dafa495791e0810effb91.zip opie-f1140315017f49805c4dafa495791e0810effb91.tar.gz opie-f1140315017f49805c4dafa495791e0810effb91.tar.bz2 |
display fix
-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 | |||
@@ -64,7 +64,7 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) | |||
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 | //rot:QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; | 67 | //QString substitute = "<font color=red>"+queryword+"</font>"; |
68 | QString substitute = "<a href=''>"+queryword+"</a>"; | 68 | QString substitute = "<a href=''>"+queryword+"</a>"; |
69 | QStringList toplist, bottomlist; | 69 | QStringList toplist, bottomlist; |
70 | for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) | 70 | for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) |
@@ -75,16 +75,17 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) | |||
75 | if ( left.contains( reg_word ) ) | 75 | if ( left.contains( reg_word ) ) |
76 | { | 76 | { |
77 | left.replace( queryword, substitute ); | 77 | left.replace( queryword, substitute ); |
78 | toplist.append( left + " -> " + right); | 78 | toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" ); |
79 | } | 79 | } |
80 | else | 80 | else |
81 | { | 81 | { |
82 | right.replace( reg_word, substitute ); | 82 | right.replace( reg_word, substitute ); |
83 | bottomlist.append( right + " -> " + left ); | 83 | bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" ); |
84 | } | 84 | } |
85 | } | 85 | } |
86 | 86 | ||
87 | //thats it, the lists are rendered. Lets put them in one string | 87 | //thats it, the lists are rendered. Lets put them in one string |
88 | bottom = bottomlist.join( "<br>\n" ); | 88 | |
89 | top = toplist.join( "<br>\n" ); | 89 | bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>"; |
90 | top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>"; | ||
90 | } | 91 | } |