1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 2002-2007 Imendio AB
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* 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.
*
* Authors: Mikael Hallendal <micke@imendio.com>
* Richard Hult <richard@imendio.com>
* Martyn Russell <martyn@imendio.com>
*/
#ifndef __GOSSIP_CHAT_VIEW_H__
#define __GOSSIP_CHAT_VIEW_H__
#include <gtk/gtktextview.h>
#include <gtk/gtktooltips.h>
#include <libempathy/gossip-contact.h>
#include <libempathy/gossip-message.h>
G_BEGIN_DECLS
#define GOSSIP_TYPE_CHAT_VIEW (gossip_chat_view_get_type ())
#define GOSSIP_CHAT_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOSSIP_TYPE_CHAT_VIEW, GossipChatView))
#define GOSSIP_CHAT_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GOSSIP_TYPE_CHAT_VIEW, GossipChatViewClass))
#define GOSSIP_IS_CHAT_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOSSIP_TYPE_CHAT_VIEW))
#define GOSSIP_IS_CHAT_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GOSSIP_TYPE_CHAT_VIEW))
#define GOSSIP_CHAT_VIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GOSSIP_TYPE_CHAT_VIEW, GossipChatViewClass))
typedef struct _GossipChatView GossipChatView;
typedef struct _GossipChatViewClass GossipChatViewClass;
typedef struct _GossipChatViewPriv GossipChatViewPriv;
struct _GossipChatView {
GtkTextView parent;
};
struct _GossipChatViewClass {
GtkTextViewClass parent_class;
};
typedef enum {
GOSSIP_SMILEY_NORMAL, /* :) */
GOSSIP_SMILEY_WINK, /* ;) */
GOSSIP_SMILEY_BIGEYE, /* =) */
GOSSIP_SMILEY_NOSE, /* :-) */
GOSSIP_SMILEY_CRY, /* :'( */
GOSSIP_SMILEY_SAD, /* :( */
GOSSIP_SMILEY_SCEPTICAL, /* :/ */
GOSSIP_SMILEY_BIGSMILE, /* :D */
GOSSIP_SMILEY_INDIFFERENT, /* :| */
GOSSIP_SMILEY_TOUNGE, /* :p */
GOSSIP_SMILEY_SHOCKED, /* :o */
GOSSIP_SMILEY_COOL, /* 8) */
GOSSIP_SMILEY_SORRY, /* *| */
GOSSIP_SMILEY_KISS, /* :* */
GOSSIP_SMILEY_SHUTUP, /* :# */
GOSSIP_SMILEY_YAWN, /* |O */
GOSSIP_SMILEY_CONFUSED, /* :$ */
GOSSIP_SMILEY_ANGEL, /* <) */
GOSSIP_SMILEY_OOOH, /* :x */
GOSSIP_SMILEY_LOOKAWAY, /* *) */
GOSSIP_SMILEY_BLUSH, /* *S */
GOSSIP_SMILEY_COOLBIGSMILE, /* 8D */
GOSSIP_SMILEY_ANGRY, /* :@ */
GOSSIP_SMILEY_BOSS, /* @) */
GOSSIP_SMILEY_MONKEY, /* #) */
GOSSIP_SMILEY_SILLY, /* O) */
GOSSIP_SMILEY_SICK, /* +o( */
GOSSIP_SMILEY_COUNT
} GossipSmiley;
GType gossip_chat_view_get_type (void) G_GNUC_CONST;
GossipChatView *gossip_chat_view_new (void);
void gossip_chat_view_append_message (GossipChatView *view,
GossipMessage *msg);
void gossip_chat_view_append_event (GossipChatView *view,
const gchar *str);
void gossip_chat_view_append_button (GossipChatView *view,
const gchar *message,
GtkWidget *button1,
GtkWidget *button2);
void gossip_chat_view_set_margin (GossipChatView *view,
gint margin);
void gossip_chat_view_scroll (GossipChatView *view,
gboolean allow_scrolling);
void gossip_chat_view_scroll_down (GossipChatView *view);
gboolean gossip_chat_view_get_selection_bounds (GossipChatView *view,
GtkTextIter *start,
GtkTextIter *end);
void gossip_chat_view_clear (GossipChatView *view);
gboolean gossip_chat_view_find_previous (GossipChatView *view,
const gchar *search_criteria,
gboolean new_search);
gboolean gossip_chat_view_find_next (GossipChatView *view,
const gchar *search_criteria,
gboolean new_search);
void gossip_chat_view_find_abilities (GossipChatView *view,
const gchar *search_criteria,
gboolean *can_do_previous,
gboolean *can_do_next);
void gossip_chat_view_highlight (GossipChatView *view,
const gchar *text);
void gossip_chat_view_copy_clipboard (GossipChatView *view);
gboolean gossip_chat_view_get_irc_style (GossipChatView *view);
void gossip_chat_view_set_irc_style (GossipChatView *view,
gboolean irc_style);
void gossip_chat_view_set_margin (GossipChatView *view,
gint margin);
GdkPixbuf * gossip_chat_view_get_smiley_image (GossipSmiley smiley);
const gchar * gossip_chat_view_get_smiley_text (GossipSmiley smiley);
GtkWidget * gossip_chat_view_get_smiley_menu (GCallback callback,
gpointer user_data,
GtkTooltips *tooltips);
void gossip_chat_view_set_is_group_chat (GossipChatView *view,
gboolean is_group_chat);
G_END_DECLS
#endif /* __GOSSIP_CHAT_VIEW_H__ */
|