X-Git-Url: https://git.0d.be/?p=empathy.git;a=blobdiff_plain;f=src%2Fempathy-chat-window.h;h=2e64b680300714746e685f988c09e9061053ac02;hp=2041634aaa63f508edd1d970ba69962da8faa105;hb=15aa6a83ff96fad9f959762f2b57646f9e735cd1;hpb=31ec75a03a132770268cf02d98f2b477747bb54f diff --git a/src/empathy-chat-window.h b/src/empathy-chat-window.h index 2041634a..2e64b680 100644 --- a/src/empathy-chat-window.h +++ b/src/empathy-chat-window.h @@ -27,12 +27,11 @@ #ifndef __EMPATHY_CHAT_WINDOW_H__ #define __EMPATHY_CHAT_WINDOW_H__ -#include #include - #include -#include +#include "empathy-chat.h" +#include "empathy-individual-manager.h" G_BEGIN_DECLS @@ -64,13 +63,13 @@ typedef struct _EmpathyChatWindowPriv EmpathyChatWindowPriv; struct _EmpathyChatWindow { - GtkWindow parent; + GtkBin parent; EmpathyChatWindowPriv *priv; }; struct _EmpathyChatWindowClass { - GtkWindowClass parent_class; + GtkBinClass parent_class; }; GType empathy_chat_window_get_type (void); @@ -82,9 +81,14 @@ EmpathyChat * empathy_chat_window_find_chat (TpAccount *account, EmpathyChatWindow * empathy_chat_window_present_chat (EmpathyChat *chat, gint64 timestamp); +EmpathyChatWindow * empathy_chat_window_new (void); + EmpathyIndividualManager * empathy_chat_window_get_individual_manager ( EmpathyChatWindow *self); +void empathy_chat_window_next_tab (EmpathyChatWindow *self); +void empathy_chat_window_prev_tab (EmpathyChatWindow *self); + G_END_DECLS #endif