aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-chat.h
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-11-22 00:38:28 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2007-11-22 00:38:28 +0800
commitbc841599f7a64b0067ef86bd2ee0f1c9055b8fdf (patch)
tree53e2b16c82553fdc401006b64d8890c19fa3e4b2 /libempathy-gtk/empathy-chat.h
parent07ae4c33e3d1afa3553682371c41ef0fd106bfc2 (diff)
downloadgsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar.gz
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar.bz2
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar.lz
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar.xz
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.tar.zst
gsoc2013-empathy-bc841599f7a64b0067ef86bd2ee0f1c9055b8fdf.zip
2007-11-21 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-group-chat.c: * libempathy-gtk/empathy-chat.c: * libempathy-gtk/empathy-chat.h: Add nick completion for MUCs. Fixes bug #453418. git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@441 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk/empathy-chat.h')
-rw-r--r--libempathy-gtk/empathy-chat.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/libempathy-gtk/empathy-chat.h b/libempathy-gtk/empathy-chat.h
index 8eedf64ef..c030dd292 100644
--- a/libempathy-gtk/empathy-chat.h
+++ b/libempathy-gtk/empathy-chat.h
@@ -67,13 +67,15 @@ struct _EmpathyChatClass {
GObjectClass parent;
/* VTable */
- const gchar * (*get_name) (EmpathyChat *chat);
- gchar * (*get_tooltip) (EmpathyChat *chat);
- const gchar * (*get_status_icon_name)(EmpathyChat *chat);
- GtkWidget * (*get_widget) (EmpathyChat *chat);
- gboolean (*is_group_chat) (EmpathyChat *chat);
- void (*set_tp_chat) (EmpathyChat *chat,
+ const gchar * (*get_name) (EmpathyChat *chat);
+ gchar * (*get_tooltip) (EmpathyChat *chat);
+ const gchar * (*get_status_icon_name)(EmpathyChat *chat);
+ GtkWidget * (*get_widget) (EmpathyChat *chat);
+ gboolean (*is_group_chat) (EmpathyChat *chat);
+ void (*set_tp_chat) (EmpathyChat *chat,
EmpathyTpChat *tp_chat);
+ gboolean (*key_press_event) (EmpathyChat *chat,
+ GdkEventKey *event);
};
GType empathy_chat_get_type (void);