author | cniehaus <cniehaus> | 2002-12-29 14:15:31 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-29 14:15:31 (UTC) |
commit | 5a0893171cf82ebad8347ab9dbc1193f9fcabda3 (patch) (side-by-side diff) | |
tree | c310a0a1d23087c3eba6d81eb07edc6437d90110 | |
parent | da7abab7d817a22b8b6680027b6162d68b28ae98 (diff) | |
download | opie-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
-rw-r--r-- | noncore/apps/odict/.cvsignore | 5 | ||||
-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 70 | ||||
-rw-r--r-- | noncore/apps/odict/configdlg.h | 20 | ||||
-rw-r--r-- | noncore/apps/odict/odict.cpp | 44 | ||||
-rw-r--r-- | noncore/apps/odict/odict.h | 1 | ||||
-rw-r--r-- | noncore/apps/odict/odict.pro | 4 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 36 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.h | 29 |
8 files changed, 182 insertions, 27 deletions
diff --git a/noncore/apps/odict/.cvsignore b/noncore/apps/odict/.cvsignore new file mode 100644 index 0000000..12d2df2 --- a/dev/null +++ b/noncore/apps/odict/.cvsignore @@ -0,0 +1,5 @@ +*~ +Makefile* +*.moc +config.in +moc_* diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 2680d7a..75dc735 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp @@ -16,11 +16,77 @@ **************************************************************************/ #include "configdlg.h" +#include "searchmethoddlg.h" #include <qdialog.h> #include <qpe/config.h> +#include <qlayout.h> -ConfigDlg::ConfigDlg(QWidget *parent, const char *name) : QDialog(parent, name) +#include <qhbox.h> +#include <qvbox.h> +#include <qlabel.h> +#include <qlistview.h> +#include <qpushbutton.h> + +#include <opie/otabwidget.h> + +ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) { - this->show(); setCaption( tr( "Options" ) ); + QVBoxLayout *vbox_layout = new QVBoxLayout( this ); + tab = new OTabWidget( this, "OTabWidget_tab", OTabWidget::Global, OTabWidget::Bottom ); + vbox_layout->addWidget( tab ); + + /*general settings*/ + settings_tab = new QWidget( tab , "settings_tab" ); + + /*searchmethods*/ + search_tab = new QWidget( tab , "search_tab" ); + QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); + + QHBox *hbox = new QHBox( search_tab ); + list = new QListView( hbox ); + list->addColumn( tr( "Searchmethod" ) ); + QListViewItem *item = new QListViewItem( list ); + item->setText( 0, "foofooofoofoof" ); + + QVBox *vbox = new QVBox( hbox ); + new_button = new QPushButton( "New" , vbox ); + change_button = new QPushButton( "Change" , vbox ); + delete_button = new QPushButton( "Delete" , vbox ); + connect( new_button, SIGNAL( clicked() ), this, SLOT( slotNewMethod() ) ); + connect( change_button, SIGNAL( clicked() ), this, SLOT( slotChangeMethod() )); + connect( delete_button, SIGNAL( clicked() ), this, SLOT( slotDeleteMethod() )); + + vbox_layout_searchtab->addWidget( hbox ); + + /*add the tabs and maximize*/ + tab->addTab( settings_tab, "pass", tr( "General Settings" ) ); + tab->addTab( search_tab, "zoom", tr( "Searchmethods" ) ); + showMaximized(); +} + +void ConfigDlg::writeEntries() +{ + qDebug( "richtig beendet" ); +} + +void ConfigDlg::slotNewMethod() +{ + SearchMethodDlg dlg( this, "SearchMethodDlg", true ); + if ( dlg.exec() == QDialog::Accepted ) + { + //dlg.saveItem(); + QListViewItem *item = new QListViewItem( list ); + item->setText( 0 , dlg.itemName ); + } + else qDebug( "SearchMethodDlg abgebrochen" ); +} + +void ConfigDlg::slotChangeMethod(){} + +void ConfigDlg::slotDeleteMethod() +{ + if ( list->selectedItem() ) + list->takeItem( list->selectedItem() ); + else qDebug("no item selected"); } diff --git a/noncore/apps/odict/configdlg.h b/noncore/apps/odict/configdlg.h index 47f66bd..e59b875 100644 --- a/noncore/apps/odict/configdlg.h +++ b/noncore/apps/odict/configdlg.h @@ -8,4 +8,9 @@ **************************************************************************/ +class QWidget; +class OTabWidget; +class QListView; +class QPushButton; + #include <qdialog.h> @@ -16,4 +21,17 @@ class ConfigDlg : public QDialog public: - ConfigDlg(QWidget *parent, const char *name); + ConfigDlg(QWidget *parent, const char *name, bool modal=FALSE ); + + void writeEntries(); + + private: + OTabWidget *tab; + QWidget *settings_tab, *search_tab; + QListView *list; + QPushButton *new_button, *change_button, *delete_button; + + private slots: + void slotNewMethod(); + void slotChangeMethod(); + void slotDeleteMethod(); }; diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 857daaa..7f369d4 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp @@ -59,4 +59,26 @@ void ODict::slotStartQuery() } + +void ODict::slotSetErrorcount( int count ) +{ + count = 1; +} + +void ODict::slotSettings() +{ + ConfigDlg dlg( this, "Config" , true); + if ( dlg.exec() == QDialog::Accepted ) + dlg.writeEntries(); + else qDebug( "abgebrochen" ); +} + +void ODict::slotSetParameter( int /*count*/ ) +{ +//X if ( int == 0 ) +//X if ( int == 1 ) +//X if ( int == 2 ) +//X else qWarning( "ERROR" ); +} + void ODict::setupMenus() { @@ -68,6 +90,4 @@ void ODict::setupMenus() setting_a->addTo( settings ); setting_b = new QAction(tr( "Searchmethods" ), Resource::loadPixmap( "today/config" ), QString::null, 0, this, 0 ); - connect( setting_b, SIGNAL( activated() ), this, SLOT( slotSearchMethods() ) ); - setting_b->addTo( settings ); parameter = new QPopupMenu( menu ); @@ -96,22 +116,2 @@ void ODict::setupMenus() menu->insertItem( tr( "Help" ) , help ); } - -void ODict::slotSetErrorcount( int count ) -{ -} - -void ODict::slotSettings() -{ - ConfigDlg *dlg = new ConfigDlg( this, "Config" ); -} - -void ODict::slotSetParameter( int count ) -{ -//X if ( int == 0 ) -//X if ( int == 1 ) -//X if ( int == 2 ) -//X else qWarning( "ERROR" ); -} - -void ODict::slotSearchMethods(){} - diff --git a/noncore/apps/odict/odict.h b/noncore/apps/odict/odict.h index 98db25e..30307c1 100644 --- a/noncore/apps/odict/odict.h +++ b/noncore/apps/odict/odict.h @@ -42,4 +42,3 @@ class ODict : public QMainWindow void slotSettings(); void slotSetParameter( int ); - void slotSearchMethods(); }; diff --git a/noncore/apps/odict/odict.pro b/noncore/apps/odict/odict.pro index 7f5f30c..6257e5f 100644 --- a/noncore/apps/odict/odict.pro +++ b/noncore/apps/odict/odict.pro @@ -2,12 +2,14 @@ TEMPLATE = app CONFIG = qt warn_on release HEADERS = odict.h \ + searchmethoddlg.h \ configdlg.h SOURCES = main.cpp \ odict.cpp \ + searchmethoddlg.cpp \ configdlg.cpp INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include -LIBS += -lqpe -lstdc++ +LIBS += -lqpe -lstdc++ -lopie TARGET = odict DESTDIR = $(OPIEDIR)/bin 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(); +} + diff --git a/noncore/apps/odict/searchmethoddlg.h b/noncore/apps/odict/searchmethoddlg.h new file mode 100644 index 0000000..e277cfb --- a/dev/null +++ b/noncore/apps/odict/searchmethoddlg.h @@ -0,0 +1,29 @@ +/*************************************************************************** + * * + * 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. * + * * + **************************************************************************/ + +class QWidget; +class OTabWidget; +class QListView; +class QPushButton; +class QLabel; +class QString; + +#include <qdialog.h> + + +class SearchMethodDlg : public QDialog +{ + Q_OBJECT + + public: + SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE ); + + QString itemName; + +}; |