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.cpp17
1 files changed, 11 insertions, 6 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 0412807..6c03ce3 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -17,7 +17,7 @@
#include "odict.h"
#include "configdlg.h"
+#include "dingwidget.h"
-#include <opie/otabwidget.h>
-
+#include <qlayout.h>
#include <qpopupmenu.h>
#include <qmenubar.h>
@@ -25,4 +25,5 @@
#include <qpe/config.h>
#include <qhbox.h>
+#include <qvbox.h>
#include <qlabel.h>
#include <qpushbutton.h>
@@ -31,4 +32,5 @@
#include <qstring.h>
#include <qaction.h>
+#include <qtextbrowser.h>
#include <qpe/resource.h>
@@ -37,15 +39,17 @@
ODict::ODict() : QMainWindow()
{
+ vbox = new QVBox( this );
setCaption( tr( "OPIE-Dictionary" ) );
setupMenus();
- QHBox *hbox = new QHBox( this );
+ QHBox *hbox = new QHBox( vbox );
QLabel* query_label = new QLabel( tr( "Query:" ) , hbox ); query_label->show();
query_le = new QLineEdit( hbox );
ok_button = new QPushButton( tr( "&Ok" ), hbox );
connect( ok_button, SIGNAL( released() ), this, SLOT( slotStartQuery() ) );
-
- setCentralWidget( hbox );
+ browser = new QTextBrowser( vbox );
+
loadConfig();
+ setCentralWidget( vbox );
}
@@ -73,5 +77,5 @@ void ODict::saveConfig()
void ODict::slotDisplayAbout()
{
- QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 20021230" ) );
+ QMessageBox::about( this, tr( "About ODict" ), tr( "OPIE-Dictionary ODict \n (c) 2002, 2003 Carsten Niehaus \n cniehaus@handhelds.org \n Version 20030103" ) );
}
@@ -79,4 +83,5 @@ void ODict::slotStartQuery()
{
QString querystring = query_le->text();
+ DingWidget *ding = new DingWidget( vbox , querystring , browser);
}