]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat.h
Don't forget to show the contact widget in some places
[empathy.git] / libempathy-gtk / empathy-chat.h
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.
5  *
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.
10  *
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.
15  *
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., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *
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>
26  */
27
28 #ifndef __EMPATHY_CHAT_H__
29 #define __EMPATHY_CHAT_H__
30
31 #include <gtk/gtkbin.h>
32
33 #include <libempathy/empathy-contact.h>
34 #include <libempathy/empathy-message.h>
35 #include <libempathy/empathy-tp-chat.h>
36
37 #include "empathy-chat-view.h"
38
39 G_BEGIN_DECLS
40
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))
47
48 typedef struct _EmpathyChat       EmpathyChat;
49 typedef struct _EmpathyChatClass  EmpathyChatClass;
50
51 struct _EmpathyChat {
52         GtkBin parent;
53         gpointer priv;
54
55         /* Protected */
56         EmpathyChatView *view;
57         GtkWidget       *input_text_view;
58 };
59
60 struct _EmpathyChatClass {
61         GtkBinClass parent;
62 };
63
64 GType              empathy_chat_get_type             (void);
65 EmpathyChat *      empathy_chat_new                  (EmpathyTpChat *tp_chat);
66 EmpathyTpChat *    empathy_chat_get_tp_chat          (EmpathyChat   *chat);
67 void               empathy_chat_set_tp_chat          (EmpathyChat   *chat,
68                                                       EmpathyTpChat *tp_chat);
69 McAccount *        empathy_chat_get_account          (EmpathyChat   *chat);
70 const gchar *      empathy_chat_get_id               (EmpathyChat   *chat);
71 const gchar *      empathy_chat_get_name             (EmpathyChat   *chat);
72 const gchar *      empathy_chat_get_subject          (EmpathyChat   *chat);
73 EmpathyContact *   empathy_chat_get_remote_contact   (EmpathyChat   *chat);
74 GtkWidget *        empathy_chat_get_contact_menu     (EmpathyChat   *chat);
75 void               empathy_chat_clear                (EmpathyChat   *chat);
76 void               empathy_chat_scroll_down          (EmpathyChat   *chat);
77 void               empathy_chat_cut                  (EmpathyChat   *chat);
78 void               empathy_chat_copy                 (EmpathyChat   *chat);
79 void               empathy_chat_paste                (EmpathyChat   *chat);
80 void               empathy_chat_correct_word         (EmpathyChat   *chat,
81                                                       GtkTextIter   *start,
82                                                       GtkTextIter   *end,
83                                                       const gchar   *new_word);
84 gboolean           empathy_chat_is_room              (EmpathyChat   *chat);
85 G_END_DECLS
86
87 #endif /* __EMPATHY_CHAT_H__ */