summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/searchmethoddlg.cpp
authorcniehaus <cniehaus>2002-12-29 14:15:31 (UTC)
committer cniehaus <cniehaus>2002-12-29 14:15:31 (UTC)
commit5a0893171cf82ebad8347ab9dbc1193f9fcabda3 (patch) (side-by-side diff)
treec310a0a1d23087c3eba6d81eb07edc6437d90110 /noncore/apps/odict/searchmethoddlg.cpp
parentda7abab7d817a22b8b6680027b6162d68b28ae98 (diff)
downloadopie-5a0893171cf82ebad8347ab9dbc1193f9fcabda3.zip
opie-5a0893171cf82ebad8347ab9dbc1193f9fcabda3.tar.gz
opie-5a0893171cf82ebad8347ab9dbc1193f9fcabda3.tar.bz2
just in case my harddisk breaks ;) Still there is no real funktional code,
only GUI-work
Diffstat (limited to 'noncore/apps/odict/searchmethoddlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/searchmethoddlg.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp
new file mode 100644
index 0000000..cd8a58a
--- a/dev/null
+++ b/noncore/apps/odict/searchmethoddlg.cpp
@@ -0,0 +1,36 @@
+/***************************************************************************
+ application: : ODict
+
+ begin : December 2002
+ copyright : ( C ) 2002, 2003 by Carsten Niehaus
+ email : cniehaus@handhelds.org
+ **************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * ( at your option ) any later version. *
+ * *
+ **************************************************************************/
+#include "searchmethoddlg.h"
+
+#include <qdialog.h>
+#include <qpe/config.h>
+#include <qlayout.h>
+
+#include <qhbox.h>
+#include <qvbox.h>
+#include <qlabel.h>
+#include <qpushbutton.h>
+#include <qstring.h>
+
+SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal)
+{
+ setCaption( tr( "New Searchmethod" ) );
+
+ itemName = "foo";
+ showMaximized();
+}
+