81108dd564b8ce166eb594917f66577be045b106
[mstardict] / src / conf.cpp
1 /*
2  *  MStarDict - International dictionary for Maemo.
3  *  Copyright (C) 2010 Roman Moravcik
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <list>
25 #include <string>
26
27 #include <gconf/gconf.h>
28 #include <gconf/gconf-client.h>
29
30 #include "conf.hpp"
31
32 MStarDictConf::MStarDictConf()
33 {
34     /* get the default client */
35     gconf_client = gconf_client_get_default();
36 }
37
38 MStarDictConf::~MStarDictConf()
39 {
40 }
41
42 bool MStarDictConf::GetStringList(const gchar *key,
43                                   std::list < std::string > &list)
44 {
45     GConfValue *value = NULL;
46     GSList *slist = NULL;
47
48     if (!gconf_client)
49         return false;
50
51     value = gconf_client_get(gconf_client, key, NULL);
52     if (value) {
53         slist = gconf_value_get_list(value);
54
55         if (slist) {
56             GSList *entry = slist;
57
58             list.clear();
59             while (entry) {
60                 list.push_back(std::string(gconf_value_get_string((GConfValue *)entry->data)));
61                 entry = entry->next;
62             }
63         }
64         gconf_value_free(value);
65     } else {
66         return false;
67     }
68     return true;
69 }
70
71 bool MStarDictConf::SetStringList(const gchar *key,
72                                   std::list < std::string > &list)
73 {
74     GSList *slist = NULL;
75     gboolean ret = false;
76
77     if (!gconf_client)
78         return false;
79
80     for (std::list < std::string >::iterator i = list.begin(); i != list.end(); ++i) {
81         slist = g_slist_append(slist, (gpointer) i->c_str());
82     }
83
84     if (slist) {
85         ret = gconf_client_set_list(gconf_client, key, GCONF_VALUE_STRING, slist, NULL);
86         g_slist_free(slist);
87     }
88     return ret;
89 }