summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/searchmethoddlg.cpp
authorcniehaus <cniehaus>2002-12-29 16:49:48 (UTC)
committer cniehaus <cniehaus>2002-12-29 16:49:48 (UTC)
commit95e2d570a5f7dd3611858a55ac7956ab7ece6f3d (patch) (side-by-side diff)
tree92c5abc77298eb69d506f2b7717d4f6a8d7e231f /noncore/apps/odict/searchmethoddlg.cpp
parent5a0893171cf82ebad8347ab9dbc1193f9fcabda3 (diff)
downloadopie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.zip
opie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.tar.gz
opie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.tar.bz2
more gui, started with the real code
Diffstat (limited to 'noncore/apps/odict/searchmethoddlg.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/searchmethoddlg.cpp77
1 files changed, 74 insertions, 3 deletions
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp
index cd8a58a..0572f11 100644
--- a/noncore/apps/odict/searchmethoddlg.cpp
+++ b/noncore/apps/odict/searchmethoddlg.cpp
@@ -25,12 +25,83 @@
#include <qlabel.h>
#include <qpushbutton.h>
#include <qstring.h>
+#include <qlineedit.h>
-SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal)
+#include <opie/ofileselector.h>
+#include <opie/ofiledialog.h>
+
+SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal)
{
- setCaption( tr( "New Searchmethod" ) );
+ if( !itemname )
+ setCaption( tr( "New Searchmethod" ) );
+ else
+ {
+ setCaption( tr( "Change Searchmethod" ) );
+ itemName = itemname;
+ setupEntries(itemname);
+ }
+
+ QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" );
+ QVBox *vbox = new QVBox( this );
+
+ QHBox *hbox1 = new QHBox( vbox );
+ QLabel *nameLabel = new QLabel( tr( "Name:" ) , hbox1 );
+ nameLE = new QLineEdit( hbox1 );
+
+ QLabel *dictLabel = new QLabel( tr( "Dictionary file" ), vbox );
+ QHBox *hbox2 = new QHBox( vbox );
+ dictFileLE = new QLineEdit( hbox2 );
+ QPushButton *browseButton = new QPushButton( tr( "Browse" ) , hbox2 );
+ connect( browseButton, SIGNAL( clicked() ), this, SLOT( slotBrowse() ) );
+
+ QWidget *dummywidget = new QWidget( vbox );
+ QLabel *lag1 = new QLabel( tr( "Language 1" ),dummywidget);
+ QLabel *devider = new QLabel( tr( "Decollator" ),dummywidget);
+ QLabel *lag2 = new QLabel( tr( "Language 2" ),dummywidget);
+ lang1 = new QLineEdit( dummywidget );
+ lang2 = new QLineEdit( dummywidget );
+ trenner = new QLineEdit( dummywidget );
+ trenner->setText( "::" );
+
+ QGridLayout *grid = new QGridLayout( dummywidget, 2,3 );
+ grid->addWidget( lag1, 0,0 );
+ grid->addWidget( devider, 0,1 );
+ grid->addWidget( lag2, 0,2 );
+ grid->addWidget( lang1, 1,0 );
+ grid->addWidget( trenner, 1,1 );
+ grid->addWidget( lang2, 1,2 );
+
+ vbox_layout->addWidget( vbox );
- itemName = "foo";
showMaximized();
}
+void SearchMethodDlg::setupEntries( QString item )
+{
+ Config cfg( "odict" );
+ cfg.setGroup( itemName );
+ trenner->setText( "foooof" );
+//X trenner->setText( cfg.readEntry( "Seperator" ) );
+//X lang1->setText( cfg.readEntry( "Lang1" ) );
+//X lang2->setText( cfg.readEntry( "Lang2" ) );
+//X nameLE->setText( itemName );
+//X dictFileLE->setText( cfg.readEntry( "file" ) );
+}
+
+void SearchMethodDlg::slotBrowse()
+{
+ itemName=OFileDialog::getOpenFileName( OFileSelector::EXTENDED,"/home/carsten" );
+ dictFileLE->setText( itemName );
+}
+
+void SearchMethodDlg::saveItem()
+{
+ QString name = nameLE->text();
+ Config cfg( "odict" );
+ cfg.setGroup( name );
+ cfg.writeEntry( "Name", name );
+ cfg.writeEntry( "Seperator", trenner->text() );
+ cfg.writeEntry( "Lang1", lang1->text() );
+ cfg.writeEntry( "Lang2", lang2->text() );
+ cfg.writeEntry( "file", dictFileLE->text() );
+}