-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 32 | ||||
-rw-r--r-- | noncore/apps/odict/dingwidget.h | 1 |
2 files changed, 21 insertions, 12 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 26c0066..de02dcc 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp | |||
@@ -27,53 +27,61 @@ | |||
27 | #include <qtextstream.h> | 27 | #include <qtextstream.h> |
28 | #include <qstringlist.h> | 28 | #include <qstringlist.h> |
29 | #include <qregexp.h> | 29 | #include <qregexp.h> |
30 | #include <qtextbrowser.h> | 30 | #include <qtextbrowser.h> |
31 | #include <stdlib.h> // for getenv | 31 | #include <stdlib.h> // for getenv |
32 | 32 | ||
33 | DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, QTextBrowser *browser_bottom) : QWidget(parent) | 33 | DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, QTextBrowser *browser_bottom) : QWidget(parent) |
34 | { | 34 | { |
35 | queryword = word; | 35 | queryword = word; |
36 | QString opie_dir = getenv("OPIEDIR"); | 36 | QString opie_dir = getenv("OPIEDIR"); |
37 | QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); | 37 | QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); |
38 | QStringList lines; | 38 | QStringList lines; |
39 | 39 | ||
40 | if( file.open( IO_ReadOnly ) ) | 40 | if( file.open( IO_ReadOnly ) ) |
41 | { | 41 | { |
42 | QTextStream stream( &file ); | 42 | QTextStream stream( &file ); |
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( word ); | 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 | ||
59 | void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) | 59 | void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) |
60 | { | 60 | { |
61 | |||
62 | QString current; | ||
63 | QString left; | ||
64 | QString right; | ||
61 | QRegExp reg_div( "\\" ); | 65 | QRegExp reg_div( "\\" ); |
62 | QRegExp reg_word( queryword ); | 66 | QRegExp reg_word( queryword ); |
63 | QString substitute = "<b>"+queryword+"</b>"; | 67 | QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; |
64 | QStringList toplist, bottomlist; | 68 | QStringList toplist, bottomlist; |
65 | for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) | 69 | for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) |
66 | { | 70 | { |
67 | QString current = *it; | 71 | current = *it; |
68 | QString temp = current.left( current.find(reg_div) ); | 72 | left = current.left( current.find(reg_div) ); |
69 | temp.replace( reg_word, substitute ); | 73 | right = current.right( current.length() - current.find(reg_div) - 1 ); |
70 | toplist.append( temp ); | 74 | if ( left.contains( reg_word ) ){ |
71 | temp = current.right( current.length() - current.find(reg_div) - 1 ); | 75 | left.replace( queryword, substitute ); |
72 | temp.replace( reg_word, substitute ); | 76 | toplist.append( left + " -> " + right); |
73 | bottomlist.append( temp ); | 77 | }else{ |
78 | right.replace( reg_word, substitute ); | ||
79 | bottomlist.append( right + " -> " + left ); | ||
80 | } | ||
81 | // .replace( reg_word, substitute ); | ||
74 | } | 82 | } |
75 | 83 | ||
76 | //thats it, the lists are rendered. Lets put them in one string | 84 | //thats it, the lists are rendered. Lets put them in one string |
77 | bottom = bottomlist.join( "\n" ); | 85 | bottom = bottomlist.join( "<br>\n" ); |
78 | top = toplist.join( "\n" ); | 86 | top = toplist.join( "<br>\n" ); |
79 | } | 87 | } |
diff --git a/noncore/apps/odict/dingwidget.h b/noncore/apps/odict/dingwidget.h index 644162f..cba1edf 100644 --- a/noncore/apps/odict/dingwidget.h +++ b/noncore/apps/odict/dingwidget.h | |||
@@ -13,15 +13,16 @@ class QString; | |||
13 | class QTextBrowser; | 13 | class QTextBrowser; |
14 | class QString; | 14 | class QString; |
15 | class QStringList; | 15 | class QStringList; |
16 | 16 | ||
17 | class DingWidget : public QWidget | 17 | class DingWidget : public QWidget |
18 | { | 18 | { |
19 | Q_OBJECT | 19 | Q_OBJECT |
20 | 20 | ||
21 | public: | 21 | public: |
22 | DingWidget(QWidget *parent = 0, QString word = 0, QTextBrowser* = 0, QTextBrowser* =0); | 22 | DingWidget(QWidget *parent = 0, QString word = 0, QTextBrowser* = 0, QTextBrowser* =0); |
23 | 23 | ||
24 | private: | 24 | private: |
25 | QString search_word; | ||
25 | void parseInfo( QStringList& , QString&, QString& ); | 26 | void parseInfo( QStringList& , QString&, QString& ); |
26 | QString queryword; | 27 | QString queryword; |
27 | }; | 28 | }; |