aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.c')
-rw-r--r--libempathy-gtk/empathy-chat-view.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index f5d6ddf09..7d35efb62 100644
--- a/libempathy-gtk/empathy-chat-view.c
+++ b/libempathy-gtk/empathy-chat-view.c
@@ -253,3 +253,23 @@ empathy_chat_view_message_acknowledged (EmpathyChatView *view,
}
}
+/*
+ * empathy_chat_view_set_show_avatars:
+ * @view: a chat view
+ * @show_avatars: TRUE if contacts' avatars should be shown alongside their name
+ *
+ * At present, this is only called on freshly-constructed chat views based on
+ * whether or not the protocol supports avatars at all. Hence, themes don't
+ * have to worry about retroactively showing or hiding avatars in the
+ * scrollback.
+ */
+void
+empathy_chat_view_set_show_avatars (EmpathyChatView *view,
+ gboolean show_avatars)
+{
+ g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
+
+ if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_show_avatars) {
+ EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->set_show_avatars (view, show_avatars);
+ }
+}