From 6c31be81b1043a9cd22c380b5103b11feaa77441 Mon Sep 17 00:00:00 2001 From: Harish Krishnaswamy Date: Sun, 24 Oct 2004 11:27:47 +0000 Subject: restoring the files in the correct directory 2004-10-22 Harish Krishnaswamy * mark-calendar-offline.c: implement a plugin that lets the user mark a calendar to be available for off-line use, if it is not already set to be so and vice versa svn path=/trunk/; revision=27709 --- plugins/mark-calendar-offline/ChangeLog | 6 +++ plugins/mark-calendar-offline/Makefile.am | 11 +++++ .../mark-calendar-offline/mark-calendar-offline.c | 54 ++++++++++++++++++++++ .../org-gnome-mark-calendar-offline.eplug.in | 16 +++++++ 4 files changed, 87 insertions(+) create mode 100644 plugins/mark-calendar-offline/ChangeLog create mode 100644 plugins/mark-calendar-offline/Makefile.am create mode 100644 plugins/mark-calendar-offline/mark-calendar-offline.c create mode 100644 plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.in diff --git a/plugins/mark-calendar-offline/ChangeLog b/plugins/mark-calendar-offline/ChangeLog new file mode 100644 index 0000000000..3664d11b30 --- /dev/null +++ b/plugins/mark-calendar-offline/ChangeLog @@ -0,0 +1,6 @@ +2004-10-22 Harish Krishnaswamy + + * mark-calendar-offline.c: implement a plugin that lets the user mark a + calendar to be available for off-line use, if it is not already set to be so + and vice versa + diff --git a/plugins/mark-calendar-offline/Makefile.am b/plugins/mark-calendar-offline/Makefile.am new file mode 100644 index 0000000000..70608e12ad --- /dev/null +++ b/plugins/mark-calendar-offline/Makefile.am @@ -0,0 +1,11 @@ +INCLUDES = \ + -I$(top_srcdir) \ + $(EVOLUTION_CALENDAR_CFLAGS) + +@EVO_PLUGIN_RULE@ + +plugin_DATA = org-gnome-mark-calendar-offline.eplug +plugin_LTLIBRARIES = liborg-gnome-mark-calendar-offline.la + +liborg_gnome_mark_calendar_offline_la_SOURCES = mark-calendar-offline.c +liborg_gnome_mark_calendar_offline_la_LDFLAGS = -module -avoid-version diff --git a/plugins/mark-calendar-offline/mark-calendar-offline.c b/plugins/mark-calendar-offline/mark-calendar-offline.c new file mode 100644 index 0000000000..95083c7ff2 --- /dev/null +++ b/plugins/mark-calendar-offline/mark-calendar-offline.c @@ -0,0 +1,54 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * + * Authors: Harish Krishnaswamy (kharish@novell.com) + * + * Copyright 2004 Novell, Inc. (www.novell.com) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + +/* This is prototype code only, this may, or may not, use undocumented + * unstable or private internal function calls. + * This code has been derived from the source of the sample eplugin + * select_one_source. + */ + +#include +#include +#include +#include +#include + +void org_gnome_mark_calendar_offline (EPlugin *ep, ECalPopupTargetSource *target); +void org_gnome_mark_calendar_no_offline (EPlugin *ep, ECalPopupTargetSource *target); + +void +org_gnome_mark_calendar_no_offline (EPlugin *ep, ECalPopupTargetSource *target) +{ + ESource *source; + + source = e_source_selector_peek_primary_selection (target->selector); + e_source_set_property (source, "offline", "0"); +} + +void +org_gnome_mark_calendar_offline (EPlugin *ep, ECalPopupTargetSource *target) +{ + ESource *source; + + source = e_source_selector_peek_primary_selection (target->selector); + e_source_set_property (source, "offline", "1"); +} + diff --git a/plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.in b/plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.in new file mode 100644 index 0000000000..75b8b9c866 --- /dev/null +++ b/plugins/mark-calendar-offline/org-gnome-mark-calendar-offline.eplug.in @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + -- cgit v1.2.3