From 895cdc3bbeb6399b1547df41903d5e8dc6da9956 Mon Sep 17 00:00:00 2001 From: pchenthill Date: Mon, 26 Jul 2004 12:07:04 +0000 Subject: Fixes #59983 If the ecal component is already loaded, check for the 2004-07-25 pchenthill Fixes #59983 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=26732 --- calendar/gui/e-itip-control.c | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) (limited to 'calendar/gui/e-itip-control.c') diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 89ecaf110b..f62ff943aa 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1217,7 +1217,37 @@ show_current_event (EItipControl *itip) else itip_desc = _("%s requests your presence at a meeting."); itip_title = _("Meeting Proposal"); - options = get_request_options (priv->current_ecal ? FALSE : TRUE); + if (priv->current_ecal) { + ECalComponentAttendee *attendee= NULL, *tmp; + GList *attendee_list, *l; + + e_cal_component_get_attendee_list (priv->comp, &attendee_list); + if (priv->my_address == NULL) + find_my_address (itip, priv->ical_comp); + g_assert (priv->my_address != NULL); + + for (l = attendee_list; l ; l = g_slist_next (l)) { + tmp = (ECalComponentAttendee *) (l->data); + if (!strcmp (tmp->value + 7, priv->my_address)) { + 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