-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index 0572f11..fcbdb8a 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp @@ -23,32 +23,24 @@ #include <qhbox.h> #include <qvbox.h> #include <qlabel.h> #include <qpushbutton.h> #include <qstring.h> #include <qlineedit.h> #include <opie/ofileselector.h> #include <opie/ofiledialog.h> SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) { - 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 ); @@ -65,36 +57,44 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, 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 ); showMaximized(); + + if( !itemname ) + setCaption( tr( "New Searchmethod" ) ); + else + { + setCaption( tr( "Change Searchmethod" ) ); + itemName = itemname; + setupEntries(itemname); + } } 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" ) ); + trenner->setText( cfg.readEntry( "Seperator" ) ); + lang1->setText( cfg.readEntry( "Lang1" ) ); + lang2->setText( cfg.readEntry( "Lang2" ) ); + nameLE->setText( itemName ); + 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" ); |