aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-day-view.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2002-09-05 18:04:23 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2002-09-05 18:04:23 +0800
commit77a9892f1b8746019c38fa3d501e89402948fbbe (patch)
treeb0bfc0c2c5e04aaff8f175005422b029ba6b4209 /calendar/gui/e-day-view.c
parentf92642ab4f07a36273a8ae16df3f68cbf2592665 (diff)
downloadgsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar.gz
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar.bz2
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar.lz
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar.xz
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.tar.zst
gsoc2013-evolution-77a9892f1b8746019c38fa3d501e89402948fbbe.zip
added support for text/x-calendar targets, in which case a VCALENDAR
2002-09-05 Rodrigo Moya <rodrigo@ximian.com> * gui/e-day-view.c (e_day_view_on_drag_data_get): added support for text/x-calendar targets, in which case a VCALENDAR component, with full timezone information is returned. svn path=/trunk/; revision=17984
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r--calendar/gui/e-day-view.c34
1 files changed, 26 insertions, 8 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c
index 27ae4eee4e..9965707db4 100644
--- a/calendar/gui/e-day-view.c
+++ b/calendar/gui/e-day-view.c
@@ -120,10 +120,12 @@ static guint e_day_view_signals[LAST_SIGNAL] = { 0 };
/* Drag and Drop stuff. */
enum {
- TARGET_CALENDAR_EVENT
+ TARGET_CALENDAR_EVENT,
+ TARGET_VCALENDAR
};
static GtkTargetEntry target_table[] = {
- { "application/x-e-calendar-event", 0, TARGET_CALENDAR_EVENT }
+ { "application/x-e-calendar-event", 0, TARGET_CALENDAR_EVENT },
+ { "text/x-calendar", 0, TARGET_VCALENDAR }
};
static guint n_targets = sizeof(target_table) / sizeof(target_table[0]);
@@ -7174,7 +7176,6 @@ e_day_view_on_drag_data_get (GtkWidget *widget,
{
EDayViewEvent *event;
gint day, event_num;
- const char *event_uid;
day = day_view->drag_event_day;
event_num = day_view->drag_event_num;
@@ -7190,14 +7191,31 @@ e_day_view_on_drag_data_get (GtkWidget *widget,
event = &g_array_index (day_view->events[day],
EDayViewEvent, event_num);
+ if (info == TARGET_CALENDAR_EVENT) {
+ const char *event_uid;
- cal_component_get_uid (event->comp, &event_uid);
-
- g_return_if_fail (event_uid != NULL);
+ cal_component_get_uid (event->comp, &event_uid);
+ g_return_if_fail (event_uid != NULL);
- if (info == TARGET_CALENDAR_EVENT) {
gtk_selection_data_set (selection_data, selection_data->target,
- 8, event_uid, strlen (event_uid));
+ 8, event_uid, strlen (event_uid));
+ } else if (info == TARGET_VCALENDAR) {
+ char *comp_str;
+ icalcomponent *vcal;
+
+ vcal = cal_util_new_top_level ();
+ cal_util_add_timezones_from_component (vcal, event->comp);
+ icalcomponent_add_component (
+ vcal,
+ icalcomponent_new_clone (cal_component_get_icalcomponent (event->comp)));
+
+ comp_str = icalcomponent_as_ical_string (vcal);
+ if (comp_str) {
+ gtk_selection_data_set (selection_data, selection_data->target,
+ 8, comp_str, strlen (comp_str));
+ }
+
+ icalcomponent_free (vcal);
}
}