next step for rich animation config
[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 read_config(Animation_WallpaperPrivate *priv) {
29
30     GConfClient *gconf_client = NULL;
31     gchar *tmp = NULL;
32     GConfValue *value = NULL;
33
34     gconf_client = gconf_client_get_default();
35     if (!gconf_client) {
36         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
37         return -1;
38     }
39     /* get Theme default Modern */
40     tmp = gconf_client_get_string(gconf_client,
41                                   GCONF_KEY_THEME, NULL);
42     if (tmp){
43         priv->theme = tmp;
44     }else
45         priv->theme = g_strdup("Modern");
46     /* get Rich animation default TRUE */
47     value = gconf_client_get(gconf_client, GCONF_KEY_RANIMATION, NULL);
48     if (value) {
49         priv->rich_animation = gconf_value_get_bool(value);
50         gconf_value_free(value);
51     } else
52         priv->rich_animation = TRUE;
53
54     return 0;
55 }
56
57 /*******************************************************************************/
58 void
59 save_config(Animation_WallpaperPrivate *priv) {
60
61     GConfClient *gconf_client;
62     gconf_client = gconf_client_get_default();
63     if (!gconf_client) {
64         fprintf(stderr, _("Failed to initialize GConf. Quitting.\n"));
65         return;
66     }
67     /* Save Weather source name. */
68     if (priv->theme)
69         gconf_client_set_string(gconf_client,
70                   GCONF_KEY_THEME,
71                   priv->theme, NULL);
72     if (priv->rich_animation)
73         gconf_client_set_bool(gconf_client,
74                               GCONF_KEY_RANIMATION, TRUE, NULL);
75     else
76         gconf_client_set_bool(gconf_client,
77                               GCONF_KEY_RANIMATION, FALSE, NULL);
78
79 }