diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-11-22 00:38:28 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-11-22 00:38:28 +0800 |
commit | a9ffb1b56c5f6c034bb81ee94750cf33acad12ab (patch) | |
tree | 53e2b16c82553fdc401006b64d8890c19fa3e4b2 /libempathy-gtk/empathy-chat.h | |
parent | d9257855a9850c731f07092bdf5309dbc7c60816 (diff) | |
download | gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar.gz gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar.bz2 gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar.lz gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar.xz gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.tar.zst gsoc2013-empathy-a9ffb1b56c5f6c034bb81ee94750cf33acad12ab.zip |
Add nick completion for MUCs. Fixes bug #453418.
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.
svn path=/trunk/; revision=441
Diffstat (limited to 'libempathy-gtk/empathy-chat.h')
-rw-r--r-- | libempathy-gtk/empathy-chat.h | 14 |
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); |