]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat.h
Updated Kannada translation
[empathy.git] / libempathy-gtk / empathy-chat.h
index 12fac9617910f4e1a9a0406483fc1ab25262bc61..c73f5c1f96a5d13d39404556a10f3d0b4ed047e7 100644 (file)
 
 #include <gtk/gtk.h>
 
-#include <libempathy/empathy-contact.h>
-#include <libempathy/empathy-message.h>
-#include <libempathy/empathy-tp-chat.h>
-
-#include "empathy-chat-view.h"
+#include "empathy-contact.h"
+#include "empathy-theme-adium.h"
+#include "empathy-tp-chat.h"
+#include "empathy-smiley-manager.h"
 
 G_BEGIN_DECLS
 
@@ -47,18 +46,19 @@ G_BEGIN_DECLS
 
 typedef struct _EmpathyChat       EmpathyChat;
 typedef struct _EmpathyChatClass  EmpathyChatClass;
+typedef struct _EmpathyChatPriv   EmpathyChatPriv;
 
 struct _EmpathyChat {
-       GtkBin parent;
-       gpointer priv;
+       GtkBox parent;
+       EmpathyChatPriv *priv;
 
        /* Protected */
-       EmpathyChatView *view;
+       EmpathyThemeAdium *view;
        GtkWidget       *input_text_view;
 };
 
 struct _EmpathyChatClass {
-       GtkBinClass parent;
+       GtkBoxClass parent;
 };
 
 GType              empathy_chat_get_type             (void);
@@ -66,9 +66,9 @@ EmpathyChat *      empathy_chat_new                  (EmpathyTpChat *tp_chat);
 EmpathyTpChat *    empathy_chat_get_tp_chat          (EmpathyChat   *chat);
 void               empathy_chat_set_tp_chat          (EmpathyChat   *chat,
                                                      EmpathyTpChat *tp_chat);
-McAccount *        empathy_chat_get_account          (EmpathyChat   *chat);
+TpAccount *        empathy_chat_get_account          (EmpathyChat   *chat);
 const gchar *      empathy_chat_get_id               (EmpathyChat   *chat);
-const gchar *      empathy_chat_get_name             (EmpathyChat   *chat);
+gchar *            empathy_chat_dup_name             (EmpathyChat   *chat);
 const gchar *      empathy_chat_get_subject          (EmpathyChat   *chat);
 EmpathyContact *   empathy_chat_get_remote_contact   (EmpathyChat   *chat);
 GtkWidget *        empathy_chat_get_contact_menu     (EmpathyChat   *chat);
@@ -77,11 +77,31 @@ void               empathy_chat_scroll_down          (EmpathyChat   *chat);
 void               empathy_chat_cut                  (EmpathyChat   *chat);
 void               empathy_chat_copy                 (EmpathyChat   *chat);
 void               empathy_chat_paste                (EmpathyChat   *chat);
+void               empathy_chat_find                 (EmpathyChat   *chat);
 void               empathy_chat_correct_word         (EmpathyChat   *chat,
                                                      GtkTextIter   *start,
                                                      GtkTextIter   *end,
                                                      const gchar   *new_word);
+void               empathy_chat_join_muc             (EmpathyChat   *chat,
+                                                     const gchar   *room);
 gboolean           empathy_chat_is_room              (EmpathyChat   *chat);
+void               empathy_chat_set_show_contacts    (EmpathyChat *chat,
+                                                      gboolean     show);
+guint              empathy_chat_get_nb_unread_messages (EmpathyChat   *chat);
+gboolean           empathy_chat_is_highlighted (EmpathyChat *chat);
+void               empathy_chat_messages_read        (EmpathyChat *self);
+
+gboolean           empathy_chat_is_composing (EmpathyChat *chat);
+
+gboolean           empathy_chat_is_sms_channel       (EmpathyChat *self);
+guint              empathy_chat_get_n_messages_sending (EmpathyChat *self);
+
+gchar *            empathy_chat_dup_text             (EmpathyChat *self);
+void               empathy_chat_set_text             (EmpathyChat *self,
+                                                      const gchar *text);
+void               empathy_chat_insert_smiley        (GtkTextBuffer *buffer,
+                                                      EmpathySmiley *smiley);
+
 G_END_DECLS
 
 #endif /* __EMPATHY_CHAT_H__ */