diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-07 23:58:17 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-07 23:58:17 +0800 |
commit | 30ef2f04dbb8180543fd98670517a3851940960a (patch) | |
tree | 0382a138df0b4bdbd7afa5f17e1b340c30cc545c /plugins/itip-formatter/itip-view.h | |
parent | 3189458511655d73566b9eaf698dbbae8be02f2a (diff) | |
download | gsoc2013-evolution-30ef2f04dbb8180543fd98670517a3851940960a.tar.gz gsoc2013-evolution-30ef2f04dbb8180543fd98670517a3851940960a.tar.zst gsoc2013-evolution-30ef2f04dbb8180543fd98670517a3851940960a.zip |
add protos
2005-01-07 JP Rosevear <jpr@novell.com>
* itip-view.h: add protos
* itip-view.c (set_sender_text): update descriptions better
(set_status_text): show/hide status
(set_comment_text): show/hide comment
(set_buttons): update buttons for add an refresh
(itip_view_destroy): free comment/status
(itip_view_init): add status/comment widgets
(itip_view_set_status): accessor
(itip_view_get_status): ditto
(itip_view_set_comment): ditto
(itip_view_get_comment): ditto
* itip-formatter.c (find_cal_opened_cb): make sure rsvp is off for
publish
(format_itip_object): decline counter is sent by an organizer; set
status and comment when appropriate
svn path=/trunk/; revision=28270
Diffstat (limited to 'plugins/itip-formatter/itip-view.h')
-rw-r--r-- | plugins/itip-formatter/itip-view.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/itip-formatter/itip-view.h b/plugins/itip-formatter/itip-view.h index d71f0796eb..f786ad330f 100644 --- a/plugins/itip-formatter/itip-view.h +++ b/plugins/itip-formatter/itip-view.h @@ -111,6 +111,12 @@ const char *itip_view_get_summary (ItipView *view); void itip_view_set_location (ItipView *view, const char *location); const char *itip_view_get_location (ItipView *view); +void itip_view_set_status (ItipView *view, const char *status); +const char *itip_view_get_status (ItipView *view); + +void itip_view_set_comment (ItipView *view, const char *comment); +const char *itip_view_get_comment (ItipView *view); + void itip_view_set_description (ItipView *view, const char *description); const char *itip_view_get_description (ItipView *view); |