diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-05-18 10:52:29 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-06-12 14:56:47 +0800 |
commit | a4e44071b6bf128f4150a19e5b60975cae9218b2 (patch) | |
tree | 415e4d789fe7199529d0ae99c037137cea9b8e5f /libempathy-gtk | |
parent | 44edc9fc835feaa279b5c20269a07aecff9e38cc (diff) | |
download | gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar.gz gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar.bz2 gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar.lz gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar.xz gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.tar.zst gsoc2013-empathy-a4e44071b6bf128f4150a19e5b60975cae9218b2.zip |
Add edit_message() method to ChatView iface
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-chat-view.c | 12 | ||||
-rw-r--r-- | libempathy-gtk/empathy-chat-view.h | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c index 43d89dd78..49c384489 100644 --- a/libempathy-gtk/empathy-chat-view.c +++ b/libempathy-gtk/empathy-chat-view.c @@ -84,6 +84,18 @@ empathy_chat_view_append_event (EmpathyChatView *view, } void +empathy_chat_view_edit_message (EmpathyChatView *view, + EmpathyMessage *message) +{ + g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view)); + + if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->edit_message) { + EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->edit_message ( + view, message); + } +} + +void empathy_chat_view_scroll (EmpathyChatView *view, gboolean allow_scrolling) { diff --git a/libempathy-gtk/empathy-chat-view.h b/libempathy-gtk/empathy-chat-view.h index 73245c422..1fa44450a 100644 --- a/libempathy-gtk/empathy-chat-view.h +++ b/libempathy-gtk/empathy-chat-view.h @@ -46,6 +46,8 @@ struct _EmpathyChatViewIface { EmpathyMessage *msg); void (*append_event) (EmpathyChatView *view, const gchar *str); + void (*edit_message) (EmpathyChatView *view, + EmpathyMessage *message); void (*scroll) (EmpathyChatView *view, gboolean allow_scrolling); void (*scroll_down) (EmpathyChatView *view); @@ -79,6 +81,8 @@ void empathy_chat_view_append_message (EmpathyChatView *view, EmpathyMessage *msg); void empathy_chat_view_append_event (EmpathyChatView *view, const gchar *str); +void empathy_chat_view_edit_message (EmpathyChatView *view, + EmpathyMessage *message); void empathy_chat_view_scroll (EmpathyChatView *view, gboolean allow_scrolling); void empathy_chat_view_scroll_down (EmpathyChatView *view); |