Merge branch 'trivia'
[empathy-mirror.git] / libempathy-gtk / empathy-chat.h
blob596b83f5df2a307b6175172b184dc8d29d67d4b0
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2002-2007 Imendio AB
4 * Copyright (C) 2007-2008 Collabora Ltd.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19 * Boston, MA 02110-1301 USA
21 * Authors: Mikael Hallendal <micke@imendio.com>
22 * Richard Hult <richard@imendio.com>
23 * Martyn Russell <martyn@imendio.com>
24 * Geert-Jan Van den Bogaerde <geertjan@gnome.org>
25 * Xavier Claessens <xclaesse@gmail.com>
28 #ifndef __EMPATHY_CHAT_H__
29 #define __EMPATHY_CHAT_H__
31 #include <gtk/gtk.h>
33 #include <libempathy/empathy-contact.h>
34 #include <libempathy/empathy-message.h>
35 #include <libempathy/empathy-tp-chat.h>
37 #include "empathy-chat-view.h"
39 G_BEGIN_DECLS
41 #define EMPATHY_TYPE_CHAT (empathy_chat_get_type ())
42 #define EMPATHY_CHAT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CHAT, EmpathyChat))
43 #define EMPATHY_CHAT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_CHAT, EmpathyChatClass))
44 #define EMPATHY_IS_CHAT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CHAT))
45 #define EMPATHY_IS_CHAT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CHAT))
46 #define EMPATHY_CHAT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CHAT, EmpathyChatClass))
48 typedef struct _EmpathyChat EmpathyChat;
49 typedef struct _EmpathyChatClass EmpathyChatClass;
50 typedef struct _EmpathyChatPriv EmpathyChatPriv;
52 struct _EmpathyChat {
53 GtkBin parent;
54 EmpathyChatPriv *priv;
56 /* Protected */
57 EmpathyChatView *view;
58 GtkWidget *input_text_view;
61 struct _EmpathyChatClass {
62 GtkBinClass parent;
65 GType empathy_chat_get_type (void);
66 EmpathyChat * empathy_chat_new (EmpathyTpChat *tp_chat);
67 EmpathyTpChat * empathy_chat_get_tp_chat (EmpathyChat *chat);
68 void empathy_chat_set_tp_chat (EmpathyChat *chat,
69 EmpathyTpChat *tp_chat);
70 TpAccount * empathy_chat_get_account (EmpathyChat *chat);
71 const gchar * empathy_chat_get_id (EmpathyChat *chat);
72 const gchar * empathy_chat_get_name (EmpathyChat *chat);
73 const gchar * empathy_chat_get_subject (EmpathyChat *chat);
74 EmpathyContact * empathy_chat_get_remote_contact (EmpathyChat *chat);
75 GtkWidget * empathy_chat_get_contact_menu (EmpathyChat *chat);
76 void empathy_chat_clear (EmpathyChat *chat);
77 void empathy_chat_scroll_down (EmpathyChat *chat);
78 void empathy_chat_cut (EmpathyChat *chat);
79 void empathy_chat_copy (EmpathyChat *chat);
80 void empathy_chat_paste (EmpathyChat *chat);
81 void empathy_chat_find (EmpathyChat *chat);
82 void empathy_chat_correct_word (EmpathyChat *chat,
83 GtkTextIter *start,
84 GtkTextIter *end,
85 const gchar *new_word);
86 gboolean empathy_chat_is_room (EmpathyChat *chat);
87 void empathy_chat_set_show_contacts (EmpathyChat *chat,
88 gboolean show);
89 guint empathy_chat_get_nb_unread_messages (EmpathyChat *chat);
91 void empathy_chat_messages_read (EmpathyChat *self);
92 G_END_DECLS
94 #endif /* __EMPATHY_CHAT_H__ */