diff options
author | JP Rosevear <jpr@ximian.com> | 2001-09-14 03:06:15 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-09-14 03:06:15 +0800 |
commit | b280d814d60baee0a3fb9f6885f1a0c4b9553606 (patch) | |
tree | f4c01123e9883cf3aa077e0a8589d806bceaece5 /calendar/cal-util/cal-component.h | |
parent | a24242acd4924aa88625b32f1d96cb92cadbbf7c (diff) | |
download | gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar.gz gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar.bz2 gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar.lz gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar.xz gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.tar.zst gsoc2013-evolution-b280d814d60baee0a3fb9f6885f1a0c4b9553606.zip |
use ical partstat, role, cutypes directly
2001-09-13 JP Rosevear <jpr@ximian.com>
* cal-util/cal-component.h: use ical partstat, role, cutypes
directly
* cal-util/cal-component.c: ditto
* gui/e-itip-control.c (find_my_address): set my addresses if the
addresses match
(find_attendee): strstr returns non-null on a match
(write_html): use new icon, select the name displayed (organizer
or attendee) based on method,
(ok_clicked_cb): when rsvp'ing strip off all but the attendee
being replied for as is specified in the spec
(find_attendee_partstat): new util function to extract the
partstat of an attendee
(update_attendee_status): updates the partstat of a specific
attendee in the reply message
* gui/dialogs/meeting-page.c: use ical partstat, role, cutypes
directly
(popup_delegate_cb): if we delegate, notify of needs send and
changed
(popup_delete_cb): notify of needs send and changed for each
deletion
svn path=/trunk/; revision=12806
Diffstat (limited to 'calendar/cal-util/cal-component.h')
-rw-r--r-- | calendar/cal-util/cal-component.h | 35 |
1 files changed, 4 insertions, 31 deletions
diff --git a/calendar/cal-util/cal-component.h b/calendar/cal-util/cal-component.h index ef38483c68..1ab8ee24bd 100644 --- a/calendar/cal-util/cal-component.h +++ b/calendar/cal-util/cal-component.h @@ -150,41 +150,14 @@ typedef enum { CAL_COMPONENT_TRANSP_UNKNOWN } CalComponentTransparency; -/* Organizer & Attendee */ -typedef enum { - CAL_COMPONENT_CUTYPE_INDIVIDUAL, - CAL_COMPONENT_CUTYPE_GROUP, - CAL_COMPONENT_CUTYPE_RESOURCE, - CAL_COMPONENT_CUTYPE_ROOM, - CAL_COMPONENT_CUTYPE_UNKNOWN -} CalComponentCUType; - -typedef enum { - CAL_COMPONENT_ROLE_CHAIR, - CAL_COMPONENT_ROLE_REQUIRED, - CAL_COMPONENT_ROLE_OPTIONAL, - CAL_COMPONENT_ROLE_NON, - CAL_COMPONENT_ROLE_UNKNOWN -} CalComponentRole; - -typedef enum { - CAL_COMPONENT_PARTSTAT_NEEDSACTION, - CAL_COMPONENT_PARTSTAT_ACCEPTED, - CAL_COMPONENT_PARTSTAT_DECLINED, - CAL_COMPONENT_PARTSTAT_TENTATIVE, - CAL_COMPONENT_PARTSTAT_DELEGATED, - CAL_COMPONENT_PARTSTAT_COMPLETED, - CAL_COMPONENT_PARTSTAT_INPROCESS, - CAL_COMPONENT_PARTSTAT_UNKNOWN -} CalComponentPartStat; - +/* Organizer & Attendee */ typedef struct { const char *value; const char *member; - CalComponentCUType cutype; - CalComponentRole role; - CalComponentPartStat status; + icalparameter_cutype cutype; + icalparameter_role role; + icalparameter_partstat status; gboolean rsvp; const char *delto; |