summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.cpp
Unidiff
Diffstat (limited to 'noncore/apps/odict/odict.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp40
1 files changed, 13 insertions, 27 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index a404e89..cc3148a 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -44,7 +44,6 @@ ODict::ODict() : QMainWindow()
44 vbox = new QVBox( this ); 44 vbox = new QVBox( this );
45 setCaption( tr( "OPIE-Dictionary" ) ); 45 setCaption( tr( "OPIE-Dictionary" ) );
46 setupMenus(); 46 setupMenus();
47
48 47
49 QHBox *hbox = new QHBox( vbox ); 48 QHBox *hbox = new QHBox( vbox );
50 QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show(); 49 QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show();
@@ -96,30 +95,17 @@ void ODict::saveConfig()
96void ODict::slotStartQuery() 95void ODict::slotStartQuery()
97{ 96{
98 QString querystring = query_le->text(); 97 QString querystring = query_le->text();
99 //X qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1()); 98 ding->setCaseSensitive( casesens );
100 //X if (querystring.isEmpty()){ 99 ding->setCompleteWord( completewords );
101 //X qWarning("empty querystring"); 100 ding->setDict( activated_name );
102 //X return; 101
103 //X } 102 if ( activated_name != ding->loadedDict() )
104 //X if (!activated_name || activated_name.isEmpty()) 103 ding->loadDict(activated_name);
105 //X QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") ); 104
106 //X else 105 BroswerContent test = ding->setText( querystring );
107 //X { 106
108 107 browser_top->setText( test.top );
109 ding->setCaseSensitive( casesens ); 108 browser_bottom->setText( test.bottom );
110 ding->setCompleteWord( completewords );
111 ding->setDict( activated_name );
112
113 if ( activated_name != ding->loadedDict() )
114 ding->loadDict(activated_name);
115
116 BroswerContent test = ding->setText( querystring );
117
118 browser_top->setText( test.top );
119 browser_bottom->setText( test.bottom );
120
121 qDebug( "Text sollte gesetzt sein..." );
122 //X }
123} 109}
124 110
125 111
@@ -176,10 +162,10 @@ void ODict::setupMenus()
176 menu = new QMenuBar( this ); 162 menu = new QMenuBar( this );
177 163
178 settings = new QPopupMenu( menu ); 164 settings = new QPopupMenu( menu );
179 setting_a = new QAction(tr( "Config" ), Resource::loadPixmap( "today/config" ), QString::null, 0, this, 0 ); 165 setting_a = new QAction(tr( "Configuration" ), Resource::loadPixmap( "new" ), QString::null, 0, this, 0 );
180 connect( setting_a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); 166 connect( setting_a, SIGNAL( activated() ), this, SLOT( slotSettings() ) );
181 setting_a->addTo( settings ); 167 setting_a->addTo( settings );
182 setting_b = new QAction(tr( "Searchmethods" ), Resource::loadPixmap( "today/config" ), QString::null, 0, this, 0 ); 168 setting_b = new QAction(tr( "Searchmethods" ), Resource::loadPixmap( "edit" ), QString::null, 0, this, 0 );
183 169
184 parameter = new QPopupMenu( menu ); 170 parameter = new QPopupMenu( menu );
185 connect( parameter, SIGNAL( activated( int ) ), this, SLOT( slotSetParameter( int ) ) ); 171 connect( parameter, SIGNAL( activated( int ) ), this, SLOT( slotSetParameter( int ) ) );