summaryrefslogtreecommitdiff
path: root/noncore/apps
Side-by-side diff
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp30
-rw-r--r--noncore/apps/odict/odict.cpp37
2 files changed, 15 insertions, 52 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index ed67abf..55a716d 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -33,15 +33,12 @@ DingWidget::DingWidget( )
void DingWidget::loadDict( QString name )
{
- qDebug( "bin in DingWidget::loadDict(). name ist:" );
- qDebug( name );
+ lines.clear(); //as we will load a new list we have to
+ //remove the old one
+ qDebug( "DingWidget::loadDict( ... )" );
- dictName = name;
Config cfg( "odict" );
- if ( !methodname ) { return; }
- cfg.setGroup( "Method_" + methodname );
+ cfg.setGroup( "Method_" + name );
QFile file( cfg.readEntry( "file" ) );
- qDebug( cfg.readEntry( "file" ) );
-
if( file.open( IO_ReadOnly ) )
{
@@ -54,5 +51,4 @@ void DingWidget::loadDict( QString name )
}
loadValues();
-
}
@@ -72,9 +68,4 @@ void DingWidget::setDict( QString dict )
}
-void DingWidget::setCompleteWord( bool cword )
-{
- isCompleteWord = cword;
-}
-
void DingWidget::setQueryWord( QString qword )
{
@@ -102,13 +93,9 @@ BroswerContent DingWidget::setText( QString word )
BroswerContent DingWidget::parseInfo()
{
- qDebug( "bin in DingWidget::parseInfo()" );
-
- if ( isCompleteWord )
- queryword = " " + queryword + " ";
QStringList search = lines.grep( queryword , isCaseSensitive );
- QString current;
- QString left;
- QString right;
+ QString current;
+ QString left;
+ QString right;
QRegExp reg_div( trenner );
QRegExp reg_word( queryword );
@@ -140,5 +127,6 @@ BroswerContent DingWidget::parseInfo()
s_strings.top = toplist.join( "<br>" );
s_strings.bottom = bottomlist.join( "<br>" );
-
+
return s_strings;
}
+
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 0745f53..c1de6ac 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -23,5 +23,4 @@
#include <qmenubar.h>
#include <qmessagebox.h>
-#include <qpe/config.h>
#include <qhbox.h>
#include <qvbox.h>
@@ -36,5 +35,5 @@
#include <qpe/resource.h>
-
+#include <qpe/config.h>
ODict::ODict() : QMainWindow()
@@ -64,5 +63,5 @@ ODict::ODict() : QMainWindow()
ding = new DingWidget();
ding->loadValues();
-
+
loadConfig();
setCentralWidget( vbox );
@@ -80,5 +79,4 @@ void ODict::loadConfig()
casesens = cfg.readEntry( "casesens" ).toInt();
regexp = cfg.readEntry( "regexp" ).toInt();
- completewords = cfg.readEntry( "completewords" ).toInt();
QString lastDict = cfg.readEntry( "lastdict" );
@@ -110,4 +108,5 @@ void ODict::loadConfig()
lookupLanguageNames( lastname );
+ ding->loadDict( lastname );
query_co->setCurrentItem( e );
@@ -130,5 +129,4 @@ void ODict::saveConfig()
cfg.writeEntry( "casesens" , casesens );
cfg.writeEntry( "regexp" , regexp );
- cfg.writeEntry( "completewords" , completewords );
cfg.writeEntry( "lastdict" , query_co->currentText() );
}
@@ -136,6 +134,4 @@ void ODict::saveConfig()
void ODict::slotStartQuery()
{
- qDebug( "bin in slotStartQuery()" );
-
QString querystring = query_le->text();
if ( !querystring.isEmpty() )
@@ -150,5 +146,5 @@ void ODict::slotStartQuery()
tr( "&Define one" ),
tr( "&Cancel" ),
- 0, // Define a dict choosen
+ 0, // Define a dict
1 ) ) // Cancel choosen
{
@@ -165,21 +161,7 @@ void ODict::slotStartQuery()
*/
ding->setCaseSensitive( casesens );
- ding->setCompleteWord( completewords );
-
- qDebug( "activated_name ist:" );
- qDebug( activated_name );
-
- ding->setDict( activated_name );
-
-//X if ( activated_name != ding->loadedDict() )
- ding->loadDict(activated_name);
BroswerContent test = ding->setText( querystring );
- qDebug( querystring );
- if ( ding->isCaseSensitive )
- qDebug( "ist CS");
- else qDebug( "kein CS" );
-
browser_top->setText( test.top );
browser_bottom->setText( test.bottom );
@@ -206,11 +188,4 @@ void ODict::slotSetParameter( int count )
if ( count == 1 )
{
- if ( completewords )
- completewords = false;
- else
- completewords = true;
- }
- if ( count == 2 )
- {
if ( regexp )
regexp = false;
@@ -227,6 +202,7 @@ void ODict::slotMethodChanged( const QString& methodnumber )
qDebug( "activated_name in slotMethodChanged() ist:" );
qDebug( activated_name );
+ qDebug( ding->loadedDict() );
-//X if ( activated_name != ding->loadedDict() )
+ if ( activated_name != ding->loadedDict() )
{
ding->loadDict(activated_name);
@@ -251,5 +227,4 @@ void ODict::setupMenus()
connect( parameter, SIGNAL( activated( int ) ), this, SLOT( slotSetParameter( int ) ) );
parameter->insertItem( tr( "C&ase sensitive" ), 0 ,0 );
- parameter->insertItem( tr( "Only &complete Words" ), 1 , 1) ;
parameter->insertItem( tr( "Allow &reg. expressions" ), 2 );
parameter->insertSeparator();