aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2003-02-24 10:59:24 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-02-24 10:59:24 +0800
commitee568bb74f887c3322f0729dedb81a1abdd6c025 (patch)
treeaba309254a92c141b1c66070313b197e7cacc338 /calendar/gui/alarm-notify
parentff5e6a90aae6652a188903d589395775d79b11b4 (diff)
downloadgsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar.gz
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar.bz2
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar.lz
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar.xz
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.tar.zst
gsoc2013-evolution-ee568bb74f887c3322f0729dedb81a1abdd6c025.zip
gconf settings upgrades
svn path=/trunk/; revision=20018
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r--calendar/gui/alarm-notify/config-data.c4
-rw-r--r--calendar/gui/alarm-notify/save.c133
2 files changed, 42 insertions, 95 deletions
diff --git a/calendar/gui/alarm-notify/config-data.c b/calendar/gui/alarm-notify/config-data.c
index babb387e7a..ce179c9b92 100644
--- a/calendar/gui/alarm-notify/config-data.c
+++ b/calendar/gui/alarm-notify/config-data.c
@@ -88,7 +88,7 @@ config_data_get_timezone (void)
ensure_inited ();
location = e_config_listener_get_string_with_default (config,
- "/Calendar/Display/Timezone",
+ "/apps/evolution/calendar/display/timezone",
"UTC", NULL);
if (location && location[0]) {
local_timezone = icaltimezone_get_builtin_timezone (location);
@@ -109,7 +109,7 @@ config_data_get_24_hour_format (void)
if (locale_supports_12_hour_format ()) {
return e_config_listener_get_boolean_with_default (
config,
- "/Calendar/Display/Use24HourFormat", FALSE, NULL);
+ "/apps/evolution/calendar/display/use_24hour_format", FALSE, NULL);
}
return TRUE;
diff --git a/calendar/gui/alarm-notify/save.c b/calendar/gui/alarm-notify/save.c
index a3857cd16c..605b02c6b2 100644
--- a/calendar/gui/alarm-notify/save.c
+++ b/calendar/gui/alarm-notify/save.c
@@ -29,16 +29,15 @@
#include "evolution-calendar.h"
#include "config-data.h"
#include "save.h"
+#include <gconf/gconf-client.h>
/* Key names for the configuration values */
-#define KEY_LAST_NOTIFICATION_TIME "/Calendar/AlarmNotify/LastNotificationTime"
-#define KEY_NUM_CALENDARS_TO_LOAD "/Calendar/AlarmNotify/NumCalendarsToLoad"
-#define BASE_KEY_CALENDAR_TO_LOAD "/Calendar/AlarmNotify/CalendarToLoad"
-#define KEY_NUM_BLESSED_PROGRAMS "/Calendar/AlarmNotify/NumBlessedPrograms"
-#define BASE_KEY_BLESSED_PROGRAM "/Calendar/AlarmNotify/BlessedProgram"
+#define KEY_LAST_NOTIFICATION_TIME "/apps/evolution/calendar/notify/last_notification_time"
+#define KEY_CALENDARS "/apps/evolution/calendar/notify/calendars"
+#define KEY_PROGRAMS "/apps/evolution/calendar/notify/programs"
@@ -100,28 +99,18 @@ get_saved_notification_time (void)
void
save_calendars_to_load (GPtrArray *uris)
{
- EConfigListener *cl;
- int len, i;
+ int i;
+ GConfClient *gconf = gconf_client_get_default();
+ GSList *l = NULL;
g_return_if_fail (uris != NULL);
- if (!(cl = config_data_get_listener ()))
- return;
-
- len = uris->len;
+ for (i=0;i<uris->len;i++)
+ l = g_slist_append(l, uris->pdata[i]);
- e_config_listener_set_long (cl, KEY_NUM_CALENDARS_TO_LOAD, len);
+ gconf_client_set_list(gconf, KEY_CALENDARS, GCONF_VALUE_STRING, l, NULL);
- for (i = 0; i < len; i++) {
- const char *uri;
- char *key;
-
- uri = uris->pdata[i];
-
- key = g_strdup_printf ("%s%d", BASE_KEY_CALENDAR_TO_LOAD, i);
- e_config_listener_set_string (cl, key, uri);
- g_free (key);
- }
+ g_slist_free(l);
}
/**
@@ -135,32 +124,20 @@ save_calendars_to_load (GPtrArray *uris)
GPtrArray *
get_calendars_to_load (void)
{
- EConfigListener *cl;
+ GSList *l, *n;
GPtrArray *uris;
- int len, i;
-
- if (!(cl = config_data_get_listener ()))
- return NULL;
/* Getting the default value below is not necessarily an error, as we
* may not have saved the list of calendar yet.
*/
- len = e_config_listener_get_long_with_default (cl, KEY_NUM_CALENDARS_TO_LOAD, 0, NULL);
-
- uris = g_ptr_array_new ();
- g_ptr_array_set_size (uris, len);
-
- for (i = 0; i < len; i++) {
- char *key;
- gboolean used_default;
-
- key = g_strdup_printf ("%s%d", BASE_KEY_CALENDAR_TO_LOAD, i);
- uris->pdata[i] = e_config_listener_get_string_with_default (cl, key, "", &used_default);
- if (used_default)
- g_message ("get_calendars_to_load(): Could not read calendar name %d", i);
-
- g_free (key);
+ l = gconf_client_get_list(gconf_client_get_default(), KEY_CALENDARS, GCONF_VALUE_STRING, NULL);
+ while (l) {
+ n = l->next;
+ uris = g_ptr_array_new ();
+ g_ptr_array_add(uris, l->data);
+ g_slist_free_1(l);
+ l = n;
}
return uris;
@@ -175,25 +152,14 @@ get_calendars_to_load (void)
void
save_blessed_program (const char *program)
{
- EConfigListener *cl;
- char *key;
- int len;
-
- g_return_if_fail (program != NULL);
-
- if (!(cl = config_data_get_listener ()))
- return;
-
- /* Up the number saved */
- len = e_config_listener_get_long_with_default (cl, KEY_NUM_BLESSED_PROGRAMS, 0, NULL);
- len++;
-
- e_config_listener_set_long (cl, KEY_NUM_BLESSED_PROGRAMS, len);
-
- /* Save the program name */
- key = g_strdup_printf ("%s%d", BASE_KEY_BLESSED_PROGRAM, len - 1);
- e_config_listener_set_string (cl, key, program);
- g_free (key);
+ GConfClient *gconf = gconf_client_get_default();
+ GSList *l;
+
+ l = gconf_client_get_list(gconf, KEY_PROGRAMS, GCONF_VALUE_STRING, NULL);
+ l = g_slist_append(l, g_strdup(program));
+ gconf_client_set_list(gconf, KEY_PROGRAMS, GCONF_VALUE_STRING, l, NULL);
+ g_slist_foreach(l, (GFunc)g_free, NULL);
+ g_slist_free(l);
}
/**
@@ -207,38 +173,19 @@ save_blessed_program (const char *program)
gboolean
is_blessed_program (const char *program)
{
- EConfigListener *cl;
- int len, i;
-
- g_return_val_if_fail (program != NULL, FALSE);
-
- if (!(cl = config_data_get_listener ()))
- return FALSE;
-
- /* Getting the default value below is not necessarily an error, as we
- * may not have saved the list of calendar yet.
- */
-
- len = e_config_listener_get_long_with_default (cl, KEY_NUM_BLESSED_PROGRAMS, 0, NULL);
-
- for (i = 0; i < len; i++) {
- char *key, *value;
- gboolean used_default;
-
- key = g_strdup_printf ("%s%d", BASE_KEY_BLESSED_PROGRAM, i);
- value = e_config_listener_get_string_with_default (cl, key, "", &used_default);
- if (used_default)
- g_message ("get_calendars_to_load(): Could not read calendar name %d", i);
-
- if (value != NULL && !strcmp (value, program)) {
- g_free (key);
- g_free (value);
- return TRUE;
- }
-
- g_free (key);
- g_free (value);
+ GConfClient *gconf = gconf_client_get_default();
+ GSList *l, *n;
+ gboolean found = FALSE;
+
+ l = gconf_client_get_list(gconf, KEY_PROGRAMS, GCONF_VALUE_STRING, NULL);
+ while (l) {
+ n = l->next;
+ if (!found)
+ found = strcmp((char *)l->data, program) == 0;
+ g_free(l->data);
+ g_slist_free_1(l);
+ l = n;
}
- return FALSE;
+ return found;
}