aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-01-24 05:37:01 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-01-30 22:35:27 +0800
commit1ec896118c7674a48dad3b058253cfded9cbbccb (patch)
tree46c52453d2009fa05d61e9a52c716babfa88e148 /plugins
parentf19241d136043d5cfffbfbaf5b2d6d1affc70682 (diff)
downloadgsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar.gz
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar.bz2
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar.lz
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar.xz
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.tar.zst
gsoc2013-evolution-1ec896118c7674a48dad3b058253cfded9cbbccb.zip
pst-importer: Avoid EClientSourceType enum.
Use ESource extension names instead.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/pst-import/pst-importer.c87
1 files changed, 32 insertions, 55 deletions
diff --git a/plugins/pst-import/pst-importer.c b/plugins/pst-import/pst-importer.c
index 0389d25bb6..4654a8e2b4 100644
--- a/plugins/pst-import/pst-importer.c
+++ b/plugins/pst-import/pst-importer.c
@@ -350,68 +350,43 @@ widget_sanitizer_cb (GtkToggleButton *button,
}
static const gchar *
-get_source_combo_key (EClientSourceType source_type)
+get_source_combo_key (const gchar *extension_name)
{
- const gchar *key = NULL;
-
- switch (source_type) {
- case E_CLIENT_SOURCE_TYPE_CONTACTS:
- key = "pst-contacts-source-combo";
- break;
- case E_CLIENT_SOURCE_TYPE_EVENTS:
- key = "pst-events-source-combo";
- break;
- case E_CLIENT_SOURCE_TYPE_TASKS:
- key = "pst-tasks-source-combo";
- break;
- case E_CLIENT_SOURCE_TYPE_MEMOS:
- key = "pst-memos-source-combo";
- break;
- case E_CLIENT_SOURCE_TYPE_LAST:
- break;
- }
-
- return key;
+ if (g_strcmp0 (extension_name, E_SOURCE_EXTENSION_ADDRESS_BOOK) == 0)
+ return "pst-contacts-source-combo";
+
+ if (g_strcmp0 (extension_name, E_SOURCE_EXTENSION_CALENDAR) == 0)
+ return "pst-events-source-combo";
+
+ if (g_strcmp0 (extension_name, E_SOURCE_EXTENSION_TASK_LIST) == 0)
+ return "pst-tasks-source-combo";
+
+ if (g_strcmp0 (extension_name, E_SOURCE_EXTENSION_MEMO_LIST) == 0)
+ return "pst-memos-source-combo";
+
+ return NULL;
}
static void
add_source_list_with_check (GtkWidget *frame,
const gchar *caption,
ESourceRegistry *registry,
- EClientSourceType source_type,
+ const gchar *extension_name,
GCallback toggle_callback,
EImportTarget *target,
gboolean active)
{
- ESource *source;
+ ESource *source = NULL;
GtkWidget *check, *hbox;
GtkWidget *combo = NULL;
- const gchar *extension_name;
g_return_if_fail (frame != NULL);
g_return_if_fail (caption != NULL);
g_return_if_fail (toggle_callback != NULL);
- switch (source_type) {
- case E_CLIENT_SOURCE_TYPE_CONTACTS:
- extension_name = E_SOURCE_EXTENSION_ADDRESS_BOOK;
- source = e_source_registry_ref_default_address_book (registry);
- break;
- case E_CLIENT_SOURCE_TYPE_EVENTS:
- extension_name = E_SOURCE_EXTENSION_CALENDAR;
- source = e_source_registry_ref_default_calendar (registry);
- break;
- case E_CLIENT_SOURCE_TYPE_TASKS:
- extension_name = E_SOURCE_EXTENSION_TASK_LIST;
- source = e_source_registry_ref_default_task_list (registry);
- break;
- case E_CLIENT_SOURCE_TYPE_MEMOS:
- extension_name = E_SOURCE_EXTENSION_MEMO_LIST;
- source = e_source_registry_ref_default_memo_list (registry);
- break;
- default:
- g_return_if_reached ();
- }
+ source = e_source_registry_ref_default_for_extension_name (
+ registry, extension_name);
+ g_return_if_fail (source != NULL);
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
@@ -433,7 +408,7 @@ add_source_list_with_check (GtkWidget *frame,
gtk_box_pack_start ((GtkBox *) frame, hbox, FALSE, FALSE, 0);
if (combo) {
- const gchar *key = get_source_combo_key (source_type);
+ const gchar *key = get_source_combo_key (extension_name);
g_return_if_fail (key != NULL);
@@ -589,22 +564,22 @@ org_credativ_evolution_readpst_getwidget (EImport *ei,
add_source_list_with_check (
framebox, _("_Address Book"),
- registry, E_CLIENT_SOURCE_TYPE_CONTACTS,
+ registry, E_SOURCE_EXTENSION_ADDRESS_BOOK,
G_CALLBACK (checkbox_addr_toggle_cb), target,
GPOINTER_TO_INT (g_datalist_get_data (&target->data, "pst-do-addr")));
add_source_list_with_check (
framebox, _("A_ppointments"),
- registry, E_CLIENT_SOURCE_TYPE_EVENTS,
+ registry, E_SOURCE_EXTENSION_CALENDAR,
G_CALLBACK (checkbox_appt_toggle_cb), target,
GPOINTER_TO_INT (g_datalist_get_data (&target->data, "pst-do-appt")));
add_source_list_with_check (
framebox, _("_Tasks"),
- registry, E_CLIENT_SOURCE_TYPE_TASKS,
+ registry, E_SOURCE_EXTENSION_TASK_LIST,
G_CALLBACK (checkbox_task_toggle_cb), target,
GPOINTER_TO_INT (g_datalist_get_data (&target->data, "pst-do-task")));
add_source_list_with_check (
framebox, _("_Journal entries"),
- registry, E_CLIENT_SOURCE_TYPE_MEMOS,
+ registry, E_SOURCE_EXTENSION_MEMO_LIST,
G_CALLBACK (checkbox_journal_toggle_cb), target,
GPOINTER_TO_INT (g_datalist_get_data (&target->data, "pst-do-journal")));
@@ -672,12 +647,14 @@ client_connect_cb (GObject *source_object,
static void
open_client (PstImporter *m,
- EClientSourceType source_type)
+ const gchar *extension_name)
{
ESourceComboBox *combo;
ESource *source;
+ const gchar *key;
- combo = g_datalist_get_data (&m->target->data, get_source_combo_key (source_type));
+ key = get_source_combo_key (extension_name);
+ combo = g_datalist_get_data (&m->target->data, key);
g_return_if_fail (combo != NULL);
source = e_source_combo_box_ref_active (combo);
@@ -694,19 +671,19 @@ static void
pst_prepare_run (PstImporter *m)
{
if (GPOINTER_TO_INT (g_datalist_get_data (&m->target->data, "pst-do-addr"))) {
- open_client (m, E_CLIENT_SOURCE_TYPE_CONTACTS);
+ open_client (m, E_SOURCE_EXTENSION_ADDRESS_BOOK);
}
if (GPOINTER_TO_INT (g_datalist_get_data (&m->target->data, "pst-do-appt"))) {
- open_client (m, E_CLIENT_SOURCE_TYPE_EVENTS);
+ open_client (m, E_SOURCE_EXTENSION_CALENDAR);
}
if (GPOINTER_TO_INT (g_datalist_get_data (&m->target->data, "pst-do-task"))) {
- open_client (m, E_CLIENT_SOURCE_TYPE_TASKS);
+ open_client (m, E_SOURCE_EXTENSION_TASK_LIST);
}
if (GPOINTER_TO_INT (g_datalist_get_data (&m->target->data, "pst-do-journal"))) {
- open_client (m, E_CLIENT_SOURCE_TYPE_MEMOS);
+ open_client (m, E_SOURCE_EXTENSION_MEMO_LIST);
}
if (!m->waiting_open)