From 1bb481409ffa20416c7531ebe4327d77db1796e2 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Thu, 24 Oct 2002 14:25:53 +0000 Subject: initialize new values (clean_up): free new values (find_my_address): if we 2002-10-24 JP Rosevear * gui/e-itip-control.c (init): initialize new values (clean_up): free new values (find_my_address): if we have a delegator address, use it instead (write_html): display delegator info to user (show_current_event): if we have a calendar uri, use that and describe the event differently (show_current_todo): ditto (show_current): search for delegator X properties (e_itip_control_set_delegator_address): accessor (e_itip_control_get_delegator_address): ditto (e_itip_control_set_delegator_name): ditto (e_itip_control_get_delegator_name): ditto (e_itip_control_set_calendar_uri): ditto (e_itip_control_get_calendar_uri): ditto * gui/e-itip-control.h: add protos * gui/itip-utils.c (comp_from): use the first attendee as the from address for things other than request, cancel and add (use organizer) and publish (use default address) svn path=/trunk/; revision=18425 --- calendar/gui/e-itip-control.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'calendar/gui/e-itip-control.h') diff --git a/calendar/gui/e-itip-control.h b/calendar/gui/e-itip-control.h index 30917fb13d..8044e07397 100644 --- a/calendar/gui/e-itip-control.h +++ b/calendar/gui/e-itip-control.h @@ -62,6 +62,15 @@ gint e_itip_control_get_data_size (EItipControl *itip); void e_itip_control_set_from_address (EItipControl *itip, const gchar *address); const gchar *e_itip_control_get_from_address (EItipControl *itip); +void e_itip_control_set_delegator_address (EItipControl *itip, + const gchar *address); +const gchar *e_itip_control_get_delegator_address (EItipControl *itip); +void e_itip_control_set_delegator_name (EItipControl *itip, + const gchar *name); +const gchar *e_itip_control_get_delegator_name (EItipControl *itip); +void e_itip_control_set_calendar_uri (EItipControl *itip, + const gchar *uri); +const gchar *e_itip_control_get_calendar_uri (EItipControl *itip); #ifdef __cplusplus } -- cgit