]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat.h
Add empathy_chat_new and don't use empathy_group/private_* in empathy.c
[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 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 <glib-object.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 #include "empathy-spell.h" 
39
40 G_BEGIN_DECLS
41
42 #define EMPATHY_TYPE_CHAT         (empathy_chat_get_type ())
43 #define EMPATHY_CHAT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CHAT, EmpathyChat))
44 #define EMPATHY_CHAT_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_CHAT, EmpathyChatClass))
45 #define EMPATHY_IS_CHAT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CHAT))
46 #define EMPATHY_IS_CHAT_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CHAT))
47 #define EMPATHY_CHAT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CHAT, EmpathyChatClass))
48
49 typedef struct _EmpathyChat       EmpathyChat;
50 typedef struct _EmpathyChatClass  EmpathyChatClass;
51 typedef struct _EmpathyChatPriv   EmpathyChatPriv;
52
53 struct _EmpathyChat {
54         GObject          parent;
55
56         /* Protected */
57         EmpathyChatView *view;
58         GtkWidget       *input_text_view;
59         gboolean         block_events;
60 };
61
62 struct _EmpathyChatClass {
63         GObjectClass parent;
64 };
65
66 GType              empathy_chat_get_type              (void);
67 EmpathyChat *      empathy_chat_new                   (EmpathyTpChat     *tp_chat);
68 EmpathyChatView *  empathy_chat_get_view              (EmpathyChat       *chat);
69 void               empathy_chat_clear                 (EmpathyChat       *chat);
70 void               empathy_chat_scroll_down           (EmpathyChat       *chat);
71 void               empathy_chat_cut                   (EmpathyChat       *chat);
72 void               empathy_chat_copy                  (EmpathyChat       *chat);
73 void               empathy_chat_paste                 (EmpathyChat       *chat);
74 const gchar *      empathy_chat_get_name              (EmpathyChat       *chat);
75 const gchar *      empathy_chat_get_tooltip           (EmpathyChat       *chat);
76 const gchar *      empathy_chat_get_status_icon_name  (EmpathyChat       *chat);
77 GtkWidget *        empathy_chat_get_widget            (EmpathyChat       *chat);
78 gboolean           empathy_chat_is_connected          (EmpathyChat       *chat);
79 void               empathy_chat_save_geometry         (EmpathyChat       *chat,
80                                                        gint               x,
81                                                        gint               y,
82                                                        gint               w,
83                                                        gint               h);
84 void               empathy_chat_load_geometry         (EmpathyChat       *chat,
85                                                        gint              *x,
86                                                        gint              *y,
87                                                        gint              *w,
88                                                        gint              *h);
89 void               empathy_chat_set_tp_chat           (EmpathyChat       *chat,
90                                                        EmpathyTpChat     *tp_chat);
91 const gchar *      empathy_chat_get_id                (EmpathyChat       *chat);
92 McAccount *        empathy_chat_get_account           (EmpathyChat       *chat);
93
94 /* For spell checker dialog to correct the misspelled word. */
95 gboolean           empathy_chat_get_is_command        (const gchar      *str);
96 void               empathy_chat_correct_word          (EmpathyChat       *chat,
97                                                        GtkTextIter       start,
98                                                        GtkTextIter       end,
99                                                        const gchar      *new_word);
100 gboolean           empathy_chat_should_play_sound     (EmpathyChat       *chat);
101 gboolean           empathy_chat_should_highlight_nick (EmpathyMessage    *message);
102
103 G_END_DECLS
104
105 #endif /* __EMPATHY_CHAT_H__ */