summaryrefslogtreecommitdiff
path: root/noncore/apps
authortille <tille>2003-01-03 23:20:17 (UTC)
committer tille <tille>2003-01-03 23:20:17 (UTC)
commit28b06247aaa55f80d91be1f8591e2cc30bac29d3 (patch) (unidiff)
treeaae7c199e4149478489dbd6d2812dd1ba1d0ee94 /noncore/apps
parentf1140315017f49805c4dafa495791e0810effb91 (diff)
downloadopie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.zip
opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.gz
opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.bz2
clean up
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index 8ad0b16..8f5a7ae 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -62,6 +62,11 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
62 QString current; 62 QString current;
63 QString left; 63 QString left;
64 QString right; 64 QString right;
65 QString html_header = "<html><table>";
66 QString html_footer = "</table></html>";
67 QString html_table_left = "<tr><td width='50'>";
68 QString html_table_sep = "</td><td>";
69 QString html_table_right = "</td></tr>";
65 QRegExp reg_div( "\\" ); 70 QRegExp reg_div( "\\" );
66 QRegExp reg_word( queryword ); 71 QRegExp reg_word( queryword );
67 //QString substitute = "<font color=red>"+queryword+"</font>"; 72 //QString substitute = "<font color=red>"+queryword+"</font>";
@@ -75,17 +80,16 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
75 if ( left.contains( reg_word ) ) 80 if ( left.contains( reg_word ) )
76 { 81 {
77 left.replace( queryword, substitute ); 82 left.replace( queryword, substitute );
78 toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" ); 83 toplist.append( html_table_left + left + html_table_sep + right + html_table_right );
79 } 84 }
80 else 85 else
81 { 86 {
82 right.replace( reg_word, substitute ); 87 right.replace( reg_word, substitute );
83 bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" ); 88 bottomlist.append( html_table_left + right + html_table_sep + left + html_table_right );
84 } 89 }
85 } 90 }
86 91
87 //thats it, the lists are rendered. Lets put them in one string 92 //thats it, the lists are rendered. Lets put them in one string
88 93 bottom = html_header + bottomlist.join( "<br>" ) + html_footer;
89 bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>"; 94 top = html_header + toplist.join( "<br>" ) + html_footer;
90 top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>";
91} 95}