]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-chat-view.h
"interactive" property on EmpathyContactListView to enable/disable contect
[empathy.git] / libempathy-gtk / empathy-chat-view.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2002-2007 Imendio AB
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  * 
20  * Authors: Mikael Hallendal <micke@imendio.com>
21  *          Richard Hult <richard@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  */
24
25 #ifndef __EMPATHY_CHAT_VIEW_H__
26 #define __EMPATHY_CHAT_VIEW_H__
27
28 #include <gtk/gtktextview.h>
29 #include <gtk/gtktooltips.h>
30
31 #include <libempathy/empathy-contact.h>
32 #include <libempathy/empathy-message.h>
33
34 G_BEGIN_DECLS
35
36 #define EMPATHY_TYPE_CHAT_VIEW         (empathy_chat_view_get_type ())
37 #define EMPATHY_CHAT_VIEW(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_CHAT_VIEW, EmpathyChatView))
38 #define EMPATHY_CHAT_VIEW_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_CHAT_VIEW, EmpathyChatViewClass))
39 #define EMPATHY_IS_CHAT_VIEW(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_CHAT_VIEW))
40 #define EMPATHY_IS_CHAT_VIEW_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_CHAT_VIEW))
41 #define EMPATHY_CHAT_VIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_CHAT_VIEW, EmpathyChatViewClass))
42
43 typedef struct _EmpathyChatView      EmpathyChatView;
44 typedef struct _EmpathyChatViewClass EmpathyChatViewClass;
45 typedef struct _EmpathyChatViewPriv  EmpathyChatViewPriv;
46
47 struct _EmpathyChatView {
48         GtkTextView parent;
49 };
50
51 struct _EmpathyChatViewClass {
52         GtkTextViewClass parent_class;
53 };
54
55 GType            empathy_chat_view_get_type             (void) G_GNUC_CONST;
56 EmpathyChatView *empathy_chat_view_new                  (void);
57 void             empathy_chat_view_append_message       (EmpathyChatView *view,
58                                                          EmpathyMessage  *msg);
59 void             empathy_chat_view_append_event         (EmpathyChatView *view,
60                                                          const gchar     *str);
61 void             empathy_chat_view_append_button        (EmpathyChatView *view,
62                                                          const gchar     *message,
63                                                          GtkWidget       *button1,
64                                                          GtkWidget       *button2);
65 void             empathy_chat_view_set_margin           (EmpathyChatView *view,
66                                                          gint             margin);
67 void             empathy_chat_view_scroll               (EmpathyChatView *view,
68                                                          gboolean         allow_scrolling);
69 void             empathy_chat_view_scroll_down          (EmpathyChatView *view);
70 gboolean         empathy_chat_view_get_selection_bounds (EmpathyChatView *view,
71                                                          GtkTextIter     *start,
72                                                          GtkTextIter     *end);
73 void             empathy_chat_view_clear                (EmpathyChatView *view);
74 gboolean         empathy_chat_view_find_previous        (EmpathyChatView *view,
75                                                          const gchar     *search_criteria,
76                                                          gboolean         new_search);
77 gboolean         empathy_chat_view_find_next            (EmpathyChatView *view,
78                                                          const gchar     *search_criteria,
79                                                          gboolean         new_search);
80 void             empathy_chat_view_find_abilities       (EmpathyChatView *view,
81                                                          const gchar     *search_criteria,
82                                                          gboolean        *can_do_previous,
83                                                          gboolean        *can_do_next);
84 void             empathy_chat_view_highlight            (EmpathyChatView *view,
85                                                          const gchar     *text);
86 void             empathy_chat_view_copy_clipboard       (EmpathyChatView *view);
87 gboolean         empathy_chat_view_get_irc_style        (EmpathyChatView *view);
88 void             empathy_chat_view_set_irc_style        (EmpathyChatView *view,
89                                                          gboolean         irc_style);
90 void             empathy_chat_view_set_margin           (EmpathyChatView *view,
91                                                          gint             margin);
92 GtkWidget *      empathy_chat_view_get_smiley_menu      (GCallback        callback,
93                                                          gpointer         user_data,
94                                                          GtkTooltips     *tooltips);
95 void             empathy_chat_view_set_is_group_chat    (EmpathyChatView *view,
96                                                          gboolean         is_group_chat);
97
98 G_END_DECLS
99
100 #endif /* __EMPATHY_CHAT_VIEW_H__ */