aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-09-07 19:35:44 +0800
committerMilan Crha <mcrha@redhat.com>2011-09-07 19:35:44 +0800
commite3d6dc913bd3c3be132210671338fac1547a25ac (patch)
tree5fa23ef2f3d340d49dc47247584e2499325f2764 /plugins
parentc32318a16ef88c9619e47dae08c561afee1a0b29 (diff)
downloadgsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar.gz
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar.bz2
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar.lz
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar.xz
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.tar.zst
gsoc2013-evolution-e3d6dc913bd3c3be132210671338fac1547a25ac.zip
Bug #657386 - Changing default source doesn't unmark previous one
Diffstat (limited to 'plugins')
-rw-r--r--plugins/default-source/Makefile.am1
-rw-r--r--plugins/default-source/default-source.c99
2 files changed, 89 insertions, 11 deletions
diff --git a/plugins/default-source/Makefile.am b/plugins/default-source/Makefile.am
index 8afa604ec4..f9778926bc 100644
--- a/plugins/default-source/Makefile.am
+++ b/plugins/default-source/Makefile.am
@@ -18,6 +18,7 @@ liborg_gnome_default_source_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED)
liborg_gnome_default_source_la_LIBADD = \
$(top_builddir)/e-util/libeutil.la \
+ $(top_builddir)/shell/libeshell.la \
$(EVOLUTION_CALENDAR_LIBS) \
$(EVOLUTION_ADDRESSBOOK_LIBS) \
$(GNOME_PLATFORM_LIBS)
diff --git a/plugins/default-source/default-source.c b/plugins/default-source/default-source.c
index 26cb305413..62ebd4b2a5 100644
--- a/plugins/default-source/default-source.c
+++ b/plugins/default-source/default-source.c
@@ -23,17 +23,21 @@
#include <config.h>
#endif
+#include <string.h>
#include <gtk/gtk.h>
+#include <glib/gi18n.h>
-#include <e-util/e-config.h>
-#include <e-util/e-plugin-util.h>
-#include <calendar/gui/e-cal-config.h>
-#include <libedataserver/e-source.h>
-#include <addressbook/gui/widgets/eab-config.h>
#include <libebook/e-book-client.h>
#include <libecal/e-cal-client.h>
-#include <glib/gi18n.h>
-#include <string.h>
+#include <libedataserver/e-source.h>
+
+#include <addressbook/gui/widgets/eab-config.h>
+#include <calendar/gui/e-cal-config.h>
+#include <e-util/e-config.h>
+#include <e-util/e-plugin-util.h>
+#include <e-util/e-plugin-util.h>
+#include <shell/e-shell.h>
+#include <shell/e-shell-backend.h>
GtkWidget *org_gnome_default_book (EPlugin *epl, EConfigHookItemFactoryData *data);
GtkWidget *org_gnome_autocomplete_book (EPlugin *epl, EConfigHookItemFactoryData *data);
@@ -50,6 +54,26 @@ e_plugin_lib_enable (EPlugin *ep,
return 0;
}
+static void
+mark_default_source_in_list (ESourceList *source_list, ESource *source)
+{
+ GSList *g, *s;
+ g_return_if_fail (source_list != NULL);
+ g_return_if_fail (source != NULL);
+
+ source = e_source_list_peek_source_by_uid (source_list, e_source_peek_uid (source));
+
+ for (g = e_source_list_peek_groups (source_list); g; g = g->next) {
+ ESourceGroup *group = g->data;
+
+ for (s = e_source_group_peek_sources (group); s; s = s->next) {
+ ESource *es = s->data;
+
+ e_source_set_property (es, "default", es == source ? "true" : NULL);
+ }
+ }
+}
+
void
commit_default_calendar (EPlugin *epl,
EConfigTarget *target)
@@ -59,8 +83,41 @@ commit_default_calendar (EPlugin *epl,
cal_target = (ECalConfigTargetSource *) target;
source = cal_target->source;
- if (e_source_get_property (source, "default"))
- e_cal_client_set_default_source (source, cal_target->source_type, NULL);
+ if (e_source_get_property (source, "default")) {
+ EShellBackend *shell_backend = NULL;
+ ESourceList *source_list = NULL;
+
+ switch (cal_target->source_type) {
+ case E_CAL_CLIENT_SOURCE_TYPE_EVENTS:
+ shell_backend = e_shell_get_backend_by_name (e_shell_get_default (), "calendar");
+ break;
+ case E_CAL_CLIENT_SOURCE_TYPE_MEMOS:
+ shell_backend = e_shell_get_backend_by_name (e_shell_get_default (), "memos");
+ break;
+ case E_CAL_CLIENT_SOURCE_TYPE_TASKS:
+ shell_backend = e_shell_get_backend_by_name (e_shell_get_default (), "tasks");
+ break;
+ default:
+ break;
+ }
+
+ if (shell_backend)
+ g_object_get (G_OBJECT (shell_backend), "source-list", &source_list, NULL);
+
+ if (source_list) {
+ /* mark in the backend's source_list, to avoid race
+ with saving of two different source lists
+ */
+ mark_default_source_in_list (source_list, source);
+ } else {
+ GError *error = NULL;
+
+ e_cal_client_set_default_source (source, cal_target->source_type, &error);
+ if (error)
+ g_debug ("%s: Failed to set default source: %s", G_STRFUNC, error->message);
+ g_clear_error (&error);
+ }
+ }
}
void
@@ -72,8 +129,28 @@ commit_default_book (EPlugin *epl,
book_target = (EABConfigTargetSource *) target;
source = book_target->source;
- if (e_source_get_property (source, "default"))
- e_book_client_set_default_source (source, NULL);
+ if (e_source_get_property (source, "default")) {
+ EShellBackend *shell_backend;
+ ESourceList *source_list = NULL;
+
+ shell_backend = e_shell_get_backend_by_name (e_shell_get_default (), "addressbook");
+ if (shell_backend)
+ g_object_get (G_OBJECT (shell_backend), "source-list", &source_list, NULL);
+
+ if (source_list) {
+ /* mark in the backend's source_list, to avoid race
+ with saving of two different source lists
+ */
+ mark_default_source_in_list (source_list, source);
+ } else {
+ GError *error = NULL;
+
+ e_book_client_set_default_source (source, &error);
+ if (error)
+ g_debug ("%s: Failed to set default source: %s", G_STRFUNC, error->message);
+ g_clear_error (&error);
+ }
+ }
}