summaryrefslogtreecommitdiff
path: root/noncore/apps/odict
Unidiff
Diffstat (limited to 'noncore/apps/odict') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index 4be6e71..5c4b13b 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -36,38 +36,33 @@ DingWidget::DingWidget( )
36 trenner = QString::null; 36 trenner = QString::null;
37 lines = 0L; 37 lines = 0L;
38} 38}
39 39
40void DingWidget::loadDict( QString name ) 40void DingWidget::loadDict( QString name )
41{ 41{
42 qDebug( "MUSS ich wirklich aufgerufen werder? schreit loadDict" );
43 qDebug( "Starte mit dem loadedDict(...)" );
44 dictName = name; 42 dictName = name;
45 qDebug( "bin in loadedDict() und lade das Dict:" );
46 qDebug( dictName );
47 QString opie_dir = getenv("OPIEDIR"); 43 QString opie_dir = getenv("OPIEDIR");
48 QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); 44
49 //FIXME:this should of course be not hardcoded ;) 45 Config cfg( "odict" );
46 cfg.setGroup( "Method_" + methodname );
47 QFile file( cfg.readEntry( "file" ) );
50 48
51 if( file.open( IO_ReadOnly ) ) 49 if( file.open( IO_ReadOnly ) )
52 { 50 {
53 QTextStream stream( &file ); 51 QTextStream stream( &file );
54 while ( !stream.eof() ) 52 while ( !stream.eof() )
55 { 53 {
56 lines.append( stream.readLine() ); 54 lines.append( stream.readLine() );
57 } 55 }
58 file.close(); 56 file.close();
59 } 57 }
60 qDebug( "loadedDict(...) ist beended" );
61 loadValues(); 58 loadValues();
62} 59}
63 60
64QString DingWidget::loadedDict() 61QString DingWidget::loadedDict()
65{ 62{
66 qDebug( dictName );
67 qDebug( "^ ^ ^ ^ ^ ^ ^ war der dictName" );
68 return dictName; 63 return dictName;
69} 64}
70 65
71void DingWidget::setCaseSensitive( bool caseS ) 66void DingWidget::setCaseSensitive( bool caseS )
72{ 67{
73 isCaseSensitive = caseS; 68 isCaseSensitive = caseS;
@@ -96,14 +91,12 @@ void DingWidget::loadValues()
96 trenner = cfg.readEntry( "Seperator" ); 91 trenner = cfg.readEntry( "Seperator" );
97} 92}
98 93
99BroswerContent DingWidget::setText( QString word ) 94BroswerContent DingWidget::setText( QString word )
100{ 95{
101 queryword = word; 96 queryword = word;
102 qDebug( queryword );
103 qDebug( "^ ^ ^ ^ ^ ^ ^ war das gesuchte Word");
104 return parseInfo(); 97 return parseInfo();
105} 98}
106 99
107 100
108BroswerContent DingWidget::parseInfo() 101BroswerContent DingWidget::parseInfo()
109{ 102{