author | cniehaus <cniehaus> | 2003-01-01 19:11:32 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-01-01 19:11:32 (UTC) |
commit | 2736ce30d565270495050cec2831d3f31b5c90a0 (patch) (unidiff) | |
tree | 1e9d98a7da5928b2527e42a7339022a9dd7f59ea | |
parent | 19ea383f6c848848a53adbbf4e6a32ea978b81ce (diff) | |
download | opie-2736ce30d565270495050cec2831d3f31b5c90a0.zip opie-2736ce30d565270495050cec2831d3f31b5c90a0.tar.gz opie-2736ce30d565270495050cec2831d3f31b5c90a0.tar.bz2 |
load the methods
-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 0f33ee8..33296e3 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -26,8 +26,9 @@ | |||
26 | #include <qlabel.h> | 26 | #include <qlabel.h> |
27 | #include <qlistview.h> | 27 | #include <qlistview.h> |
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | #include <qlineedit.h> | 29 | #include <qlineedit.h> |
30 | #include <qstringlist.h> | ||
30 | 31 | ||
31 | #include <opie/otabwidget.h> | 32 | #include <opie/otabwidget.h> |
32 | 33 | ||
33 | ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) | 34 | ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) |
@@ -41,14 +42,14 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa | |||
41 | settings_tab = new QWidget( tab , "settings_tab" ); | 42 | settings_tab = new QWidget( tab , "settings_tab" ); |
42 | 43 | ||
43 | /*searchmethods*/ | 44 | /*searchmethods*/ |
44 | search_tab = new QWidget( tab , "search_tab" ); | 45 | search_tab = new QWidget( tab , "search_tab" ); |
45 | loadSearchMethodNames(); | ||
46 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); | 46 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); |
47 | 47 | ||
48 | QHBox *hbox = new QHBox( search_tab ); | 48 | QHBox *hbox = new QHBox( search_tab ); |
49 | list = new QListView( hbox ); | 49 | list = new QListView( hbox ); |
50 | list->addColumn( tr( "Searchmethod" ) ); | 50 | list->addColumn( tr( "Searchmethod" ) ); |
51 | loadSearchMethodNames(); | ||
51 | 52 | ||
52 | QVBox *vbox = new QVBox( hbox ); | 53 | QVBox *vbox = new QVBox( hbox ); |
53 | new_button = new QPushButton( "New" , vbox ); | 54 | new_button = new QPushButton( "New" , vbox ); |
54 | change_button = new QPushButton( "Change" , vbox ); | 55 | change_button = new QPushButton( "Change" , vbox ); |
@@ -106,9 +107,13 @@ void ConfigDlg::slotDeleteMethod() | |||
106 | } | 107 | } |
107 | 108 | ||
108 | void ConfigDlg::loadSearchMethodNames() | 109 | void ConfigDlg::loadSearchMethodNames() |
109 | { | 110 | { |
110 | QListViewItem *item = new QListViewItem( list); | ||
111 | Config cfg( "odict" ); | 111 | Config cfg( "odict" ); |
112 | //X cfg.setGroup( itemName ); | 112 | QStringList groupListCfg = cfg.groupList().grep( "Method_" ); |
113 | //X QString temp = cfg.readEntry( "Seperator" ); | 113 | for ( QStringList::Iterator it = groupListCfg.begin() ; it != groupListCfg.end() ; ++it ) |
114 | { | ||
115 | QListViewItem *item = new QListViewItem( list ); | ||
116 | cfg.setGroup( *it ); | ||
117 | item->setText( 0 , cfg.readEntry( "Name" ) ); | ||
118 | } | ||
114 | } | 119 | } |