diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-06-20 18:06:48 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-06-20 18:06:48 +0800 |
commit | 6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12 (patch) | |
tree | 526c466cd8e478ccf9f917c1e16af3df8f39c2d1 /libempathy-gtk/empathy-chat-view.h | |
parent | 1b47c6c449aa0b884a1029871278396f1d6d6406 (diff) | |
parent | 4f4c33a6cab809bae137b9141e0c1697f951e9ec (diff) | |
download | gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar.gz gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar.bz2 gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar.lz gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar.xz gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.tar.zst gsoc2013-empathy-6e05d6a2c75fe87e76c509ba3bf73b4ab44e8a12.zip |
Merge branch 'message-editing-rebase'
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.h')
-rw-r--r-- | libempathy-gtk/empathy-chat-view.h | 4 |
1 files changed, 4 insertions, 0 deletions
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); |