aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/calendar-setup.c
diff options
context:
space:
mode:
authorSivaiah Nallagatla <siva@src.gnome.org>2004-12-24 02:12:52 +0800
committerSivaiah Nallagatla <siva@src.gnome.org>2004-12-24 02:12:52 +0800
commite1fec87c2d1e2faa5667105d1d6d174a006dd72b (patch)
treea848d80ee9f423f352a7dbfc04cbe2eb811dd7ac /calendar/gui/dialogs/calendar-setup.c
parent72e4f1181ba63747f0204ef6f019a265c25cb616 (diff)
downloadgsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar.gz
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar.bz2
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar.lz
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar.xz
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.tar.zst
gsoc2013-evolution-e1fec87c2d1e2faa5667105d1d6d174a006dd72b.zip
Merging offline brnach with HEAD
svn path=/trunk/; revision=28195
Diffstat (limited to 'calendar/gui/dialogs/calendar-setup.c')
-rw-r--r--calendar/gui/dialogs/calendar-setup.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c
index 55ecf91d70..5c921a8c3f 100644
--- a/calendar/gui/dialogs/calendar-setup.c
+++ b/calendar/gui/dialogs/calendar-setup.c
@@ -257,6 +257,43 @@ eccp_get_source_name (EConfig *ec, EConfigItem *item, struct _GtkWidget *parent,
return entry;
}
+static void
+offline_status_changed_cb (GtkWidget *widget, CalendarSourceDialog *sdialog)
+{
+
+ if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
+ e_source_set_property (sdialog->source, "offline_sync", "1");
+ else
+ e_source_set_property (sdialog->source, "offline_sync", "0");
+
+}
+
+static GtkWidget *
+eccp_general_offline (EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, struct _GtkWidget *old, void *data)
+{
+ CalendarSourceDialog *sdialog = data;
+ GtkWidget *offline_setting;
+ const char *offline_sync;
+ int row;
+ gboolean is_local = g_str_has_prefix (e_source_group_peek_base_uri (sdialog->source_group), "file:");
+ offline_sync = e_source_get_property (sdialog->source, "offline_sync");
+ if (old)
+ return old;
+ else {
+ row = ((GtkTable*)parent)->nrows;
+ offline_setting = gtk_check_button_new_with_label (N_("Copy calendar contents locally for offline operation"));
+ gtk_widget_show (offline_setting);
+ g_signal_connect (offline_setting, "toggled", G_CALLBACK (offline_status_changed_cb), sdialog);
+ gtk_table_attach (GTK_TABLE (parent), offline_setting, 1, 2, row, row+1, GTK_EXPAND | GTK_FILL, 0, 0, 0);
+
+ }
+
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (offline_setting), (offline_sync && g_str_equal (offline_sync, "1")) ? TRUE : FALSE);
+ if (is_local)
+ gtk_widget_hide (offline_setting);
+ return offline_setting;
+}
+
static void
color_changed (GnomeColorPicker *picker, guint r, guint g, guint b, guint a, ECalConfigTargetSource *t)
{
@@ -326,6 +363,7 @@ static ECalConfigItem eccp_items[] = {
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/00.type", NULL, eccp_get_source_type },
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/10.name", NULL, eccp_get_source_name },
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/20.color", NULL, eccp_get_source_color },
+ { E_CONFIG_ITEM_TABLE, "00.general/00.source/30.offline", NULL, eccp_general_offline },
{ 0 },
};
@@ -336,6 +374,7 @@ static ECalConfigItem ectp_items[] = {
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/00.type", NULL, eccp_get_source_type },
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/10.name", NULL, eccp_get_source_name },
{ E_CONFIG_ITEM_TABLE, "00.general/00.source/20.color", NULL, eccp_get_source_color },
+ { E_CONFIG_ITEM_TABLE, "00.general/00.source/30.offline", NULL, eccp_general_offline },
{ 0 },
};