next step for optiion one theme in all views
[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 Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1 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     /* Load config */
48     read_config(priv);
49     /* Set function */
50     if (!strcmp(priv->theme, "Accel"))
51         priv->scene_func = (gpointer)&init_scene_Accel;
52     if (!strcmp(priv->theme, "Berlin"))
53         priv->scene_func = (gpointer)&init_scene_Berlin;
54     if (!strcmp(priv->theme, "Modern"))
55         priv->scene_func = (gpointer)&init_scene_Modern;
56     if (!strcmp(priv->theme, "Matrix"))
57         priv->scene_func = (gpointer)&init_scene_Matrix;
58     if (!strcmp(priv->theme, "Video"))
59         priv->scene_func = (gpointer)&init_scene_Video;
60     
61     priv->extheme_list = get_list_exthemes();
62     GSList *store = priv->extheme_list;
63     while (store){
64         if (!strcmp(priv->theme, g_hash_table_lookup(store->data, "name"))){
65             /* Default function for external themes init_scene_External */
66             if (priv->scene_func)
67                 priv->scene_func = (gpointer)&init_scene_External;
68             if (!strcmp(priv->theme, "Conky"))
69                 priv->scene_func = (gpointer)&init_scene_Conky;
70             priv->hash_theme = store->data;
71             break;
72         }
73         store = g_slist_next(store);
74     }
75
76 }
77 #endif
78 /*******************************************************************************/
79 gint 
80 read_config(Animation_WallpaperPrivate *priv) {
81
82     GConfClient *gconf_client = NULL;
83     gchar *tmp = NULL;
84     GConfValue *value = NULL;
85     gint id = priv->view;
86     gchar * str = NULL;
87
88     gconf_client = gconf_client_get_default();
89     if (!gconf_client) {
90         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
91         return -1;
92     }
93     /* get Theme default Modern */
94     str = g_strdup_printf("%s%i", GCONF_KEY_THEME, id);
95     tmp = gconf_client_get_string(gconf_client,
96                                   str, NULL);
97     if (str){ 
98         g_free(str);
99         str = NULL;
100     }    
101     if (tmp){
102         priv->theme = tmp;
103     }else
104         priv->theme = g_strdup("Modern");
105     /* get Rich animation default TRUE */
106     str = g_strdup_printf("%s%i", GCONF_KEY_RANIMATION, id);
107     value = gconf_client_get(gconf_client, str, NULL);
108     if (str){ 
109         g_free(str);
110         str = NULL;
111     } 
112     if (value) {
113         priv->rich_animation = gconf_value_get_bool(value);
114         gconf_value_free(value);
115     } else
116         priv->rich_animation = TRUE;
117     /* get theme additional bool aparametr 1 default  TRUE */
118     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_BOOL_1, id);
119     value = gconf_client_get(gconf_client, str, NULL);
120     if (str){ 
121         g_free(str);
122         str = NULL;
123     } 
124     if (value) {
125         priv->theme_bool_parametr1 = gconf_value_get_bool(value);
126         gconf_value_free(value);
127     } else
128        priv->theme_bool_parametr1= TRUE;
129
130     /* get theme additional parameter 1  */
131     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_STRING_1 , id);
132     value = gconf_client_get(gconf_client, str, NULL);
133     if (str){ 
134         g_free(str);
135         str = NULL;
136     } 
137     if (value) {
138         priv->theme_string_parametr1 = g_strdup(gconf_value_get_string(value));
139         gconf_value_free(value);
140     } 
141     /* get parameter one theme in all view */
142     value = gconf_client_get(gconf_client, GCONF_KEY_ONE_IN_ALL_VIEW, NULL);
143     if (value) {
144         priv->one_in_all_view = gconf_value_get_bool(value);
145         gconf_value_free(value);
146     } else
147        priv->one_in_all_view = FALSE;
148
149     return 0;
150 }
151
152 /*******************************************************************************/
153 void
154 save_one_in_all_views_to_config(gboolean one_in_all_views){
155     GConfClient *gconf_client;
156
157     gconf_client = gconf_client_get_default();
158     if (!gconf_client) {
159         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
160         return;
161     }
162
163     if (one_in_all_views)
164         gconf_client_set_bool(gconf_client,
165                               GCONF_KEY_ONE_IN_ALL_VIEW, TRUE, NULL);
166     else
167         gconf_client_set_bool(gconf_client,
168                               GCONF_KEY_ONE_IN_ALL_VIEW, FALSE, NULL);
169
170 }
171 /*******************************************************************************/
172 void
173 save_config(Animation_WallpaperPrivate *priv) {
174
175     GConfClient *gconf_client;
176     gchar * str = NULL;
177     gint id = priv->view;
178
179     gconf_client = gconf_client_get_default();
180     if (!gconf_client) {
181         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
182         return;
183     }
184     
185     if (priv->theme){
186         str = g_strdup_printf("%s%i", GCONF_KEY_THEME, id);
187         gconf_client_set_string(gconf_client,
188                   str,
189                   priv->theme, NULL);
190         if (str){
191             g_free(str);
192             str = NULL;
193         }
194     }
195
196     str = g_strdup_printf("%s%i", GCONF_KEY_RANIMATION, id);
197     if (priv->rich_animation)
198         gconf_client_set_bool(gconf_client,
199                               str, TRUE, NULL);
200     else
201         gconf_client_set_bool(gconf_client,
202                               str, FALSE, NULL);
203     if (str){
204         g_free(str);
205         str = NULL;
206     }
207     str = g_strdup_printf("%s%i", GCONF_KEY_ADDITIONAL_BOOL_1, id);
208     if (priv->theme_bool_parametr1)
209         gconf_client_set_bool(gconf_client,
210                               str, TRUE, NULL);
211     else
212         gconf_client_set_bool(gconf_client,
213                               str, FALSE, NULL);
214     if (str){
215         g_free(str);
216         str = NULL;
217     }
218
219     if (priv->theme_string_parametr1){
220         str = g_strdup_printf("%s%i",GCONF_KEY_ADDITIONAL_STRING_1, id);
221         gconf_client_set_string(gconf_client,
222                   str,
223                   priv->theme_string_parametr1, NULL);
224         if (str){
225             g_free(str);
226             str = NULL;
227         }
228     }
229 }