aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat-text-view.h
diff options
context:
space:
mode:
authorFelix Kaser <f.kaser@gmx.net>2010-04-07 19:19:08 +0800
committerFelix Kaser <f.kaser@gmx.net>2010-04-08 19:24:40 +0800
commit77fd33616f44a907342651a5a2d7e326ad5ccf55 (patch)
tree3cb092e8b291d166a0044325f409f11f687ed6d6 /libempathy-gtk/empathy-chat-text-view.h
parentc92e1b6631677972dbd25b1164d00ea983340fee (diff)
downloadgsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar.gz
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar.bz2
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar.lz
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar.xz
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.tar.zst
gsoc2013-empathy-77fd33616f44a907342651a5a2d7e326ad5ccf55.zip
group messages only if the delay is short
messages from the same sender should not be grouped when the delay between two messages is too long (5min). fixes bug #604475
Diffstat (limited to 'libempathy-gtk/empathy-chat-text-view.h')
-rw-r--r--libempathy-gtk/empathy-chat-text-view.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/libempathy-gtk/empathy-chat-text-view.h b/libempathy-gtk/empathy-chat-text-view.h
index 0180f21d1..7ee7ba8a2 100644
--- a/libempathy-gtk/empathy-chat-text-view.h
+++ b/libempathy-gtk/empathy-chat-text-view.h
@@ -68,18 +68,19 @@ struct _EmpathyChatTextViewClass {
#define EMPATHY_CHAT_TEXT_VIEW_TAG_EVENT "event"
#define EMPATHY_CHAT_TEXT_VIEW_TAG_LINK "link"
-GType empathy_chat_text_view_get_type (void) G_GNUC_CONST;
-EmpathyContact * empathy_chat_text_view_get_last_contact (EmpathyChatTextView *view);
-void empathy_chat_text_view_set_only_if_date (EmpathyChatTextView *view,
- gboolean only_if_date);
-void empathy_chat_text_view_append_body (EmpathyChatTextView *view,
- const gchar *body,
- const gchar *tag);
-void empathy_chat_text_view_append_spacing (EmpathyChatTextView *view);
-GtkTextTag * empathy_chat_text_view_tag_set (EmpathyChatTextView *view,
- const gchar *tag_name,
- const gchar *first_property_name,
- ...);
+GType empathy_chat_text_view_get_type (void) G_GNUC_CONST;
+EmpathyContact * empathy_chat_text_view_get_last_contact (EmpathyChatTextView *view);
+time_t empathy_chat_text_view_get_last_timestamp (EmpathyChatTextView *view);
+void empathy_chat_text_view_set_only_if_date (EmpathyChatTextView *view,
+ gboolean only_if_date);
+void empathy_chat_text_view_append_body (EmpathyChatTextView *view,
+ const gchar *body,
+ const gchar *tag);
+void empathy_chat_text_view_append_spacing (EmpathyChatTextView *view);
+GtkTextTag * empathy_chat_text_view_tag_set (EmpathyChatTextView *view,
+ const gchar *tag_name,
+ const gchar *first_property_name,
+ ...);
G_END_DECLS