diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-08 06:17:49 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-08 06:17:49 +0800 |
commit | a4e1cd2c0d5c28812be48fa8394d36c9c7003ced (patch) | |
tree | 4c5404832b4ac8e6214b52ce2f29ec81c5822cde /plugins/itip-formatter/itip-view.h | |
parent | b12dec1c48fba6202e9e854f23f1975f8329c0ec (diff) | |
download | gsoc2013-evolution-a4e1cd2c0d5c28812be48fa8394d36c9c7003ced.tar.gz gsoc2013-evolution-a4e1cd2c0d5c28812be48fa8394d36c9c7003ced.tar.zst gsoc2013-evolution-a4e1cd2c0d5c28812be48fa8394d36c9c7003ced.zip |
new protos
2005-01-07 JP Rosevear <jpr@novell.com>
* itip-view.h: new protos
* itip-view.c (set_tasklist_sender_text): task sender messages
(set_calendar_sender_text): calendar sender messages
(set_sender_text): select above as appropriate
(itip_view_set_item_type): accessor
(itip_view_get_item_type): ditto
* itip-formatter.c (find_cal_opened_cb): messages for
meetings/tasks/journals
(send_item): ditto
(format_itip_object): ditto
(itip_formatter_page_factory): change page title
svn path=/trunk/; revision=28280
Diffstat (limited to 'plugins/itip-formatter/itip-view.h')
-rw-r--r-- | plugins/itip-formatter/itip-view.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/itip-formatter/itip-view.h b/plugins/itip-formatter/itip-view.h index b2a12a5ad0..7e7b782e91 100644 --- a/plugins/itip-formatter/itip-view.h +++ b/plugins/itip-formatter/itip-view.h @@ -28,6 +28,7 @@ #include <glib-object.h> #include <gtk/gtkhbox.h> #include <libedataserver/e-source-list.h> +#include <libecal/e-cal.h> G_BEGIN_DECLS @@ -74,7 +75,6 @@ typedef enum { ITIP_VIEW_INFO_ITEM_TYPE_PROGRESS } ItipViewInfoItemType; - struct _ItipView { GtkHBox parent_instance; @@ -96,6 +96,9 @@ GtkWidget *itip_view_new (void); void itip_view_set_mode (ItipView *view, ItipViewMode mode); ItipViewMode itip_view_get_mode (ItipView *view); +void itip_view_set_item_type (ItipView *view, ECalSourceType type); +ECalSourceType itip_view_get_item_type (ItipView *view); + void itip_view_set_organizer (ItipView *view, const char *organizer); const char *itip_view_get_organizer (ItipView *view); |