author | cniehaus <cniehaus> | 2003-01-03 20:27:56 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-01-03 20:27:56 (UTC) |
commit | 20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d (patch) (unidiff) | |
tree | 9df094bea7a7d96b3382decc211d4ddb2aea37ad | |
parent | b261b5539e99e32b0f3e8b03c3ccba22c3b765e3 (diff) | |
download | opie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.zip opie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.tar.gz opie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.tar.bz2 |
impress tille
-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 5939000..d5c2d65 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp | |||
@@ -1,66 +1,73 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | application: : ODict | 2 | application: : ODict |
3 | 3 | ||
4 | begin : December 2002 | 4 | begin : December 2002 |
5 | copyright : ( C ) 2002, 2003 by Carsten Niehaus | 5 | copyright : ( C ) 2002, 2003 by Carsten Niehaus |
6 | email : cniehaus@handhelds.org | 6 | email : cniehaus@handhelds.org |
7 | **************************************************************************/ | 7 | **************************************************************************/ |
8 | 8 | ||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "dingwidget.h" | 17 | #include "dingwidget.h" |
18 | 18 | ||
19 | #include <qfile.h> | 19 | #include <qfile.h> |
20 | #include <qpe/config.h> | 20 | #include <qpe/config.h> |
21 | #include <qhbox.h> | 21 | #include <qhbox.h> |
22 | #include <qlabel.h> | 22 | #include <qlabel.h> |
23 | #include <qpushbutton.h> | 23 | #include <qpushbutton.h> |
24 | #include <qlineedit.h> | 24 | #include <qlineedit.h> |
25 | #include <qmainwindow.h> | 25 | #include <qmainwindow.h> |
26 | #include <qstring.h> | 26 | #include <qstring.h> |
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 | QString opie_dir = getenv("OPIEDIR"); | 35 | QString opie_dir = getenv("OPIEDIR"); |
36 | QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); | 36 | QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); |
37 | QStringList lines; | 37 | QStringList lines; |
38 | 38 | ||
39 | if( file.open( IO_ReadOnly ) ) | 39 | if( file.open( IO_ReadOnly ) ) |
40 | { | 40 | { |
41 | QTextStream stream( &file ); | 41 | QTextStream stream( &file ); |
42 | while ( !stream.eof() ) | 42 | while ( !stream.eof() ) |
43 | { | 43 | { |
44 | lines.append( stream.readLine() ); | 44 | lines.append( stream.readLine() ); |
45 | } | 45 | } |
46 | file.close(); | 46 | file.close(); |
47 | } | 47 | } |
48 | 48 | ||
49 | lines = lines.grep( word ); | 49 | lines = lines.grep( word ); |
50 | 50 | ||
51 | //X for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) | ||
52 | //X { | ||
53 | //X qDebug( *it ); | ||
54 | //X } | ||
55 | QString top, bottom; | 51 | QString top, bottom; |
56 | 52 | ||
57 | parseInfo( lines, top , bottom ); | 53 | parseInfo( lines, top , bottom ); |
58 | browser_top->setText( top ); | 54 | browser_top->setText( top ); |
59 | browser_bottom->setText( bottom ); | 55 | browser_bottom->setText( bottom ); |
60 | } | 56 | } |
61 | 57 | ||
62 | void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) | 58 | void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) |
63 | { | 59 | { |
64 | top = "blah"; | 60 | QRegExp reg( "\\" ); |
65 | bottom = lines.join( "\n" ); | 61 | QStringList toplist, bottomlist; |
62 | for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) | ||
63 | { | ||
64 | QString current = *it; | ||
65 | toplist.append( current.left( current.find(reg) ) ); | ||
66 | bottomlist.append( current.right( current.find(reg) ) ); | ||
67 | } | ||
68 | |||
69 | |||
70 | //thats it, the lists are rendered. Lets put them in one string | ||
71 | bottom = bottomlist.join( "\n" ); | ||
72 | top = toplist.join( "\n" ); | ||
66 | } | 73 | } |