summaryrefslogtreecommitdiff
path: root/noncore/apps/odict
authorcniehaus <cniehaus>2002-12-29 19:47:28 (UTC)
committer cniehaus <cniehaus>2002-12-29 19:47:28 (UTC)
commit434257fad7fe9d5697ed17245671ce470ab15b14 (patch) (side-by-side diff)
tree999c81a34bcdd4f97f2375b4e4cc2264f433392c /noncore/apps/odict
parent28ca378c37c5e2d4d478a6ba2ea36bdd0cccb543 (diff)
downloadopie-434257fad7fe9d5697ed17245671ce470ab15b14.zip
opie-434257fad7fe9d5697ed17245671ce470ab15b14.tar.gz
opie-434257fad7fe9d5697ed17245671ce470ab15b14.tar.bz2
read in config, write config
Diffstat (limited to 'noncore/apps/odict') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp59
-rw-r--r--noncore/apps/odict/odict.h6
2 files changed, 56 insertions, 9 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 7f369d4..0412807 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -46,11 +46,33 @@ ODict::ODict() : QMainWindow()
connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) );
setCentralWidget( hbox );
+ loadConfig();
+}
+
+void ODict::loadConfig()
+{
+ Config cfg ( "odict" );
+ cfg.setGroup( "generalsettings" );
+ errorTol = cfg.readEntry( "errtol" ).toInt();
+ casesens = cfg.readEntry( "casesens" ).toInt();
+ regexp = cfg.readEntry( "regexp" ).toInt();
+ completewords = cfg.readEntry( "completewords" ).toInt();
+}
+
+
+void ODict::saveConfig()
+{
+ Config cfg ( "odict" );
+ cfg.setGroup( "generalsettings" );
+ cfg.writeEntry( "errtol" , errorTol );
+ cfg.writeEntry( "casesens" , casesens );
+ cfg.writeEntry( "regexp" , regexp );
+ cfg.writeEntry( "completewords" , completewords );
}
void ODict::slotDisplayAbout()
{
- QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 0.1" ) );
+ QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 20021230" ) );
}
void ODict::slotStartQuery()
@@ -61,7 +83,7 @@ void ODict::slotStartQuery()
void ODict::slotSetErrorcount( int count )
{
- count = 1;
+ errorTol = count;
}
void ODict::slotSettings()
@@ -72,12 +94,31 @@ void ODict::slotSettings()
else qDebug( "abgebrochen" );
}
-void ODict::slotSetParameter( int /*count*/ )
+void ODict::slotSetParameter( int count )
{
-//X if ( int == 0 )
-//X if ( int == 1 )
-//X if ( int == 2 )
-//X else qWarning( "ERROR" );
+ if ( count == 0 )
+ {
+ if ( casesens )
+ casesens = false;
+ else
+ casesens = true;
+ }
+
+ if ( count == 1 )
+ {
+ if ( completewords )
+ completewords = false;
+ else
+ completewords = true;
+ }
+ if ( count == 2 )
+ {
+ if ( regexp )
+ regexp = false;
+ else
+ regexp = true;
+ }
+ else qWarning( "ERROR" );
}
void ODict::setupMenus()
@@ -92,8 +133,8 @@ void ODict::setupMenus()
parameter = new QPopupMenu( menu );
connect( parameter, SIGNAL( activated( int ) ), this, SLOT( slotSetParameter( int ) ) );
- parameter->insertItem( tr( "C&ase sensitive" ), 0 );
- parameter->insertItem( tr( "Only &complete Words" ), 1 ) ;
+ 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();
error_tol_menu = new QPopupMenu( menu );
diff --git a/noncore/apps/odict/odict.h b/noncore/apps/odict/odict.h
index 30307c1..014e488 100644
--- a/noncore/apps/odict/odict.h
+++ b/noncore/apps/odict/odict.h
@@ -34,6 +34,12 @@ class ODict : public QMainWindow
QAction *setting_a, *setting_b;
void setupMenus();
+
+ int errorTol;
+ bool casesens, completewords, regexp;
+
+ void loadConfig();
+ void saveConfig();
private slots:
void slotDisplayAbout();