From e49741fbd8cbec90754459fbb996c7a1be865d8e Mon Sep 17 00:00:00 2001 From: pchenthill Date: Fri, 23 Jul 2004 08:34:14 +0000 Subject: Fixes #59983 If the ecal component is already loaded, check for the 2004-07-23 pchenthill Fixes #59983 * gui/e-itip-control.c (show_current_event): If the ecal component is already loaded, check for the participation status of the attendee and display the menu for selecting the calendar. svn path=/trunk/; revision=26712 --- calendar/ChangeLog | 8 ++++++++ calendar/gui/e-itip-control.c | 33 +++++++++++++++++++++++++++++++-- 2 files changed, 39 insertions(+), 2 deletions(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 76d239e2df..ee934b558a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2004-07-23 pchenthill + + Fixes #59983 + * gui/e-itip-control.c (show_current_event): + If the ecal component is already loaded, check for the participation + status of the attendee and display the menu for selecting the + calendar. + 2004-07-16 Larry Ewing * gui/e-meeting-time-sel.c (e_meeting_time_selector_style_set): diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 89ecaf110b..c567c0b2a2 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1216,8 +1216,37 @@ show_current_event (EItipControl *itip) itip_desc = _("%s requests the presence of %s at a meeting."); else itip_desc = _("%s requests your presence at a meeting."); - itip_title = _("Meeting Proposal"); - options = get_request_options (priv->current_ecal ? FALSE : TRUE); + itip_title = _("Meeting Proposal"); + if (priv->current_ecal) { + ECalComponentAttendee *attendee= NULL, *tmp; + char *email_add; + GList *attendee_list, *l; + + e_cal_component_get_attendee_list (priv->comp, &attendee_list); + e_cal_get_cal_address (priv->current_ecal, &email_add, NULL); + + for (l = attendee_list; l ; l = g_slist_next (l)) { + tmp = (ECalComponentAttendee *) (l->data); + if (!strcmp (tmp->value + 7, email_add)) { + attendee = tmp; + break; + } + } + if (attendee) { + switch (attendee->status) { + case ICAL_PARTSTAT_ACCEPTED: + case ICAL_PARTSTAT_DECLINED: + case ICAL_PARTSTAT_TENTATIVE: + options = get_request_options (FALSE); + break; + + /* otherwise it must be needs action */ + default: + options = get_request_options (TRUE); + } + } + } else + options = get_request_options (TRUE); break; case ICAL_METHOD_ADD: itip_desc = _("%s wishes to add to an existing meeting."); -- cgit v1.2.3