diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-06-11 18:22:43 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-06-14 15:21:50 +0800 |
commit | f56ae9de2c19ee8d739b07909834816aa14ac6a1 (patch) | |
tree | aaae2dbe13599bb7d53d22db41a31ecb043bc7f8 /libempathy-gtk/empathy-roster-view.h | |
parent | 4726282c4b6985a0b34e77b7b7955bcad233cf50 (diff) | |
download | gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar.gz gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar.bz2 gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar.lz gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar.xz gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.tar.zst gsoc2013-empathy-f56ae9de2c19ee8d739b07909834816aa14ac6a1.zip |
roster-view: add API to display events
Diffstat (limited to 'libempathy-gtk/empathy-roster-view.h')
-rw-r--r-- | libempathy-gtk/empathy-roster-view.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-roster-view.h b/libempathy-gtk/empathy-roster-view.h index 7a87bea7a..c3d475b0b 100644 --- a/libempathy-gtk/empathy-roster-view.h +++ b/libempathy-gtk/empathy-roster-view.h @@ -79,6 +79,14 @@ gboolean empathy_roster_view_is_empty (EmpathyRosterView *self); gboolean empathy_roster_view_is_searching (EmpathyRosterView *self); +guint empathy_roster_view_add_event (EmpathyRosterView *self, + FolksIndividual *individual, + const gchar *icon, + gpointer user_data); + +void empathy_roster_view_remove_event (EmpathyRosterView *self, + guint event_id); + G_END_DECLS #endif /* #ifndef __EMPATHY_ROSTER_VIEW_H__*/ |