-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 23 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 77 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.h | 13 |
3 files changed, 104 insertions, 9 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 75dc735..2056457 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -28,2 +28,3 @@ | |||
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | #include <qlineedit.h> | ||
29 | 30 | ||
@@ -48,4 +49,2 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa | |||
48 | list->addColumn( tr( "Searchmethod" ) ); | 49 | list->addColumn( tr( "Searchmethod" ) ); |
49 | QListViewItem *item = new QListViewItem( list ); | ||
50 | item->setText( 0, "foofooofoofoof" ); | ||
51 | 50 | ||
@@ -77,5 +76,5 @@ void ConfigDlg::slotNewMethod() | |||
77 | { | 76 | { |
78 | //dlg.saveItem(); | 77 | dlg.saveItem(); |
79 | QListViewItem *item = new QListViewItem( list ); | 78 | QListViewItem *item = new QListViewItem( list ); |
80 | item->setText( 0 , dlg.itemName ); | 79 | item->setText( 0 , dlg.nameLE->text() ); |
81 | } | 80 | } |
@@ -84,3 +83,17 @@ void ConfigDlg::slotNewMethod() | |||
84 | 83 | ||
85 | void ConfigDlg::slotChangeMethod(){} | 84 | void ConfigDlg::slotChangeMethod() |
85 | { | ||
86 | if ( list->selectedItem() ) | ||
87 | { | ||
88 | SearchMethodDlg dlg( this, "SearchMethodDlg", true, list->selectedItem()->text( 0 ) ); | ||
89 | if ( dlg.exec() == QDialog::Accepted ) | ||
90 | { | ||
91 | dlg.saveItem(); | ||
92 | QListViewItem *item = new QListViewItem( list ); | ||
93 | item->setText( 0 , dlg.nameLE->text() ); | ||
94 | } | ||
95 | else qDebug( "SearchMethodDlg abgebrochen" ); | ||
96 | } | ||
97 | else qDebug( "kein item angewählt" ); | ||
98 | } | ||
86 | 99 | ||
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 | |||
@@ -27,8 +27,50 @@ | |||
27 | #include <qstring.h> | 27 | #include <qstring.h> |
28 | #include <qlineedit.h> | ||
28 | 29 | ||
29 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) | 30 | #include <opie/ofileselector.h> |
31 | #include <opie/ofiledialog.h> | ||
32 | |||
33 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) | ||
30 | { | 34 | { |
31 | setCaption( tr( "New Searchmethod" ) ); | 35 | if( !itemname ) |
36 | setCaption( tr( "New Searchmethod" ) ); | ||
37 | else | ||
38 | { | ||
39 | setCaption( tr( "Change Searchmethod" ) ); | ||
40 | itemName = itemname; | ||
41 | setupEntries(itemname); | ||
42 | } | ||
43 | |||
44 | QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" ); | ||
45 | QVBox *vbox = new QVBox( this ); | ||
46 | |||
47 | QHBox *hbox1 = new QHBox( vbox ); | ||
48 | QLabel *nameLabel = new QLabel( tr( "Name:" ) , hbox1 ); | ||
49 | nameLE = new QLineEdit( hbox1 ); | ||
50 | |||
51 | QLabel *dictLabel = new QLabel( tr( "Dictionary file" ), vbox ); | ||
52 | QHBox *hbox2 = new QHBox( vbox ); | ||
53 | dictFileLE = new QLineEdit( hbox2 ); | ||
54 | QPushButton *browseButton = new QPushButton( tr( "Browse" ) , hbox2 ); | ||
55 | connect( browseButton, SIGNAL( clicked() ), this, SLOT( slotBrowse() ) ); | ||
56 | |||
57 | QWidget *dummywidget = new QWidget( vbox ); | ||
58 | QLabel *lag1 = new QLabel( tr( "Language 1" ),dummywidget); | ||
59 | QLabel *devider = new QLabel( tr( "Decollator" ),dummywidget); | ||
60 | QLabel *lag2 = new QLabel( tr( "Language 2" ),dummywidget); | ||
61 | lang1 = new QLineEdit( dummywidget ); | ||
62 | lang2 = new QLineEdit( dummywidget ); | ||
63 | trenner = new QLineEdit( dummywidget ); | ||
64 | trenner->setText( "::" ); | ||
65 | |||
66 | QGridLayout *grid = new QGridLayout( dummywidget, 2,3 ); | ||
67 | grid->addWidget( lag1, 0,0 ); | ||
68 | grid->addWidget( devider, 0,1 ); | ||
69 | grid->addWidget( lag2, 0,2 ); | ||
70 | grid->addWidget( lang1, 1,0 ); | ||
71 | grid->addWidget( trenner, 1,1 ); | ||
72 | grid->addWidget( lang2, 1,2 ); | ||
73 | |||
74 | vbox_layout->addWidget( vbox ); | ||
32 | 75 | ||
33 | itemName = "foo"; | ||
34 | showMaximized(); | 76 | showMaximized(); |
@@ -36 +78,30 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal) | |||
36 | 78 | ||
79 | void SearchMethodDlg::setupEntries( QString item ) | ||
80 | { | ||
81 | Config cfg( "odict" ); | ||
82 | cfg.setGroup( itemName ); | ||
83 | trenner->setText( "foooof" ); | ||
84 | //X trenner->setText( cfg.readEntry( "Seperator" ) ); | ||
85 | //X lang1->setText( cfg.readEntry( "Lang1" ) ); | ||
86 | //X lang2->setText( cfg.readEntry( "Lang2" ) ); | ||
87 | //X nameLE->setText( itemName ); | ||
88 | //X dictFileLE->setText( cfg.readEntry( "file" ) ); | ||
89 | } | ||
90 | |||
91 | void SearchMethodDlg::slotBrowse() | ||
92 | { | ||
93 | itemName=OFileDialog::getOpenFileName( OFileSelector::EXTENDED,"/home/carsten" ); | ||
94 | dictFileLE->setText( itemName ); | ||
95 | } | ||
96 | |||
97 | void SearchMethodDlg::saveItem() | ||
98 | { | ||
99 | QString name = nameLE->text(); | ||
100 | Config cfg( "odict" ); | ||
101 | cfg.setGroup( name ); | ||
102 | cfg.writeEntry( "Name", name ); | ||
103 | cfg.writeEntry( "Seperator", trenner->text() ); | ||
104 | cfg.writeEntry( "Lang1", lang1->text() ); | ||
105 | cfg.writeEntry( "Lang2", lang2->text() ); | ||
106 | cfg.writeEntry( "file", dictFileLE->text() ); | ||
107 | } | ||
diff --git a/noncore/apps/odict/searchmethoddlg.h b/noncore/apps/odict/searchmethoddlg.h index e277cfb..d98842f 100644 --- a/noncore/apps/odict/searchmethoddlg.h +++ b/noncore/apps/odict/searchmethoddlg.h | |||
@@ -10,2 +10,3 @@ | |||
10 | class QWidget; | 10 | class QWidget; |
11 | class QLineEdit; | ||
11 | class OTabWidget; | 12 | class OTabWidget; |
@@ -24,5 +25,15 @@ class SearchMethodDlg : public QDialog | |||
24 | public: | 25 | public: |
25 | SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE ); | 26 | SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE, QString itemname=0 ); |
26 | 27 | ||
27 | QString itemName; | 28 | QString itemName; |
29 | QLineEdit *nameLE; | ||
30 | QLineEdit *lang1, *lang2, *trenner; | ||
31 | void saveItem(); | ||
32 | |||
33 | private: | ||
34 | QLineEdit *dictFileLE; | ||
35 | void setupEntries( QString ); | ||
36 | |||
37 | private slots: | ||
38 | void slotBrowse(); | ||
28 | 39 | ||