diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-01-14 18:41:20 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-01-14 18:41:20 +0800 |
commit | 95fd1b7e2ab05139e563d407db60066df5655c73 (patch) | |
tree | 5cadc8d07261ed9901b97e2a0a725407a1176fb6 /calendar/gui | |
parent | 1619a82fed0e325c6e6749249a04d4d3b0130611 (diff) | |
download | gsoc2013-evolution-95fd1b7e2ab05139e563d407db60066df5655c73.tar.gz gsoc2013-evolution-95fd1b7e2ab05139e563d407db60066df5655c73.tar.zst gsoc2013-evolution-95fd1b7e2ab05139e563d407db60066df5655c73.zip |
Patch from Milan Crha <mcrha@redhat.com> Fix for bug #333695 (Print attendees, their types and roles in detailed print of an event)
svn path=/trunk/; revision=34816
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/print.c | 99 |
1 files changed, 98 insertions, 1 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 1fde0e3495..08056f7947 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -955,6 +955,92 @@ free_event_array (GArray *array) g_array_set_size (array, 0); } +static const char * +get_type_as_string (icalparameter_cutype cutype) +{ + const char *res; + + switch (cutype) { + case ICAL_CUTYPE_NONE: res = NULL; break; + case ICAL_CUTYPE_INDIVIDUAL: res = _("Individual"); break; + case ICAL_CUTYPE_GROUP: res = _("Group"); break; + case ICAL_CUTYPE_RESOURCE: res = _("Resource"); break; + case ICAL_CUTYPE_ROOM: res = _("Room"); break; + default: res = _("Unknown"); break; + } + + return res; +} + +static const char * +get_role_as_string (icalparameter_role role) +{ + const char *res; + + switch (role) { + case ICAL_ROLE_NONE: res = NULL; break; + case ICAL_ROLE_CHAIR: res = _("Chair"); break; + case ICAL_ROLE_REQPARTICIPANT: res = _("Required Participant"); break; + case ICAL_ROLE_OPTPARTICIPANT: res = _("Optional Participant"); break; + case ICAL_ROLE_NONPARTICIPANT: res = _("Non-Participant"); break; + default: res = _("Unknown"); break; + } + + return res; +} + +static double +print_attendees (GtkPrintContext *context, PangoFontDescription *font, cairo_t *cr, + double left, double right, double top, double bottom, + ECalComponent *comp) +{ + GSList *attendees = NULL, *l; + + g_return_val_if_fail (context != NULL, top); + g_return_val_if_fail (font != NULL, top); + g_return_val_if_fail (cr != NULL, top); + + e_cal_component_get_attendee_list (comp, &attendees); + + for (l = attendees; l; l = l->next) { + ECalComponentAttendee *attendee = l->data; + + if (attendee && attendee->value && *attendee->value) { + GString *text; + const char *tmp; + + tmp = get_type_as_string (attendee->cutype); + text = g_string_new (tmp ? tmp : ""); + + if (tmp) + g_string_append (text, " "); + + /* it's usually in form of "mailto:email@domain" */ + tmp = strchr (attendee->value, ':'); + g_string_append (text, tmp ? tmp + 1 : attendee->value); + + tmp = get_role_as_string (attendee->role); + if (tmp) { + g_string_append (text, " ("); + g_string_append (text, tmp); + g_string_append (text, ")"); + } + + if (top > bottom) { + top = 10.0; + cairo_show_page (cr); + } + + top = bound_text (context, font, text->str, left + 40.0, top, right, bottom); + + g_string_free (text, TRUE); + } + } + + e_cal_component_free_attendee_list (attendees); + + return top; +} static void print_day_long_event (GtkPrintContext *context, PangoFontDescription *font, @@ -2387,11 +2473,22 @@ print_comp_draw_page (GtkPrintOperation *operation, top + 3, width, height); g_free (location_string); } - pango_font_description_free (font); /* Date information */ print_date_label (context, comp, client, 0.0, width, top + 3, top + 15); top += 20; + + /* Attendees */ + if (e_cal_component_has_attendees (comp)) { + top = bound_text (context, font, _("Attendees: "), 0.0, top, width, height); + pango_font_description_free (font); + font = get_font_for_size (12, PANGO_WEIGHT_NORMAL); + top = print_attendees (context, font, cr, 0.0, width, top, height, comp); + top += get_font_size (font) - 6; + } + + pango_font_description_free (font); + font = get_font_for_size (12, PANGO_WEIGHT_NORMAL); /* For a VTODO we print the Status, Priority, % Complete and URL. */ |