author | cniehaus <cniehaus> | 2002-12-29 17:27:46 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-29 17:27:46 (UTC) |
commit | 8f6559d4be4e0b1857c4ae5cdbf1ad8b485b638b (patch) (unidiff) | |
tree | a403e69a0778a02f326976a41de86e1ca176ecee | |
parent | f9308849c8257f3d2e4bec0d476f56f87935cdab (diff) | |
download | opie-8f6559d4be4e0b1857c4ae5cdbf1ad8b485b638b.zip opie-8f6559d4be4e0b1857c4ae5cdbf1ad8b485b638b.tar.gz opie-8f6559d4be4e0b1857c4ae5cdbf1ad8b485b638b.tar.bz2 |
probably the last commit for today
some more things working, still a lot missing
-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 9 | ||||
-rw-r--r-- | noncore/apps/odict/configdlg.h | 2 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 4 |
3 files changed, 13 insertions, 2 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 2056457..0f33ee8 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -37,16 +37,17 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa | |||
37 | tab = new OTabWidget( this, "OTabWidget_tab", OTabWidget::Global, OTabWidget::Bottom ); | 37 | tab = new OTabWidget( this, "OTabWidget_tab", OTabWidget::Global, OTabWidget::Bottom ); |
38 | vbox_layout->addWidget( tab ); | 38 | vbox_layout->addWidget( tab ); |
39 | 39 | ||
40 | /*general settings*/ | 40 | /*general settings*/ |
41 | settings_tab = new QWidget( tab , "settings_tab" ); | 41 | settings_tab = new QWidget( tab , "settings_tab" ); |
42 | 42 | ||
43 | /*searchmethods*/ | 43 | /*searchmethods*/ |
44 | search_tab = new QWidget( tab , "search_tab" ); | 44 | search_tab = new QWidget( tab , "search_tab" ); |
45 | loadSearchMethodNames(); | ||
45 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); | 46 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); |
46 | 47 | ||
47 | QHBox *hbox = new QHBox( search_tab ); | 48 | QHBox *hbox = new QHBox( search_tab ); |
48 | list = new QListView( hbox ); | 49 | list = new QListView( hbox ); |
49 | list->addColumn( tr( "Searchmethod" ) ); | 50 | list->addColumn( tr( "Searchmethod" ) ); |
50 | 51 | ||
51 | QVBox *vbox = new QVBox( hbox ); | 52 | QVBox *vbox = new QVBox( hbox ); |
52 | new_button = new QPushButton( "New" , vbox ); | 53 | new_button = new QPushButton( "New" , vbox ); |
@@ -98,8 +99,16 @@ void ConfigDlg::slotChangeMethod() | |||
98 | } | 99 | } |
99 | 100 | ||
100 | void ConfigDlg::slotDeleteMethod() | 101 | void ConfigDlg::slotDeleteMethod() |
101 | { | 102 | { |
102 | if ( list->selectedItem() ) | 103 | if ( list->selectedItem() ) |
103 | list->takeItem( list->selectedItem() ); | 104 | list->takeItem( list->selectedItem() ); |
104 | else qDebug("no item selected"); | 105 | else qDebug("no item selected"); |
105 | } | 106 | } |
107 | |||
108 | void ConfigDlg::loadSearchMethodNames() | ||
109 | { | ||
110 | QListViewItem *item = new QListViewItem( list); | ||
111 | Config cfg( "odict" ); | ||
112 | //X cfg.setGroup( itemName ); | ||
113 | //X QString temp = cfg.readEntry( "Seperator" ); | ||
114 | } | ||
diff --git a/noncore/apps/odict/configdlg.h b/noncore/apps/odict/configdlg.h index e59b875..2b7d0a1 100644 --- a/noncore/apps/odict/configdlg.h +++ b/noncore/apps/odict/configdlg.h | |||
@@ -25,13 +25,15 @@ class ConfigDlg : public QDialog | |||
25 | void writeEntries(); | 25 | void writeEntries(); |
26 | 26 | ||
27 | private: | 27 | private: |
28 | OTabWidget *tab; | 28 | OTabWidget *tab; |
29 | QWidget *settings_tab, *search_tab; | 29 | QWidget *settings_tab, *search_tab; |
30 | QListView *list; | 30 | QListView *list; |
31 | QPushButton *new_button, *change_button, *delete_button; | 31 | QPushButton *new_button, *change_button, *delete_button; |
32 | 32 | ||
33 | void loadSearchMethodNames(); | ||
34 | |||
33 | private slots: | 35 | private slots: |
34 | void slotNewMethod(); | 36 | void slotNewMethod(); |
35 | void slotChangeMethod(); | 37 | void slotChangeMethod(); |
36 | void slotDeleteMethod(); | 38 | void slotDeleteMethod(); |
37 | }; | 39 | }; |
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index fcbdb8a..203c663 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp | |||
@@ -75,17 +75,17 @@ SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, | |||
75 | itemName = itemname; | 75 | itemName = itemname; |
76 | setupEntries(itemname); | 76 | setupEntries(itemname); |
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | void SearchMethodDlg::setupEntries( QString item ) | 80 | void SearchMethodDlg::setupEntries( QString item ) |
81 | { | 81 | { |
82 | Config cfg( "odict" ); | 82 | Config cfg( "odict" ); |
83 | cfg.setGroup( itemName ); | 83 | cfg.setGroup( "Method_"+itemName ); |
84 | trenner->setText( cfg.readEntry( "Seperator" ) ); | 84 | trenner->setText( cfg.readEntry( "Seperator" ) ); |
85 | lang1->setText( cfg.readEntry( "Lang1" ) ); | 85 | lang1->setText( cfg.readEntry( "Lang1" ) ); |
86 | lang2->setText( cfg.readEntry( "Lang2" ) ); | 86 | lang2->setText( cfg.readEntry( "Lang2" ) ); |
87 | nameLE->setText( itemName ); | 87 | nameLE->setText( itemName ); |
88 | dictFileLE->setText( cfg.readEntry( "file" ) ); | 88 | dictFileLE->setText( cfg.readEntry( "file" ) ); |
89 | } | 89 | } |
90 | 90 | ||
91 | void SearchMethodDlg::slotBrowse() | 91 | void SearchMethodDlg::slotBrowse() |
@@ -93,15 +93,15 @@ void SearchMethodDlg::slotBrowse() | |||
93 | itemName=OFileDialog::getOpenFileName( OFileSelector::EXTENDED,"/home/carsten" ); | 93 | itemName=OFileDialog::getOpenFileName( OFileSelector::EXTENDED,"/home/carsten" ); |
94 | dictFileLE->setText( itemName ); | 94 | dictFileLE->setText( itemName ); |
95 | } | 95 | } |
96 | 96 | ||
97 | void SearchMethodDlg::saveItem() | 97 | void SearchMethodDlg::saveItem() |
98 | { | 98 | { |
99 | QString name = nameLE->text(); | 99 | QString name = nameLE->text(); |
100 | Config cfg( "odict" ); | 100 | Config cfg( "odict" ); |
101 | cfg.setGroup( name ); | 101 | cfg.setGroup( "Method_"+name ); |
102 | cfg.writeEntry( "Name", name ); | 102 | cfg.writeEntry( "Name", name ); |
103 | cfg.writeEntry( "Seperator", trenner->text() ); | 103 | cfg.writeEntry( "Seperator", trenner->text() ); |
104 | cfg.writeEntry( "Lang1", lang1->text() ); | 104 | cfg.writeEntry( "Lang1", lang1->text() ); |
105 | cfg.writeEntry( "Lang2", lang2->text() ); | 105 | cfg.writeEntry( "Lang2", lang2->text() ); |
106 | cfg.writeEntry( "file", dictFileLE->text() ); | 106 | cfg.writeEntry( "file", dictFileLE->text() ); |
107 | } | 107 | } |