author | tille <tille> | 2003-01-03 22:16:52 (UTC) |
---|---|---|
committer | tille <tille> | 2003-01-03 22:16:52 (UTC) |
commit | 342292813524e2721346003b0f9f70aeaa92c740 (patch) (side-by-side diff) | |
tree | 6ee439fd798839f0e12e6173dee3d3898ed37666 | |
parent | bd02568a9a02f27b40c62ae8f56f4ce76bcb62da (diff) | |
download | opie-342292813524e2721346003b0f9f70aeaa92c740.zip opie-342292813524e2721346003b0f9f70aeaa92c740.tar.gz opie-342292813524e2721346003b0f9f70aeaa92c740.tar.bz2 |
got it :-D
-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 3 |
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 @@ -19,69 +19,70 @@ #include <qfile.h> #include <qpe/config.h> #include <qhbox.h> #include <qlabel.h> #include <qpushbutton.h> #include <qlineedit.h> #include <qmainwindow.h> #include <qstring.h> #include <qtextstream.h> #include <qstringlist.h> #include <qregexp.h> #include <qtextbrowser.h> #include <stdlib.h> // for getenv DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, QTextBrowser *browser_bottom) : QWidget(parent) { queryword = word; QString opie_dir = getenv("OPIEDIR"); QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); QStringList lines; if( file.open( IO_ReadOnly ) ) { QTextStream stream( &file ); while ( !stream.eof() ) { lines.append( stream.readLine() ); } file.close(); } lines = lines.grep( queryword ); QString top, bottom; parseInfo( lines, top , bottom ); browser_top->setText( top ); browser_bottom->setText( bottom ); } void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) { QString current; QString left; QString right; QRegExp reg_div( "\\" ); QRegExp reg_word( queryword ); - QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; + //rot: QString substitute = "<font color='#FF0000'>"+queryword+"</font>"; + QString substitute = "<a href=''>"+queryword+"</a>"; QStringList toplist, bottomlist; for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) { current = *it; left = current.left( current.find(reg_div) ); right = current.right( current.length() - current.find(reg_div) - 1 ); if ( left.contains( reg_word ) ){ left.replace( queryword, substitute ); toplist.append( left + " -> " + right); }else{ right.replace( reg_word, substitute ); bottomlist.append( right + " -> " + left ); } // .replace( reg_word, substitute ); } //thats it, the lists are rendered. Lets put them in one string bottom = bottomlist.join( "<br>\n" ); top = toplist.join( "<br>\n" ); } |