59bd7ec4cb28706d5fa176c5a88feda19f15fa12
[livewp] / applet / src / livewp-config.c
1 /* vim: set sw=4 ts=4 et: */
2 /*
3  * This file is part of Live Wallpaper (livewp)
4  *
5  * Copyright (C) 2010 Vlad Vasiliev
6  * Copyright (C) 2010 Tanya Makova
7  *       for the code
8  *
9  * This software is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2 of
12  * the License, or (at your option) any later version.
13  *
14  * This software is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this software; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23 */
24 /*******************************************************************************/
25 #include "livewp-config.h"
26 /*******************************************************************************/
27 gint
28 current_active_view(void){
29     GConfClient *gconf_client = NULL;
30     gint result = -1;
31
32     gconf_client = gconf_client_get_default();
33     if (!gconf_client) {
34         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
35         return result;
36     }
37     result = gconf_client_get_int(gconf_client, "/apps/osso/hildon-desktop/views/current", NULL);
38
39     return result;
40 }
41
42 /*******************************************************************************/
43 #ifdef APPLICATION
44 void
45 fill_priv(Animation_WallpaperPrivate *priv)
46 {
47     /* Reset data */
48     priv->hash_theme = NULL;
49     /* Load config */
50     read_config(priv);
51     /* Set function */
52     if (!strcmp(priv->theme, "Accel"))
53         priv->scene_func = (gpointer)&init_scene_Accel;
54     if (!strcmp(priv->theme, "Berlin"))
55         priv->scene_func = (gpointer)&init_scene_Berlin;
56     if (!strcmp(priv->theme, "Modern"))
57         priv->scene_func = (gpointer)&init_scene_Modern;
58     if (!strcmp(priv->theme, "Matrix"))
59         priv->scene_func = (gpointer)&init_scene_Matrix;
60     if (!strcmp(priv->theme, "Video"))
61         priv->scene_func = (gpointer)&init_scene_Video;
62     if (!strcmp(priv->theme, "Slideshow"))
63         priv->scene_func = (gpointer)&init_scene_Slideshow;
64
65     priv->extheme_list = get_list_exthemes();
66     GSList *store = priv->extheme_list;
67     while (store){
68         if (!strcmp(priv->theme, g_hash_table_lookup(store->data, "name"))){
69             /* Default function for external themes init_scene_External */
70             if (priv->scene_func)
71                 priv->scene_func = (gpointer)&init_scene_External;
72             if (!strcmp(priv->theme, "Conky"))
73                 priv->scene_func = (gpointer)&init_scene_Conky;
74             if (!strcmp(priv->theme, "Flash"))
75                 priv->scene_func = (gpointer)&init_scene_Flash;
76             priv->hash_theme = store->data;
77             break;
78         }
79         store = g_slist_next(store);
80     }
81
82 }
83 #endif
84 /*******************************************************************************/
85 gint
86 read_config(Animation_WallpaperPrivate *priv) {
87
88     GConfClient *gconf_client = NULL;
89     gchar *tmp = NULL;
90     GConfValue *value = NULL;
91     gint id = priv->view;
92     gchar * str = NULL;
93
94     gconf_client = gconf_client_get_default();
95     if (!gconf_client) {
96         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
97         return -1;
98     }
99     /* get Theme default Modern */
100     str = g_strdup_printf("%s%i", GCONF_KEY_THEME, id);
101     tmp = gconf_client_get_string(gconf_client,
102                                   str, NULL);
103     if (str){
104         g_free(str);
105         str = NULL;
106     }
107     if (tmp){
108         priv->theme = tmp;
109     }else
110         priv->theme = g_strdup("Modern");
111     /* get Rich animation default TRUE */
112     str = g_strdup_printf("%s%i", GCONF_KEY_RANIMATION, id);
113     value = gconf_client_get(gconf_client, str, NULL);
114     if (str){
115         g_free(str);
116         str = NULL;
117     }
118     if (value) {
119         priv->rich_animation = gconf_value_get_bool(value);
120         gconf_value_free(value);
121     } else
122         priv->rich_animation = TRUE;
123     /* get theme additional bool aparametr 1 default  TRUE */
124     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_BOOL_1, id);
125     value = gconf_client_get(gconf_client, str, NULL);
126     if (str){
127         g_free(str);
128         str = NULL;
129     }
130     if (value) {
131         priv->theme_bool_parametr1 = gconf_value_get_bool(value);
132         gconf_value_free(value);
133     } else
134        priv->theme_bool_parametr1= TRUE;
135
136     /* get theme additional parameter 1  */
137     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_STRING_1 , id);
138     value = gconf_client_get(gconf_client, str, NULL);
139     if (str){
140         g_free(str);
141         str = NULL;
142     }
143     if (value) {
144         priv->theme_string_parametr1 = g_strdup(gconf_value_get_string(value));
145         gconf_value_free(value);
146     }
147     /* get parameter one theme in all view */
148     priv->one_in_all_view = get_one_in_all_views_from_config();
149     return 0;
150 }
151 /*******************************************************************************/
152 gboolean
153 get_one_in_all_views_from_config(void){
154     GConfClient *gconf_client;
155     GConfValue *value = NULL;
156     gboolean result;
157
158     gconf_client = gconf_client_get_default();
159     if (!gconf_client) {
160         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
161         return FALSE;
162     }
163     /* get parameter one theme in all view */
164     value = gconf_client_get(gconf_client, GCONF_KEY_ONE_IN_ALL_VIEW, NULL);
165     if (value) {
166         result = gconf_value_get_bool(value);
167         gconf_value_free(value);
168     } else
169         result = FALSE;
170     return result;
171 }
172 /*******************************************************************************/
173 void
174 save_one_in_all_views_to_config(gboolean one_in_all_views){
175     GConfClient *gconf_client;
176
177     gconf_client = gconf_client_get_default();
178     if (!gconf_client) {
179         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
180         return;
181     }
182
183     if (one_in_all_views)
184         gconf_client_set_bool(gconf_client,
185                               GCONF_KEY_ONE_IN_ALL_VIEW, TRUE, NULL);
186     else
187         gconf_client_set_bool(gconf_client,
188                               GCONF_KEY_ONE_IN_ALL_VIEW, FALSE, NULL);
189
190 }
191 /*******************************************************************************/
192 void
193 save_config(Animation_WallpaperPrivate *priv) {
194
195     GConfClient *gconf_client;
196     gchar * str = NULL;
197     gint id = priv->view;
198
199     gconf_client = gconf_client_get_default();
200     if (!gconf_client) {
201         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
202         return;
203     }
204
205     if (priv->theme){
206         str = g_strdup_printf("%s%i", GCONF_KEY_THEME, id);
207         gconf_client_set_string(gconf_client,
208                   str,
209                   priv->theme, NULL);
210         if (str){
211             g_free(str);
212             str = NULL;
213         }
214     }
215
216     str = g_strdup_printf("%s%i", GCONF_KEY_RANIMATION, id);
217     if (priv->rich_animation)
218         gconf_client_set_bool(gconf_client,
219                               str, TRUE, NULL);
220     else
221         gconf_client_set_bool(gconf_client,
222                               str, FALSE, NULL);
223     if (str){
224         g_free(str);
225         str = NULL;
226     }
227     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_BOOL_1, id);
228     if (priv->theme_bool_parametr1)
229         gconf_client_set_bool(gconf_client,
230                               str, TRUE, NULL);
231     else
232         gconf_client_set_bool(gconf_client,
233                               str, FALSE, NULL);
234     if (str){
235         g_free(str);
236         str = NULL;
237     }
238
239     str = g_strdup_printf("%s%i",GCONF_KEY_ADDITIONAL_STRING_1, id);
240     if (priv->theme_string_parametr1){
241         gconf_client_set_string(gconf_client,
242                   str,
243                   priv->theme_string_parametr1, NULL);
244     }else
245         gconf_client_unset(gconf_client, str, NULL);
246     if (str){
247             g_free(str);
248             str = NULL;
249     }
250
251 }
252 /*******************************************************************************/
253 gint
254 get_count_themes_from_config(gchar *theme_name){
255     GConfClient *gconf_client;
256     gint i, count;
257     gchar *str, *value;
258
259     gconf_client = gconf_client_get_default();
260     if (!gconf_client) {
261         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
262         return FALSE;
263     }
264     /* get count such themes */
265     count = 0;
266     for (i=1; i<=9; i++){
267         str = g_strdup_printf("%s%i", GCONF_KEY_THEME, i);
268         value = gconf_client_get_string(gconf_client, str, NULL);
269         if (str){
270             g_free(str);
271             str = NULL;
272         }
273         if (value && !strcmp(value, theme_name)){
274             count++;
275         }
276
277     }
278     //fprintf(stderr, "get count_theme from config = %d\n", count);
279     return count;
280 }
281