summaryrefslogtreecommitdiff
path: root/noncore/apps/odict
authortille <tille>2003-01-03 23:20:17 (UTC)
committer tille <tille>2003-01-03 23:20:17 (UTC)
commit28b06247aaa55f80d91be1f8591e2cc30bac29d3 (patch) (side-by-side diff)
treeaae7c199e4149478489dbd6d2812dd1ba1d0ee94 /noncore/apps/odict
parentf1140315017f49805c4dafa495791e0810effb91 (diff)
downloadopie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.zip
opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.gz
opie-28b06247aaa55f80d91be1f8591e2cc30bac29d3.tar.bz2
clean up
Diffstat (limited to 'noncore/apps/odict') (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 )
QString current;
QString left;
QString right;
+ QString html_header = "<html><table>";
+ QString html_footer = "</table></html>";
+ QString html_table_left = "<tr><td width='50'>";
+ QString html_table_sep = "</td><td>";
+ QString html_table_right = "</td></tr>";
QRegExp reg_div( "\\" );
QRegExp reg_word( queryword );
//QString substitute = "<font color=red>"+queryword+"</font>";
@@ -75,17 +80,16 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
if ( left.contains( reg_word ) )
{
left.replace( queryword, substitute );
- toplist.append( "<tr><td>" + left + "</td><td>" + right + "</td></tr>" );
+ toplist.append( html_table_left + left + html_table_sep + right + html_table_right );
}
else
{
right.replace( reg_word, substitute );
- bottomlist.append( "<tr><td>" + right + "</td><td>" + left + "</td></tr>" );
+ bottomlist.append( html_table_left + right + html_table_sep + left + html_table_right );
}
}
//thats it, the lists are rendered. Lets put them in one string
-
- bottom = "<html><table><tbody>"+bottomlist.join( "<br>" )+"</tbody></table></html>";
- top = "<html><table><tbody>"+toplist.join( "<br>" )+"</tbody></table></html>";
+ bottom = html_header + bottomlist.join( "<br>" ) + html_footer;
+ top = html_header + toplist.join( "<br>" ) + html_footer;
}