]> git.0d.be Git - empathy.git/blobdiff - libempathy-gtk/empathy-chat.h
individual_view_drag_end: remove the auto scroll
[empathy.git] / libempathy-gtk / empathy-chat.h
index 49ce917231c3c5bdea91acf9de21f5098b6179d0..0031410d65006a931f33dbe8f4af8b9f694b7456 100644 (file)
@@ -15,8 +15,8 @@
  *
  * You should have received a copy of the GNU General Public
  * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA  02110-1301  USA
  *
  * Authors: Mikael Hallendal <micke@imendio.com>
  *          Richard Hult <richard@imendio.com>
@@ -28,7 +28,7 @@
 #ifndef __EMPATHY_CHAT_H__
 #define __EMPATHY_CHAT_H__
 
-#include <gtk/gtkbin.h>
+#include <gtk/gtk.h>
 
 #include <libempathy/empathy-contact.h>
 #include <libempathy/empathy-message.h>
@@ -50,7 +50,8 @@ typedef struct _EmpathyChatClass  EmpathyChatClass;
 typedef struct _EmpathyChatPriv   EmpathyChatPriv;
 
 struct _EmpathyChat {
-       GtkBin parent;
+       GtkBox parent;
+       EmpathyChatPriv *priv;
 
        /* Protected */
        EmpathyChatView *view;
@@ -58,7 +59,7 @@ struct _EmpathyChat {
 };
 
 struct _EmpathyChatClass {
-       GtkBinClass parent;
+       GtkBoxClass parent;
 };
 
 GType              empathy_chat_get_type             (void);
@@ -66,20 +67,39 @@ 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);
 void               empathy_chat_clear                (EmpathyChat   *chat);
 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,
+                                                     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);
+
+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);
 
 G_END_DECLS