summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/odict/odict.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp106
1 files changed, 68 insertions, 38 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index cb9c4e0..0745f53 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -50,57 +50,98 @@ ODict::ODict() : QMainWindow()
query_label->show();
query_le = new QLineEdit( hbox );
query_co = new QComboBox( hbox );
connect( query_co , SIGNAL( activated(const QString&) ), this, SLOT( slotMethodChanged(const QString&) ) );
ok_button = new QPushButton( tr( "&Ok" ), hbox );
connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) );
+
top_name = new QLabel( vbox );
+ top_name->setAlignment( AlignHCenter );
browser_top = new QTextBrowser( vbox );
bottom_name = new QLabel( vbox );
+ bottom_name->setAlignment( AlignHCenter );
browser_bottom = new QTextBrowser( vbox );
ding = new DingWidget();
ding->loadValues();
loadConfig();
setCentralWidget( vbox );
}
void ODict::loadConfig()
{
+ /*
+ * the name of the last used dictionary
+ */
+ QString lastname;
+
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();
+ QString lastDict = cfg.readEntry( "lastdict" );
+ int i = 0, e = 0;
+
QStringList groupListCfg = cfg.groupList().grep( "Method_" );
query_co->clear();
for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it )
{
+ QString name;
cfg.setGroup( *it );
- query_co->insertItem( cfg.readEntry( "Name" ) );
+ name = cfg.readEntry( "Name" );
+ query_co->insertItem( name );
+
+ /*
+ * this check is to look up what dictionary has been used the
+ * last time
+ */
+ if ( lastDict == name )
+ {
+ e = i;
+ lastname = name;
+ }
+ i++;
}
-//XXX slotMethodChanged( "1" ); //FIXME: this line should not contain a integer
+ /*
+ * now set the two names of the dictionary and the correct QComboBox-Entry
+ */
+
+ lookupLanguageNames( lastname );
+
+ query_co->setCurrentItem( e );
+ top_name->setText( top_name_content );
+ bottom_name->setText( bottom_name_content );
}
+void ODict::lookupLanguageNames( QString dictname )
+{
+ Config cfg ( "odict" );
+ cfg.setGroup( "Method_"+dictname );
+ top_name_content = cfg.readEntry( "Lang1" );
+ bottom_name_content = cfg.readEntry( "Lang2" );
+}
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 );
+ cfg.writeEntry( "lastdict" , query_co->currentText() );
}
void ODict::slotStartQuery()
{
- if ( !query_le->text( ).isEmpty() )
+ qDebug( "bin in slotStartQuery()" );
+
+ QString querystring = query_le->text();
+ if ( !querystring.isEmpty() )
{
/*
* if the user has not yet defined a dictionary
*/
if ( !query_co->currentText() )
{
@@ -108,55 +149,51 @@ void ODict::slotStartQuery()
tr( "No dictionary defined" ),
tr( "&Define one" ),
tr( "&Cancel" ),
0, // Define a dict choosen
1 ) ) // Cancel choosen
{
-
case 0:
slotSettings();
break;
case 1: // stop here
return;
}
}
/*
* ok, the user has defined a dict
*/
- QString querystring = query_le->text();
ding->setCaseSensitive( casesens );
ding->setCompleteWord( completewords );
+
+ qDebug( "activated_name ist:" );
+ qDebug( activated_name );
+
ding->setDict( activated_name );
- top_name->setText( ding->lang1_name );
- bottom_name->setText( ding->lang2_name );
- if ( activated_name != ding->loadedDict() )
+//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 );
}
}
-
-void ODict::slotSetErrorcount( int count )
-{
- errorTol = count;
-}
-
void ODict::slotSettings()
{
ConfigDlg dlg( this, "Config" , true);
if ( dlg.exec() == QDialog::Accepted )
- {
- dlg.writeEntries();
- loadConfig();
- }
+ saveConfig();
}
void ODict::slotSetParameter( int count )
{
if ( count == 0 )
{
@@ -177,26 +214,30 @@ void ODict::slotSetParameter( int count )
{
if ( regexp )
regexp = false;
else
regexp = true;
}
- else qWarning( "ERROR" );
+ saveConfig();
}
void ODict::slotMethodChanged( const QString& methodnumber )
{
activated_name = methodnumber;
- if ( activated_name != ding->loadedDict() )
- ding->loadDict(activated_name);
+ qDebug( "activated_name in slotMethodChanged() ist:" );
+ qDebug( activated_name );
- top_name->setText( ding->lang1_name );
- top_name->setAlignment( AlignHCenter );
- bottom_name->setText( ding->lang2_name );
- bottom_name->setAlignment( AlignHCenter );
+//X if ( activated_name != ding->loadedDict() )
+ {
+ ding->loadDict(activated_name);
+
+ lookupLanguageNames( activated_name );
+ top_name->setText( top_name_content );
+ bottom_name->setText( bottom_name_content );
+ }
}
void ODict::setupMenus()
{
menu = new QMenuBar( this );
@@ -209,21 +250,10 @@ void ODict::setupMenus()
parameter = new QPopupMenu( menu );
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();
- error_tol_menu = new QPopupMenu( menu );
- error_tol_menu->setCheckable( TRUE );
- connect( error_tol_menu, SIGNAL( activated( int ) ), this, SLOT( slotSetErrorcount( int ) ) );
-
- error_tol_menu->insertItem( tr( "0 Errors" ), 0 );
- error_tol_menu->insertItem( tr( "1 Errors" ), 1 );
- error_tol_menu->insertItem( tr( "2 Errors" ), 2 );
- error_tol_menu->insertItem( tr( "3 Errors" ), 3 );
- error_tol_menu->insertItem( tr( "4 Errors" ), 4 );
- error_tol_menu->insertItem( tr( "Until Hit" ), 5 );
- parameter->insertItem( tr( "&Error tolerance" ), error_tol_menu );
menu->insertItem( tr( "Settings" ) , settings );
menu->insertItem( tr( "Parameter" ) , parameter );
}