aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-04-26 17:52:33 +0800
committerXavier Claessens <xclaesse@gmail.com>2011-04-27 19:51:13 +0800
commit5360a078c1b0d1e80a031fab38b865144447080d (patch)
tree916f2ca595cf58db1d419a8e4b5a49f3f26696af /libempathy-gtk/empathy-chat-view.c
parente4e176e847974f11e5155f434c1620c042dacd69 (diff)
downloadgsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar.gz
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar.bz2
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar.lz
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar.xz
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.tar.zst
gsoc2013-empathy-5360a078c1b0d1e80a031fab38b865144447080d.zip
Use focus feature of adium themes
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.c')
-rw-r--r--libempathy-gtk/empathy-chat-view.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-chat-view.c b/libempathy-gtk/empathy-chat-view.c
index ada669885..097215cfd 100644
--- a/libempathy-gtk/empathy-chat-view.c
+++ b/libempathy-gtk/empathy-chat-view.c
@@ -201,3 +201,14 @@ empathy_chat_view_copy_clipboard (EmpathyChatView *view)
}
}
+void
+empathy_chat_view_focus_toggled (EmpathyChatView *view,
+ gboolean has_focus)
+{
+ g_return_if_fail (EMPATHY_IS_CHAT_VIEW (view));
+
+ if (EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->focus_toggled) {
+ EMPATHY_TYPE_CHAT_VIEW_GET_IFACE (view)->focus_toggled (view, has_focus);
+ }
+}
+