aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-view.h
diff options
context:
space:
mode:
authorThomas Meire <blackskad@gmail.com>2010-01-17 06:41:32 +0800
committerThomas Meire <blackskad@gmail.com>2010-01-21 08:20:08 +0800
commitd128e3a36e43a08a9dfe4a2c42b9485e146faeae (patch)
treead57738003d41968d9f00a02740ff8321c462335 /libempathy-gtk/empathy-chat-view.h
parent993766233887be988d3864c64be85c83989d42ad (diff)
downloadgsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.gz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.bz2
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.lz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.xz
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.tar.zst
gsoc2013-empathy-d128e3a36e43a08a9dfe4a2c42b9485e146faeae.zip
added case sensitive highlighting for adium themes
Diffstat (limited to 'libempathy-gtk/empathy-chat-view.h')
-rw-r--r--libempathy-gtk/empathy-chat-view.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-chat-view.h b/libempathy-gtk/empathy-chat-view.h
index f3478be6d..52b39d124 100644
--- a/libempathy-gtk/empathy-chat-view.h
+++ b/libempathy-gtk/empathy-chat-view.h
@@ -62,7 +62,8 @@ struct _EmpathyChatViewIface {
gboolean *can_do_previous,
gboolean *can_do_next);
void (*highlight) (EmpathyChatView *view,
- const gchar *text);
+ const gchar *text,
+ gboolean match_case);
void (*copy_clipboard) (EmpathyChatView *view);
};
@@ -87,7 +88,8 @@ void empathy_chat_view_find_abilities (EmpathyChatView *view,
gboolean *can_do_previous,
gboolean *can_do_next);
void empathy_chat_view_highlight (EmpathyChatView *view,
- const gchar *text);
+ const gchar *text,
+ gboolean match_case);
void empathy_chat_view_copy_clipboard (EmpathyChatView *view);
G_END_DECLS