summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.cpp
authorcniehaus <cniehaus>2003-05-02 22:10:18 (UTC)
committer cniehaus <cniehaus>2003-05-02 22:10:18 (UTC)
commite83acc761bfe83ccd80b8ef6ab1275ee5c26e14f (patch) (side-by-side diff)
tree6211385225d342dc9062615f080d5764d7251beb /noncore/apps/odict/odict.cpp
parentadefcec2af37482266dbbd0e56b7e57f483c0540 (diff)
downloadopie-e83acc761bfe83ccd80b8ef6ab1275ee5c26e14f.zip
opie-e83acc761bfe83ccd80b8ef6ab1275ee5c26e14f.tar.gz
opie-e83acc761bfe83ccd80b8ef6ab1275ee5c26e14f.tar.bz2
265 lines diff :) mostly markupstuff. But also one bug less
Diffstat (limited to 'noncore/apps/odict/odict.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp99
1 files changed, 57 insertions, 42 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 9f9a8d9..cb9c4e0 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -46,18 +46,21 @@ ODict::ODict() : QMainWindow()
setupMenus();
QHBox *hbox = new QHBox( vbox );
- QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show();
+ QLabel* query_label = new QLabel( tr( "Query:" ) , hbox );
+ query_label->show();
query_le = new QLineEdit( hbox );
query_co = new QComboBox( hbox );
- connect( query_co , SIGNAL( activated(int) ), this, SLOT( slotMethodChanged(int) ) );
+ 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 );
browser_top = new QTextBrowser( vbox );
+ bottom_name = new QLabel( vbox );
browser_bottom = new QTextBrowser( vbox );
ding = new DingWidget();
ding->loadValues();
-
+
loadConfig();
setCentralWidget( vbox );
}
@@ -78,7 +81,7 @@ void ODict::loadConfig()
cfg.setGroup( *it );
query_co->insertItem( cfg.readEntry( "Name" ) );
}
- slotMethodChanged( 1 ); //FIXME: this line should not contain a integer
+//XXX slotMethodChanged( "1" ); //FIXME: this line should not contain a integer
}
@@ -94,42 +97,47 @@ void ODict::saveConfig()
void ODict::slotStartQuery()
{
- /*
- * if the user has not yet defined a dictionary
- */
- if ( !query_co->currentText() )
+ if ( !query_le->text( ).isEmpty() )
{
- switch ( QMessageBox::information( this, tr( "OPIE-Dictionary" ),
- 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 );
- ding->setDict( activated_name );
-
- if ( activated_name != ding->loadedDict() )
- ding->loadDict(activated_name);
-
- BroswerContent test = ding->setText( querystring );
-
- browser_top->setText( test.top );
- browser_bottom->setText( test.bottom );
+ /*
+ * if the user has not yet defined a dictionary
+ */
+ if ( !query_co->currentText() )
+ {
+ switch ( QMessageBox::information( this, tr( "OPIE-Dictionary" ),
+ 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 );
+ ding->setDict( activated_name );
+ top_name->setText( ding->lang1_name );
+ bottom_name->setText( ding->lang2_name );
+
+ if ( activated_name != ding->loadedDict() )
+ ding->loadDict(activated_name);
+
+ BroswerContent test = ding->setText( querystring );
+
+ browser_top->setText( test.top );
+ browser_bottom->setText( test.bottom );
+ }
}
@@ -146,7 +154,6 @@ void ODict::slotSettings()
dlg.writeEntries();
loadConfig();
}
- else qDebug( "abgebrochen" );
}
void ODict::slotSetParameter( int count )
@@ -176,9 +183,17 @@ void ODict::slotSetParameter( int count )
else qWarning( "ERROR" );
}
-void ODict::slotMethodChanged( int /*methodnumber*/ )
+void ODict::slotMethodChanged( const QString& methodnumber )
{
- activated_name = query_co->currentText();
+ activated_name = methodnumber;
+
+ if ( activated_name != ding->loadedDict() )
+ ding->loadDict(activated_name);
+
+ top_name->setText( ding->lang1_name );
+ top_name->setAlignment( AlignHCenter );
+ bottom_name->setText( ding->lang2_name );
+ bottom_name->setAlignment( AlignHCenter );
}
void ODict::setupMenus()