author | drw <drw> | 2005-05-04 23:28:55 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-04 23:28:55 (UTC) |
commit | 279fc4fd1986074acbadd3a8e86fcf3968a8dd5c (patch) (unidiff) | |
tree | c2b98b5c0c342f2fe81a6ffa5f62a534087d2836 | |
parent | 11833e51efabe194db59640c2d0ccea0a33c11ce (diff) | |
download | opie-279fc4fd1986074acbadd3a8e86fcf3968a8dd5c.zip opie-279fc4fd1986074acbadd3a8e86fcf3968a8dd5c.tar.gz opie-279fc4fd1986074acbadd3a8e86fcf3968a8dd5c.tar.bz2 |
Resource -> OResource
-rw-r--r-- | noncore/apps/odict/odict.cpp | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 497de36..96ba3ae 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -1,57 +1,58 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | application: : ODict | 2 | application: : ODict |
3 | 3 | ||
4 | begin : December 2002 | 4 | begin : December 2002 |
5 | copyright : ( C ) 2002, 2003 by Carsten Niehaus | 5 | copyright : ( C ) 2002, 2003 by Carsten Niehaus |
6 | email : cniehaus@handhelds.org | 6 | email : cniehaus@handhelds.org |
7 | **************************************************************************/ | 7 | **************************************************************************/ |
8 | 8 | ||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "odict.h" | 17 | #include "odict.h" |
18 | #include "configdlg.h" | 18 | #include "configdlg.h" |
19 | #include "dingwidget.h" | 19 | #include "dingwidget.h" |
20 | 20 | ||
21 | #include <opie2/oresource.h> | ||
22 | |||
23 | #include <qpe/config.h> | ||
24 | |||
21 | #include <qmenubar.h> | 25 | #include <qmenubar.h> |
22 | #include <qmessagebox.h> | 26 | #include <qmessagebox.h> |
23 | #include <qvbox.h> | 27 | #include <qvbox.h> |
24 | #include <qlabel.h> | 28 | #include <qlabel.h> |
25 | #include <qpushbutton.h> | 29 | #include <qpushbutton.h> |
26 | #include <qlineedit.h> | 30 | #include <qlineedit.h> |
27 | #include <qaction.h> | 31 | #include <qaction.h> |
28 | #include <qtextbrowser.h> | 32 | #include <qtextbrowser.h> |
29 | #include <qcombobox.h> | 33 | #include <qcombobox.h> |
30 | 34 | ||
31 | #include <qpe/resource.h> | ||
32 | #include <qpe/config.h> | ||
33 | |||
34 | ODict::ODict(QWidget* parent, const char* name, WFlags fl ) : QMainWindow(parent, name, fl ) | 35 | ODict::ODict(QWidget* parent, const char* name, WFlags fl ) : QMainWindow(parent, name, fl ) |
35 | { | 36 | { |
36 | activated_name = QString::null; | 37 | activated_name = QString::null; |
37 | 38 | ||
38 | vbox = new QVBox( this ); | 39 | vbox = new QVBox( this ); |
39 | setCaption( tr( "Opie-Dictionary" ) ); | 40 | setCaption( tr( "Opie-Dictionary" ) ); |
40 | setupMenus(); | 41 | setupMenus(); |
41 | 42 | ||
42 | QHBox *hbox = new QHBox( vbox ); | 43 | QHBox *hbox = new QHBox( vbox ); |
43 | QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); | 44 | QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); |
44 | query_label->show(); | 45 | query_label->show(); |
45 | query_le = new QLineEdit( hbox ); | 46 | query_le = new QLineEdit( hbox ); |
46 | query_co = new QComboBox( hbox ); | 47 | query_co = new QComboBox( hbox ); |
47 | connect( query_co , SIGNAL( activated(const QString&) ), this, SLOT( slotMethodChanged(const QString&) ) ); | 48 | connect( query_co , SIGNAL( activated(const QString&) ), this, SLOT( slotMethodChanged(const QString&) ) ); |
48 | ok_button = new QPushButton( tr( "&Ok" ), hbox ); | 49 | ok_button = new QPushButton( tr( "&Ok" ), hbox ); |
49 | connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) ); | 50 | connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) ); |
50 | 51 | ||
51 | top_name = new QLabel( vbox ); | 52 | top_name = new QLabel( vbox ); |
52 | top_name->setAlignment( AlignHCenter ); | 53 | top_name->setAlignment( AlignHCenter ); |
53 | browser_top = new QTextBrowser( vbox ); | 54 | browser_top = new QTextBrowser( vbox ); |
54 | bottom_name = new QLabel( vbox ); | 55 | bottom_name = new QLabel( vbox ); |
55 | bottom_name->setAlignment( AlignHCenter ); | 56 | bottom_name->setAlignment( AlignHCenter ); |
56 | browser_bottom = new QTextBrowser( vbox ); | 57 | browser_bottom = new QTextBrowser( vbox ); |
57 | 58 | ||
@@ -181,37 +182,40 @@ void ODict::slotSetParameter( int count ) | |||
181 | } | 182 | } |
182 | 183 | ||
183 | saveConfig(); | 184 | saveConfig(); |
184 | } | 185 | } |
185 | 186 | ||
186 | void ODict::slotMethodChanged( const QString& methodnumber ) | 187 | void ODict::slotMethodChanged( const QString& methodnumber ) |
187 | { | 188 | { |
188 | activated_name = methodnumber; | 189 | activated_name = methodnumber; |
189 | 190 | ||
190 | if ( activated_name != ding->loadedDict() ) | 191 | if ( activated_name != ding->loadedDict() ) |
191 | { | 192 | { |
192 | ding->loadDict(activated_name); | 193 | ding->loadDict(activated_name); |
193 | 194 | ||
194 | lookupLanguageNames( activated_name ); | 195 | lookupLanguageNames( activated_name ); |
195 | top_name->setText( top_name_content ); | 196 | top_name->setText( top_name_content ); |
196 | bottom_name->setText( bottom_name_content ); | 197 | bottom_name->setText( bottom_name_content ); |
197 | } | 198 | } |
198 | } | 199 | } |
199 | 200 | ||
200 | void ODict::setupMenus() | 201 | void ODict::setupMenus() |
201 | { | 202 | { |
202 | menu = new QMenuBar( this ); | 203 | menu = new QMenuBar( this ); |
203 | 204 | ||
204 | settings = new QPopupMenu( menu ); | 205 | settings = new QPopupMenu( menu ); |
205 | setting_a = new QAction(tr( "Configuration" ), Resource::loadPixmap( "new" ), QString::null, 0, this, 0 ); | 206 | setting_a = new QAction( tr( "Configuration" ), |
207 | Opie::Core::OResource::loadPixmap( "SettingsIcon", Opie::Core::OResource::SmallIcon ), | ||
208 | QString::null, 0, this, 0 ); | ||
206 | connect( setting_a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); | 209 | connect( setting_a, SIGNAL( activated() ), this, SLOT( slotSettings() ) ); |
207 | setting_a->addTo( settings ); | 210 | setting_a->addTo( settings ); |
208 | setting_b = new QAction(tr( "Searchmethods" ), Resource::loadPixmap( "edit" ), QString::null, 0, this, 0 ); | 211 | setting_b = new QAction( tr( "Search methods" ), |
212 | Opie::Core::OResource::loadPixmap( "edit", Opie::Core::OResource::SmallIcon ), | ||
213 | QString::null, 0, this, 0 ); | ||
209 | 214 | ||
210 | parameter = new QPopupMenu( menu ); | 215 | parameter = new QPopupMenu( menu ); |
211 | connect( parameter, SIGNAL( activated(int) ), this, SLOT( slotSetParameter(int) ) ); | 216 | connect( parameter, SIGNAL( activated(int) ), this, SLOT( slotSetParameter(int) ) ); |
212 | parameter->insertItem( tr( "C&ase sensitive" ), 0 ,0 ); | 217 | parameter->insertItem( tr( "Case sensitive" ), 0 ,0 ); |
213 | parameter->insertSeparator(); | ||
214 | 218 | ||
215 | menu->insertItem( tr( "Settings" ) , settings ); | 219 | menu->insertItem( tr( "Settings" ) , settings ); |
216 | menu->insertItem( tr( "Parameter" ) , parameter ); | 220 | menu->insertItem( tr( "Parameter" ) , parameter ); |
217 | } | 221 | } |