From 004a8ac1b25530801f68d4a041b4355ecc60c9eb Mon Sep 17 00:00:00 2001 From: cniehaus Date: Fri, 03 Jan 2003 23:21:47 +0000 Subject: update tille --- (limited to 'noncore/apps/odict/odict.cpp') diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 7de9169..2857c65 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp @@ -39,6 +39,8 @@ ODict::ODict() : QMainWindow() { + + activated_name = QString::null; vbox = new QVBox( this ); setCaption( tr( "OPIE-Dictionary" ) ); setupMenus(); @@ -47,6 +49,7 @@ ODict::ODict() : QMainWindow() 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) ) ); ok_button = new QPushButton( tr( "&Ok" ), hbox ); connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) ); browser_top = new QTextBrowser( vbox ); @@ -92,7 +95,7 @@ void ODict::slotDisplayAbout() void ODict::slotStartQuery() { QString querystring = query_le->text(); - DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom); + DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name); } @@ -136,6 +139,11 @@ void ODict::slotSetParameter( int count ) else qWarning( "ERROR" ); } +void ODict::slotMethodChanged( int methodnumber ) +{ + activated_name = query_co->currentText(); +} + void ODict::setupMenus() { menu = new QMenuBar( this ); -- cgit v0.9.0.2