Mercurial > pidgin
annotate src/conversation.h @ 14081:dee8540be099
[gaim-migrate @ 16702]
Remove Napster from the description in this file
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 11 Aug 2006 06:38:37 +0000 |
parents | df0dba522147 |
children |
rev | line source |
---|---|
4359 | 1 /** |
2 * @file conversation.h Conversation API | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
4890
diff
changeset
|
3 * @ingroup core |
4359 | 4 * |
5 * gaim | |
6 * | |
8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
9 * source distribution. | |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
10 * |
4359 | 11 * This program is free software; you can redistribute it and/or modify |
12 * it under the terms of the GNU General Public License as published by | |
13 * the Free Software Foundation; either version 2 of the License, or | |
14 * (at your option) any later version. | |
15 * | |
16 * This program is distributed in the hope that it will be useful, | |
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 * GNU General Public License for more details. | |
20 * | |
21 * You should have received a copy of the GNU General Public License | |
22 * along with this program; if not, write to the Free Software | |
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
6488
e5e8d21bd4d8
[gaim-migrate @ 7002]
Christian Hammond <chipx86@chipx86.com>
parents:
6485
diff
changeset
|
24 * |
6605
943b03bcecf5
[gaim-migrate @ 7129]
Christian Hammond <chipx86@chipx86.com>
parents:
6585
diff
changeset
|
25 * @see @ref conversation-signals |
4359 | 26 */ |
4890
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
27 #ifndef _GAIM_CONVERSATION_H_ |
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
28 #define _GAIM_CONVERSATION_H_ |
4359 | 29 |
30 /**************************************************************************/ | |
31 /** Data Structures */ | |
32 /**************************************************************************/ | |
33 | |
11581 | 34 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
35 typedef struct _GaimConversationUiOps GaimConversationUiOps; |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
36 typedef struct _GaimConversation GaimConversation; |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
37 typedef struct _GaimConvIm GaimConvIm; |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
38 typedef struct _GaimConvChat GaimConvChat; |
9554 | 39 typedef struct _GaimConvChatBuddy GaimConvChatBuddy; |
4359 | 40 |
41 /** | |
42 * A type of conversation. | |
43 */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
44 typedef enum |
4359 | 45 { |
11338 | 46 GAIM_CONV_TYPE_UNKNOWN = 0, /**< Unknown conversation type. */ |
47 GAIM_CONV_TYPE_IM, /**< Instant Message. */ | |
48 GAIM_CONV_TYPE_CHAT, /**< Chat room. */ | |
49 GAIM_CONV_TYPE_MISC, /**< A misc. conversation. */ | |
50 GAIM_CONV_TYPE_ANY /**< Any type of conversation. */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
51 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
52 } GaimConversationType; |
4359 | 53 |
54 /** | |
55 * Conversation update type. | |
56 */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
57 typedef enum |
4359 | 58 { |
59 GAIM_CONV_UPDATE_ADD = 0, /**< The buddy associated with the conversation | |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
60 was added. */ |
4359 | 61 GAIM_CONV_UPDATE_REMOVE, /**< The buddy associated with the conversation |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
62 was removed. */ |
4491 | 63 GAIM_CONV_UPDATE_ACCOUNT, /**< The gaim_account was changed. */ |
4359 | 64 GAIM_CONV_UPDATE_TYPING, /**< The typing state was updated. */ |
65 GAIM_CONV_UPDATE_UNSEEN, /**< The unseen state was updated. */ | |
66 GAIM_CONV_UPDATE_LOGGING, /**< Logging for this conversation was | |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
67 enabled or disabled. */ |
4359 | 68 GAIM_CONV_UPDATE_TOPIC, /**< The topic for a chat was updated. */ |
69 /* | |
70 * XXX These need to go when we implement a more generic core/UI event | |
71 * system. | |
72 */ | |
4378
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
73 GAIM_CONV_ACCOUNT_ONLINE, /**< One of the user's accounts went online. */ |
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
74 GAIM_CONV_ACCOUNT_OFFLINE, /**< One of the user's accounts went offline. */ |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
75 GAIM_CONV_UPDATE_AWAY, /**< The other user went away. */ |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
76 GAIM_CONV_UPDATE_ICON, /**< The other user's buddy icon changed. */ |
8256
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
77 GAIM_CONV_UPDATE_TITLE, |
10665 | 78 GAIM_CONV_UPDATE_CHATLEFT, |
79 | |
80 GAIM_CONV_UPDATE_FEATURES, /**< The features for a chat have changed */ | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
81 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
82 } GaimConvUpdateType; |
4359 | 83 |
84 /** | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
85 * The typing state of a user. |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
86 */ |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
87 typedef enum |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
88 { |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
89 GAIM_NOT_TYPING = 0, /**< Not typing. */ |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
90 GAIM_TYPING, /**< Currently typing. */ |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
91 GAIM_TYPED /**< Stopped typing momentarily. */ |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
92 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
93 } GaimTypingState; |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
94 |
6621 | 95 /** |
96 * Flags applicable to a message. Most will have send, recv or system. | |
97 */ | |
98 typedef enum | |
99 { | |
13476
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
100 GAIM_MESSAGE_SEND = 0x0001, /**< Outgoing message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
101 GAIM_MESSAGE_RECV = 0x0002, /**< Incoming message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
102 GAIM_MESSAGE_SYSTEM = 0x0004, /**< System message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
103 GAIM_MESSAGE_AUTO_RESP = 0x0008, /**< Auto response. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
104 GAIM_MESSAGE_ACTIVE_ONLY = 0x0010, /**< Hint to the UI that this |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
105 message should not be |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
106 shown in conversations |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
107 which are only open for |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
108 internal UI purposes |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
109 (e.g. for contact-aware |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
110 conversions). */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
111 GAIM_MESSAGE_NICK = 0x0020, /**< Contains your nick. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
112 GAIM_MESSAGE_NO_LOG = 0x0040, /**< Do not log. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
113 GAIM_MESSAGE_WHISPER = 0x0080, /**< Whispered message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
114 GAIM_MESSAGE_ERROR = 0x0200, /**< Error message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
115 GAIM_MESSAGE_DELAYED = 0x0400, /**< Delayed message. */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
116 GAIM_MESSAGE_RAW = 0x0800, /**< "Raw" message - don't |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
117 apply formatting */ |
465c368366f8
[gaim-migrate @ 15852]
Richard Laager <rlaager@wiktel.com>
parents:
12867
diff
changeset
|
118 GAIM_MESSAGE_IMAGES = 0x1000 /**< Message contains images */ |
10008 | 119 |
6621 | 120 } GaimMessageFlags; |
121 | |
9554 | 122 /** |
123 * Flags applicable to users in Chats. | |
124 */ | |
125 typedef enum | |
126 { | |
127 GAIM_CBFLAGS_NONE = 0x0000, /**< No flags */ | |
128 GAIM_CBFLAGS_VOICE = 0x0001, /**< Voiced user or "Participant" */ | |
129 GAIM_CBFLAGS_HALFOP = 0x0002, /**< Half-op */ | |
130 GAIM_CBFLAGS_OP = 0x0004, /**< Channel Op or Moderator */ | |
10665 | 131 GAIM_CBFLAGS_FOUNDER = 0x0008, /**< Channel Founder */ |
132 GAIM_CBFLAGS_TYPING = 0x0010, /**< Currently typing */ | |
11581 | 133 |
9554 | 134 } GaimConvChatBuddyFlags; |
135 | |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
136 #include "account.h" |
9718 | 137 #include "buddyicon.h" |
7431 | 138 #include "log.h" |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
139 #include "server.h" |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
140 |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
141 /** |
4359 | 142 * Conversation operations and events. |
143 * | |
144 * Any UI representing a conversation must assign a filled-out | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
145 * GaimConversationUiOps structure to the GaimConversation. |
4359 | 146 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
147 struct _GaimConversationUiOps |
4359 | 148 { |
11581 | 149 void (*create_conversation)(GaimConversation *conv); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
150 void (*destroy_conversation)(GaimConversation *conv); |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
151 void (*write_chat)(GaimConversation *conv, const char *who, |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
152 const char *message, GaimMessageFlags flags, |
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
153 time_t mtime); |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
154 void (*write_im)(GaimConversation *conv, const char *who, |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
155 const char *message, GaimMessageFlags flags, |
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
156 time_t mtime); |
11454
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
157 void (*write_conv)(GaimConversation *conv, const char *name, const char *alias, |
8155
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
158 const char *message, GaimMessageFlags flags, |
77d1252b3803
[gaim-migrate @ 8867]
Christian Hammond <chipx86@chipx86.com>
parents:
8046
diff
changeset
|
159 time_t mtime); |
4359 | 160 |
13965 | 161 void (*chat_add_users)(GaimConversation *conv, GList *cbuddies, gboolean new_arrivals); |
162 | |
11485
16b0da1f376f
[gaim-migrate @ 13727]
Richard Laager <rlaager@wiktel.com>
parents:
11454
diff
changeset
|
163 void (*chat_rename_user)(GaimConversation *conv, const char *old_name, |
16b0da1f376f
[gaim-migrate @ 13727]
Richard Laager <rlaager@wiktel.com>
parents:
11454
diff
changeset
|
164 const char *new_name, const char *new_alias); |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
165 void (*chat_remove_users)(GaimConversation *conv, GList *users); |
9554 | 166 void (*chat_update_user)(GaimConversation *conv, const char *user); |
4359 | 167 |
12624
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
168 void (*present)(GaimConversation *conv); |
4359 | 169 |
9260
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
170 gboolean (*has_focus)(GaimConversation *conv); |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
171 |
10526 | 172 /* Custom Smileys */ |
12618
204bd8fac61f
[gaim-migrate @ 14954]
Richard Laager <rlaager@wiktel.com>
parents:
12463
diff
changeset
|
173 gboolean (*custom_smiley_add)(GaimConversation *conv, const char *smile, gboolean remote); |
10526 | 174 void (*custom_smiley_write)(GaimConversation *conv, const char *smile, |
11137 | 175 const guchar *data, gsize size); |
10526 | 176 void (*custom_smiley_close)(GaimConversation *conv, const char *smile); |
4359 | 177 }; |
178 | |
179 /** | |
180 * Data specific to Instant Messages. | |
181 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
182 struct _GaimConvIm |
4359 | 183 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
184 GaimConversation *conv; /**< The parent conversation. */ |
4359 | 185 |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
186 GaimTypingState typing_state; /**< The current typing state. */ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
187 guint typing_timeout; /**< The typing timer handle. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
188 time_t type_again; /**< The type again time. */ |
13842 | 189 guint send_typed_timeout; /**< The type again timer handle. */ |
4359 | 190 |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
191 GaimBuddyIcon *icon; /**< The buddy icon. */ |
4359 | 192 }; |
193 | |
194 /** | |
195 * Data specific to Chats. | |
196 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
197 struct _GaimConvChat |
4359 | 198 { |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
199 GaimConversation *conv; /**< The parent conversation. */ |
4359 | 200 |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
201 GList *in_room; /**< The users in the room. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
202 GList *ignored; /**< Ignored users. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
203 char *who; /**< The person who set the topic. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
204 char *topic; /**< The topic. */ |
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
205 int id; /**< The chat ID. */ |
8158 | 206 char *nick; /**< Your nick in this chat. */ |
8256
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
207 |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
208 gboolean left; /**< We left the chat and kept the window open */ |
4359 | 209 }; |
210 | |
211 /** | |
9554 | 212 * Data for "Chat Buddies" |
213 */ | |
214 struct _GaimConvChatBuddy | |
215 { | |
216 char *name; /**< The name */ | |
13965 | 217 char *alias; /**< The alias */ |
218 char *alias_key; /**< The alias key */ | |
219 gboolean buddy; /**< ChatBuddy is on the blist */ | |
9554 | 220 GaimConvChatBuddyFlags flags; /**< Flags (ops, voice etc.) */ |
221 }; | |
222 | |
223 /** | |
4359 | 224 * A core representation of a conversation between two or more people. |
225 * | |
11581 | 226 * The conversation can be an IM or a chat. |
4359 | 227 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
228 struct _GaimConversation |
4359 | 229 { |
230 GaimConversationType type; /**< The type of conversation. */ | |
231 | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
232 GaimAccount *account; /**< The user using this conversation. */ |
4359 | 233 |
234 | |
235 char *name; /**< The name of the conversation. */ | |
236 char *title; /**< The window title. */ | |
237 | |
238 gboolean logging; /**< The status of logging. */ | |
8158 | 239 |
11454
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
240 GList *logs; /**< This conversation's logs */ |
8158 | 241 |
4359 | 242 union |
243 { | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
244 GaimConvIm *im; /**< IM-specific data. */ |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
245 GaimConvChat *chat; /**< Chat-specific data. */ |
4378
194507c83612
[gaim-migrate @ 4644]
Christian Hammond <chipx86@chipx86.com>
parents:
4359
diff
changeset
|
246 void *misc; /**< Misc. data. */ |
4359 | 247 |
248 } u; | |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
249 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
250 GaimConversationUiOps *ui_ops; /**< UI-specific operations. */ |
4465
6e37eb000b7a
[gaim-migrate @ 4740]
Christian Hammond <chipx86@chipx86.com>
parents:
4378
diff
changeset
|
251 void *ui_data; /**< UI-specific data. */ |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
252 |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
253 GHashTable *data; /**< Plugin-specific data. */ |
10849 | 254 |
10665 | 255 GaimConnectionFlags features; /**< The supported features */ |
256 | |
4359 | 257 }; |
258 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
259 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
260 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
261 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
262 |
4359 | 263 /**************************************************************************/ |
264 /** @name Conversation API */ | |
265 /**************************************************************************/ | |
266 /*@{*/ | |
267 | |
268 /** | |
269 * Creates a new conversation of the specified type. | |
270 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
271 * @param type The type of conversation. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
272 * @param account The account opening the conversation window on the gaim |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
273 * user's end. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
274 * @param name The name of the conversation. |
4359 | 275 * |
276 * @return The new conversation. | |
277 */ | |
6585
f30579b25253
[gaim-migrate @ 7107]
Christian Hammond <chipx86@chipx86.com>
parents:
6488
diff
changeset
|
278 GaimConversation *gaim_conversation_new(GaimConversationType type, |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
279 GaimAccount *account, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
280 const char *name); |
4359 | 281 |
282 /** | |
283 * Destroys the specified conversation and removes it from the parent | |
284 * window. | |
285 * | |
286 * If this conversation is the only one contained in the parent window, | |
287 * that window is also destroyed. | |
288 * | |
289 * @param conv The conversation to destroy. | |
290 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
291 void gaim_conversation_destroy(GaimConversation *conv); |
4359 | 292 |
12624
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
293 |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
294 /** |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
295 * Present a conversation to the user. This allows core code to initiate a |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
296 * conversation by displaying the IM dialog. |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
297 * @param conv The conversation to present |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
298 */ |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
299 void gaim_conversation_present(GaimConversation *conv); |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
300 |
851b0bd7eb52
[gaim-migrate @ 14960]
Christopher O'Brien <siege@pidgin.im>
parents:
12618
diff
changeset
|
301 |
4359 | 302 /** |
303 * Returns the specified conversation's type. | |
304 * | |
305 * @param conv The conversation. | |
306 * | |
307 * @return The conversation's type. | |
308 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
309 GaimConversationType gaim_conversation_get_type(const GaimConversation *conv); |
4359 | 310 |
311 /** | |
312 * Sets the specified conversation's UI operations structure. | |
313 * | |
314 * @param conv The conversation. | |
315 * @param ops The UI conversation operations structure. | |
316 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
317 void gaim_conversation_set_ui_ops(GaimConversation *conv, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
318 GaimConversationUiOps *ops); |
4359 | 319 |
320 /** | |
11581 | 321 * Sets the default conversation UI operations structure. |
322 * | |
323 * @param ops The UI conversation operations structure. | |
324 */ | |
325 void gaim_conversations_set_ui_ops(GaimConversationUiOps *ops); | |
326 | |
327 /** | |
4359 | 328 * Returns the specified conversation's UI operations structure. |
6585
f30579b25253
[gaim-migrate @ 7107]
Christian Hammond <chipx86@chipx86.com>
parents:
6488
diff
changeset
|
329 * |
4359 | 330 * @param conv The conversation. |
331 * | |
332 * @return The operations structure. | |
333 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
334 GaimConversationUiOps *gaim_conversation_get_ui_ops( |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
335 const GaimConversation *conv); |
4359 | 336 |
337 /** | |
4491 | 338 * Sets the specified conversation's gaim_account. |
4359 | 339 * |
4491 | 340 * This gaim_account represents the user using gaim, not the person the user |
4359 | 341 * is having a conversation/chat/flame with. |
342 * | |
343 * @param conv The conversation. | |
4491 | 344 * @param account The gaim_account. |
4359 | 345 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
346 void gaim_conversation_set_account(GaimConversation *conv, |
10827 | 347 GaimAccount *account); |
4359 | 348 |
349 /** | |
4491 | 350 * Returns the specified conversation's gaim_account. |
4359 | 351 * |
4491 | 352 * This gaim_account represents the user using gaim, not the person the user |
4359 | 353 * is having a conversation/chat/flame with. |
354 * | |
355 * @param conv The conversation. | |
356 * | |
4491 | 357 * @return The conversation's gaim_account. |
4359 | 358 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
359 GaimAccount *gaim_conversation_get_account(const GaimConversation *conv); |
4359 | 360 |
361 /** | |
362 * Returns the specified conversation's gaim_connection. | |
363 * | |
364 * This is the same as gaim_conversation_get_user(conv)->gc. | |
365 * | |
366 * @param conv The conversation. | |
367 * | |
368 * @return The conversation's gaim_connection. | |
369 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
370 GaimConnection *gaim_conversation_get_gc(const GaimConversation *conv); |
4359 | 371 |
372 /** | |
373 * Sets the specified conversation's title. | |
374 * | |
375 * @param conv The conversation. | |
376 * @param title The title. | |
377 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
378 void gaim_conversation_set_title(GaimConversation *conv, const char *title); |
4359 | 379 |
380 /** | |
381 * Returns the specified conversation's title. | |
382 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
383 * @param conv The conversation. |
4359 | 384 * |
385 * @return The title. | |
386 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
387 const char *gaim_conversation_get_title(const GaimConversation *conv); |
4359 | 388 |
389 /** | |
390 * Automatically sets the specified conversation's title. | |
391 * | |
392 * This function takes OPT_IM_ALIAS_TAB into account, as well as the | |
393 * user's alias. | |
394 * | |
395 * @param conv The conversation. | |
396 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
397 void gaim_conversation_autoset_title(GaimConversation *conv); |
4359 | 398 |
399 /** | |
7256
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
400 * Sets the specified conversation's name. |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
401 * |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
402 * @param conv The conversation. |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
403 * @param name The conversation's name. |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
404 */ |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
405 void gaim_conversation_set_name(GaimConversation *conv, const char *name); |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
406 |
c93493c59ac3
[gaim-migrate @ 7833]
Christian Hammond <chipx86@chipx86.com>
parents:
7122
diff
changeset
|
407 /** |
4359 | 408 * Returns the specified conversation's name. |
409 * | |
410 * @param conv The conversation. | |
411 * | |
412 * @return The conversation's name. | |
413 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
414 const char *gaim_conversation_get_name(const GaimConversation *conv); |
4359 | 415 |
416 /** | |
417 * Enables or disables logging for this conversation. | |
418 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
419 * @param conv The conversation. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
420 * @param log @c TRUE if logging should be enabled, or @c FALSE otherwise. |
4359 | 421 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
422 void gaim_conversation_set_logging(GaimConversation *conv, gboolean log); |
4359 | 423 |
424 /** | |
425 * Returns whether or not logging is enabled for this conversation. | |
426 * | |
6720
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
427 * @param conv The conversation. |
41120df7ed94
[gaim-migrate @ 7247]
Christian Hammond <chipx86@chipx86.com>
parents:
6622
diff
changeset
|
428 * |
4359 | 429 * @return @c TRUE if logging is enabled, or @c FALSE otherwise. |
430 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
431 gboolean gaim_conversation_is_logging(const GaimConversation *conv); |
4359 | 432 |
433 /** | |
11672
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
434 * Closes any open logs for this conversation. |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
435 * |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
436 * Note that new logs will be opened as necessary (e.g. upon receipt of a |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
437 * message, if the conversation has logging enabled. To disable logging for |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
438 * the remainder of the conversation, use gaim_conversation_set_logging(). |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
439 * |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
440 * @param conv The conversation. |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
441 */ |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
442 void gaim_conversation_close_logs(GaimConversation *conv); |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
443 |
04e0189bb519
[gaim-migrate @ 13958]
Richard Laager <rlaager@wiktel.com>
parents:
11664
diff
changeset
|
444 /** |
4359 | 445 * Returns the specified conversation's IM-specific data. |
446 * | |
11338 | 447 * If the conversation type is not GAIM_CONV_TYPE_IM, this will return @c NULL. |
4359 | 448 * |
449 * @param conv The conversation. | |
450 * | |
451 * @return The IM-specific data. | |
452 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
453 GaimConvIm *gaim_conversation_get_im_data(const GaimConversation *conv); |
4359 | 454 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
455 #define GAIM_CONV_IM(c) (gaim_conversation_get_im_data(c)) |
4359 | 456 |
457 /** | |
458 * Returns the specified conversation's chat-specific data. | |
459 * | |
11338 | 460 * If the conversation type is not GAIM_CONV_TYPE_CHAT, this will return @c NULL. |
4359 | 461 * |
462 * @param conv The conversation. | |
463 * | |
464 * @return The chat-specific data. | |
465 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
466 GaimConvChat *gaim_conversation_get_chat_data(const GaimConversation *conv); |
4359 | 467 |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
468 #define GAIM_CONV_CHAT(c) (gaim_conversation_get_chat_data(c)) |
4359 | 469 |
470 /** | |
4877
249382064693
[gaim-migrate @ 5207]
Christian Hammond <chipx86@chipx86.com>
parents:
4876
diff
changeset
|
471 * Sets extra data for a conversation. |
6585
f30579b25253
[gaim-migrate @ 7107]
Christian Hammond <chipx86@chipx86.com>
parents:
6488
diff
changeset
|
472 * |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
473 * @param conv The conversation. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
474 * @param key The unique key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
475 * @param data The data to assign. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
476 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
477 void gaim_conversation_set_data(GaimConversation *conv, const char *key, |
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
478 gpointer data); |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
479 |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
480 /** |
4877
249382064693
[gaim-migrate @ 5207]
Christian Hammond <chipx86@chipx86.com>
parents:
4876
diff
changeset
|
481 * Returns extra data in a conversation. |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
482 * |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
483 * @param conv The conversation. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
484 * @param key The unqiue key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
485 * |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
486 * @return The data associated with the key. |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
487 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
488 gpointer gaim_conversation_get_data(GaimConversation *conv, const char *key); |
4876
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
489 |
9567b13d0e98
[gaim-migrate @ 5206]
Christian Hammond <chipx86@chipx86.com>
parents:
4491
diff
changeset
|
490 /** |
4359 | 491 * Returns a list of all conversations. |
492 * | |
493 * This list includes both IMs and chats. | |
494 * | |
495 * @return A GList of all conversations. | |
496 */ | |
497 GList *gaim_get_conversations(void); | |
498 | |
499 /** | |
500 * Returns a list of all IMs. | |
501 * | |
502 * @return A GList of all IMs. | |
503 */ | |
504 GList *gaim_get_ims(void); | |
505 | |
506 /** | |
507 * Returns a list of all chats. | |
508 * | |
509 * @return A GList of all chats. | |
510 */ | |
511 GList *gaim_get_chats(void); | |
512 | |
513 /** | |
10246 | 514 * Finds a conversation with the specified type, name, and Gaim account. |
4359 | 515 * |
10246 | 516 * @param type The type of the conversation. |
4359 | 517 * @param name The name of the conversation. |
4491 | 518 * @param account The gaim_account associated with the conversation. |
4359 | 519 * |
520 * @return The conversation if found, or @c NULL otherwise. | |
521 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
522 GaimConversation *gaim_find_conversation_with_account( |
10246 | 523 GaimConversationType type, const char *name, |
524 const GaimAccount *account); | |
4359 | 525 |
526 /** | |
527 * Writes to a conversation window. | |
528 * | |
529 * This function should not be used to write IM or chat messages. Use | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
530 * gaim_conv_im_write() and gaim_conv_chat_write() instead. Those functions will |
4359 | 531 * most likely call this anyway, but they may do their own formatting, |
532 * sound playback, etc. | |
533 * | |
534 * This can be used to write generic messages, such as "so and so closed | |
535 * the conversation window." | |
536 * | |
537 * @param conv The conversation. | |
538 * @param who The user who sent the message. | |
539 * @param message The message. | |
6621 | 540 * @param flags The message flags. |
4359 | 541 * @param mtime The time the message was sent. |
542 * | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
543 * @see gaim_conv_im_write() |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
544 * @see gaim_conv_chat_write() |
4359 | 545 */ |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
546 void gaim_conversation_write(GaimConversation *conv, const char *who, |
10665 | 547 const char *message, GaimMessageFlags flags, |
548 time_t mtime); | |
549 | |
550 | |
551 /** | |
552 Set the features as supported for the given conversation. | |
553 @param conv The conversation | |
554 @param features Bitset defining supported features | |
555 */ | |
556 void gaim_conversation_set_features(GaimConversation *conv, | |
557 GaimConnectionFlags features); | |
558 | |
559 | |
560 /** | |
561 Get the features supported by the given conversation. | |
562 @param conv The conversation | |
563 */ | |
11581 | 564 GaimConnectionFlags gaim_conversation_get_features(GaimConversation *conv); |
4359 | 565 |
566 /** | |
9260
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
567 * Determines if a conversation has focus |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
568 * |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
569 * @param conv The conversation. |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
570 * |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
571 * @return @c TRUE if the conversation has focus, @c FALSE if |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
572 * it does not or the UI does not have a concept of conversation focus |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
573 */ |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
574 gboolean gaim_conversation_has_focus(GaimConversation *conv); |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
575 |
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9166
diff
changeset
|
576 /** |
4359 | 577 * Updates the visual status and UI of a conversation. |
578 * | |
579 * @param conv The conversation. | |
580 * @param type The update type. | |
581 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
582 void gaim_conversation_update(GaimConversation *conv, GaimConvUpdateType type); |
4359 | 583 |
584 /** | |
585 * Calls a function on each conversation. | |
586 * | |
587 * @param func The function. | |
588 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
589 void gaim_conversation_foreach(void (*func)(GaimConversation *conv)); |
4359 | 590 |
591 /*@}*/ | |
592 | |
593 | |
594 /**************************************************************************/ | |
595 /** @name IM Conversation API */ | |
596 /**************************************************************************/ | |
597 /*@{*/ | |
598 | |
599 /** | |
600 * Gets an IM's parent conversation. | |
601 * | |
602 * @param im The IM. | |
603 * | |
604 * @return The parent conversation. | |
605 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
606 GaimConversation *gaim_conv_im_get_conversation(const GaimConvIm *im); |
4359 | 607 |
608 /** | |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
609 * Sets the IM's buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
610 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
611 * This should only be called from within Gaim. You probably want to |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
612 * call gaim_buddy_icon_set_data(). |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
613 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
614 * @param im The IM. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
615 * @param icon The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
616 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
617 * @see gaim_buddy_icon_set_data() |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
618 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
619 void gaim_conv_im_set_icon(GaimConvIm *im, GaimBuddyIcon *icon); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
620 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
621 /** |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
622 * Returns the IM's buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
623 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
624 * @param im The IM. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
625 * |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
626 * @return The buddy icon. |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
627 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
628 GaimBuddyIcon *gaim_conv_im_get_icon(const GaimConvIm *im); |
6846
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
629 |
8ab95f4c9800
[gaim-migrate @ 7391]
Christian Hammond <chipx86@chipx86.com>
parents:
6720
diff
changeset
|
630 /** |
4359 | 631 * Sets the IM's typing state. |
632 * | |
633 * @param im The IM. | |
634 * @param state The typing state. | |
635 */ | |
8288
dde73afb3283
[gaim-migrate @ 9012]
Christian Hammond <chipx86@chipx86.com>
parents:
8256
diff
changeset
|
636 void gaim_conv_im_set_typing_state(GaimConvIm *im, GaimTypingState state); |
4359 | 637 |
638 /** | |
639 * Returns the IM's typing state. | |
640 * | |
641 * @param im The IM. | |
642 * | |
643 * @return The IM's typing state. | |
644 */ | |
8288
dde73afb3283
[gaim-migrate @ 9012]
Christian Hammond <chipx86@chipx86.com>
parents:
8256
diff
changeset
|
645 GaimTypingState gaim_conv_im_get_typing_state(const GaimConvIm *im); |
4359 | 646 |
647 /** | |
648 * Starts the IM's typing timeout. | |
649 * | |
650 * @param im The IM. | |
651 * @param timeout The timeout. | |
652 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
653 void gaim_conv_im_start_typing_timeout(GaimConvIm *im, int timeout); |
4359 | 654 |
655 /** | |
656 * Stops the IM's typing timeout. | |
657 * | |
658 * @param im The IM. | |
659 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
660 void gaim_conv_im_stop_typing_timeout(GaimConvIm *im); |
4359 | 661 |
662 /** | |
663 * Returns the IM's typing timeout. | |
664 * | |
665 * @param im The IM. | |
666 * | |
667 * @return The timeout. | |
668 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
669 guint gaim_conv_im_get_typing_timeout(const GaimConvIm *im); |
4359 | 670 |
671 /** | |
13842 | 672 * Sets the quiet-time when no GAIM_TYPING messages will be sent. |
673 * Few protocols need this (maybe only MSN). If the user is still | |
674 * typing after this quiet-period, then another GAIM_TYPING message | |
675 * will be sent. | |
4359 | 676 * |
677 * @param im The IM. | |
13842 | 678 * @param val The number of seconds to wait before allowing another |
679 * GAIM_TYPING message to be sent to the user. Or 0 to | |
680 * not send another GAIM_TYPING message. | |
4359 | 681 */ |
13842 | 682 void gaim_conv_im_set_type_again(GaimConvIm *im, unsigned int val); |
4359 | 683 |
684 /** | |
13842 | 685 * Returns the time after which another GAIM_TYPING message should be sent. |
4359 | 686 * |
687 * @param im The IM. | |
688 * | |
13842 | 689 * @return The time in seconds since the epoch. Or 0 if no additional |
690 * GAIM_TYPING message should be sent. | |
4359 | 691 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
692 time_t gaim_conv_im_get_type_again(const GaimConvIm *im); |
4359 | 693 |
694 /** | |
695 * Starts the IM's type again timeout. | |
696 * | |
697 * @param im The IM. | |
698 */ | |
13842 | 699 void gaim_conv_im_start_send_typed_timeout(GaimConvIm *im); |
4359 | 700 |
701 /** | |
702 * Stops the IM's type again timeout. | |
703 * | |
704 * @param im The IM. | |
705 */ | |
13842 | 706 void gaim_conv_im_stop_send_typed_timeout(GaimConvIm *im); |
4359 | 707 |
708 /** | |
709 * Returns the IM's type again timeout interval. | |
710 * | |
711 * @param im The IM. | |
712 * | |
713 * @return The type again timeout interval. | |
714 */ | |
13842 | 715 guint gaim_conv_im_get_send_typed_timeout(const GaimConvIm *im); |
4359 | 716 |
717 /** | |
718 * Updates the visual typing notification for an IM conversation. | |
719 * | |
720 * @param im The IM. | |
721 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
722 void gaim_conv_im_update_typing(GaimConvIm *im); |
4359 | 723 |
724 /** | |
725 * Writes to an IM. | |
726 * | |
727 * @param im The IM. | |
728 * @param who The user who sent the message. | |
729 * @param message The message to write. | |
6621 | 730 * @param flags The message flags. |
4359 | 731 * @param mtime The time the message was sent. |
732 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
733 void gaim_conv_im_write(GaimConvIm *im, const char *who, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
734 const char *message, GaimMessageFlags flags, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
735 time_t mtime); |
4359 | 736 |
737 /** | |
9627 | 738 * Presents an IM-error to the user |
11581 | 739 * |
9627 | 740 * This is a helper function to find a conversation, write an error to it, and |
741 * raise the window. If a conversation with this user doesn't already exist, | |
742 * the function will return FALSE and the calling function can attempt to present | |
743 * the error another way (gaim_notify_error, most likely) | |
744 * | |
745 * @param who The user this error is about | |
746 * @param account The account this error is on | |
747 * @param what The error | |
748 * @return TRUE if the error was presented, else FALSE | |
749 */ | |
750 gboolean gaim_conv_present_error(const char *who, GaimAccount *account, const char *what); | |
751 | |
752 /** | |
4359 | 753 * Sends a message to this IM conversation. |
754 * | |
755 * @param im The IM. | |
756 * @param message The message to send. | |
757 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
758 void gaim_conv_im_send(GaimConvIm *im, const char *message); |
4359 | 759 |
10526 | 760 /** |
11921 | 761 * Sends a message to this IM conversation with specified flags. |
762 * | |
763 * @param im The IM. | |
764 * @param message The message to send. | |
765 * @param flags The GaimMessageFlags flags to use in addition to GAIM_MESSAGE_SEND. | |
766 */ | |
767 void gaim_conv_im_send_with_flags(GaimConvIm *im, const char *message, GaimMessageFlags flags); | |
768 | |
769 /** | |
10528 | 770 * Adds a smiley to the conversation's smiley tree. If this returns |
771 * @c TRUE you should call gaim_conv_custom_smiley_write() one or more | |
772 * times, and then gaim_conv_custom_smiley_close(). If this returns | |
773 * @c FALSE, either the conv or smile were invalid, or the icon was | |
774 * found in the cache. In either case, calling write or close would | |
775 * be an error. | |
10526 | 776 * |
777 * @param conv The conversation to associate the smiley with. | |
778 * @param smile The text associated with the smiley | |
779 * @param cksum_type The type of checksum. | |
780 * @param chksum The checksum, as a NUL terminated base64 string. | |
12618
204bd8fac61f
[gaim-migrate @ 14954]
Richard Laager <rlaager@wiktel.com>
parents:
12463
diff
changeset
|
781 * @param remote @c TRUE if the custom smiley is set by the remote user (buddy). |
10528 | 782 * @return @c TRUE if an icon is expected, else FALSE. Note that |
10526 | 783 * it is an error to never call gaim_conv_custom_smiley_close if |
784 * this function returns @c TRUE, but an error to call it if | |
785 * @c FALSE is returned. | |
786 */ | |
787 | |
788 gboolean gaim_conv_custom_smiley_add(GaimConversation *conv, const char *smile, | |
12618
204bd8fac61f
[gaim-migrate @ 14954]
Richard Laager <rlaager@wiktel.com>
parents:
12463
diff
changeset
|
789 const char *cksum_type, const char *chksum, |
204bd8fac61f
[gaim-migrate @ 14954]
Richard Laager <rlaager@wiktel.com>
parents:
12463
diff
changeset
|
790 gboolean remote); |
10526 | 791 |
792 | |
793 /** | |
794 * Updates the image associated with the current smiley. | |
795 * | |
796 * @param conv The conversation associated with the smiley. | |
797 * @param smile The text associated with the smiley. | |
798 * @param data The actual image data. | |
799 * @param size The length of the data. | |
800 */ | |
801 | |
802 void gaim_conv_custom_smiley_write(GaimConversation *conv, | |
11137 | 803 const char *smile, |
804 const guchar *data, | |
805 gsize size); | |
10526 | 806 |
807 /** | |
808 * Close the custom smiley, all data has been written with | |
809 * gaim_conv_custom_smiley_write, and it is no longer valid | |
810 * to call that function on that smiley. | |
811 * | |
812 * @param conv The gaim conversation associated with the smiley. | |
813 * @param smile The text associated with the smiley | |
814 */ | |
815 | |
816 void gaim_conv_custom_smiley_close(GaimConversation *conv, const char *smile); | |
817 | |
4359 | 818 /*@}*/ |
819 | |
820 | |
821 /**************************************************************************/ | |
822 /** @name Chat Conversation API */ | |
823 /**************************************************************************/ | |
824 /*@{*/ | |
825 | |
826 /** | |
827 * Gets a chat's parent conversation. | |
828 * | |
829 * @param chat The chat. | |
830 * | |
831 * @return The parent conversation. | |
832 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
833 GaimConversation *gaim_conv_chat_get_conversation(const GaimConvChat *chat); |
4359 | 834 |
835 /** | |
836 * Sets the list of users in the chat room. | |
837 * | |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
838 * @note Calling this function will not update the display of the users. |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
839 * Please use gaim_conv_chat_add_user(), gaim_conv_chat_add_users(), |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
840 * gaim_conv_chat_remove_user(), and gaim_conv_chat_remove_users() instead. |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
841 * |
4359 | 842 * @param chat The chat. |
843 * @param users The list of users. | |
844 * | |
845 * @return The list passed. | |
846 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
847 GList *gaim_conv_chat_set_users(GaimConvChat *chat, GList *users); |
4359 | 848 |
849 /** | |
850 * Returns a list of users in the chat room. | |
851 * | |
852 * @param chat The chat. | |
853 * | |
854 * @return The list of users. | |
855 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
856 GList *gaim_conv_chat_get_users(const GaimConvChat *chat); |
4359 | 857 |
858 /** | |
859 * Ignores a user in a chat room. | |
860 * | |
861 * @param chat The chat. | |
862 * @param name The name of the user. | |
863 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
864 void gaim_conv_chat_ignore(GaimConvChat *chat, const char *name); |
4359 | 865 |
866 /** | |
867 * Unignores a user in a chat room. | |
868 * | |
869 * @param chat The chat. | |
870 * @param name The name of the user. | |
871 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
872 void gaim_conv_chat_unignore(GaimConvChat *chat, const char *name); |
4359 | 873 |
874 /** | |
875 * Sets the list of ignored users in the chat room. | |
876 * | |
877 * @param chat The chat. | |
878 * @param ignored The list of ignored users. | |
879 * | |
880 * @return The list passed. | |
881 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
882 GList *gaim_conv_chat_set_ignored(GaimConvChat *chat, GList *ignored); |
4359 | 883 |
884 /** | |
885 * Returns the list of ignored users in the chat room. | |
886 * | |
887 * @param chat The chat. | |
888 * | |
889 * @return The list of ignored users. | |
890 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
891 GList *gaim_conv_chat_get_ignored(const GaimConvChat *chat); |
4359 | 892 |
893 /** | |
894 * Returns the actual name of the specified ignored user, if it exists in | |
895 * the ignore list. | |
896 * | |
897 * If the user found contains a prefix, such as '+' or '\@', this is also | |
898 * returned. The username passed to the function does not have to have this | |
899 * formatting. | |
900 * | |
901 * @param chat The chat. | |
902 * @param user The user to check in the ignore list. | |
903 * | |
904 * @return The ignored user if found, complete with prefixes, or @c NULL | |
905 * if not found. | |
906 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
907 const char *gaim_conv_chat_get_ignored_user(const GaimConvChat *chat, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
908 const char *user); |
4359 | 909 |
910 /** | |
911 * Returns @c TRUE if the specified user is ignored. | |
912 * | |
913 * @param chat The chat. | |
914 * @param user The user. | |
915 * | |
916 * @return @c TRUE if the user is in the ignore list; @c FALSE otherwise. | |
917 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
918 gboolean gaim_conv_chat_is_user_ignored(const GaimConvChat *chat, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
919 const char *user); |
4359 | 920 |
921 /** | |
922 * Sets the chat room's topic. | |
923 * | |
924 * @param chat The chat. | |
925 * @param who The user that set the topic. | |
926 * @param topic The topic. | |
927 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
928 void gaim_conv_chat_set_topic(GaimConvChat *chat, const char *who, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
929 const char *topic); |
4359 | 930 |
931 /** | |
932 * Returns the chat room's topic. | |
933 * | |
934 * @param chat The chat. | |
935 * | |
936 * @return The chat's topic. | |
937 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
938 const char *gaim_conv_chat_get_topic(const GaimConvChat *chat); |
4359 | 939 |
940 /** | |
941 * Sets the chat room's ID. | |
942 * | |
943 * @param chat The chat. | |
944 * @param id The ID. | |
945 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
946 void gaim_conv_chat_set_id(GaimConvChat *chat, int id); |
4359 | 947 |
948 /** | |
949 * Returns the chat room's ID. | |
950 * | |
951 * @param chat The chat. | |
952 * | |
953 * @return The ID. | |
954 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
955 int gaim_conv_chat_get_id(const GaimConvChat *chat); |
4359 | 956 |
957 /** | |
958 * Writes to a chat. | |
959 * | |
960 * @param chat The chat. | |
961 * @param who The user who sent the message. | |
962 * @param message The message to write. | |
6621 | 963 * @param flags The flags. |
4359 | 964 * @param mtime The time the message was sent. |
965 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
966 void gaim_conv_chat_write(GaimConvChat *chat, const char *who, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
967 const char *message, GaimMessageFlags flags, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
968 time_t mtime); |
4359 | 969 |
970 /** | |
971 * Sends a message to this chat conversation. | |
972 * | |
973 * @param chat The chat. | |
974 * @param message The message to send. | |
975 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
976 void gaim_conv_chat_send(GaimConvChat *chat, const char *message); |
4359 | 977 |
978 /** | |
11921 | 979 * Sends a message to this chat conversation with specified flags. |
980 * | |
981 * @param chat The chat. | |
982 * @param message The message to send. | |
983 * @param flags The GaimMessageFlags flags to use. | |
984 */ | |
985 void gaim_conv_chat_send_with_flags(GaimConvChat *chat, const char *message, GaimMessageFlags flags); | |
986 | |
987 /** | |
4359 | 988 * Adds a user to a chat. |
989 * | |
9939 | 990 * @param chat The chat. |
991 * @param user The user to add. | |
992 * @param extra_msg An extra message to display with the join message. | |
993 * @param flags The users flags | |
994 * @param new_arrival Decides whether or not to show a join notice. | |
4359 | 995 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
996 void gaim_conv_chat_add_user(GaimConvChat *chat, const char *user, |
9846 | 997 const char *extra_msg, GaimConvChatBuddyFlags flags, |
998 gboolean new_arrival); | |
4359 | 999 |
1000 /** | |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1001 * Adds a list of users to a chat. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1002 * |
11454
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1003 * The data is copied from @a users, @a extra_msgs, and @a flags, so it is up to |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1004 * the caller to free this list after calling this function. |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1005 * |
11454
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1006 * @param chat The chat. |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1007 * @param users The list of users to add. |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1008 * @param extra_msgs An extra message to display with the join message for each |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1009 * user. This list may be shorter than @a users, in which |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1010 * case, the users after the end of extra_msgs will not have |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1011 * an extra message. By extension, this means that extra_msgs |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1012 * can simply be @c NULL and none of the users will have an |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1013 * extra message. |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1014 * @param flags The list of flags for each user. |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1015 * @param new_arrivals Decides whether or not to show join notices. |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1016 */ |
11454
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1017 void gaim_conv_chat_add_users(GaimConvChat *chat, GList *users, GList *extra_msgs, |
201617d49573
[gaim-migrate @ 13693]
Richard Laager <rlaager@wiktel.com>
parents:
11338
diff
changeset
|
1018 GList *flags, gboolean new_arrivals); |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1019 |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1020 /** |
4359 | 1021 * Renames a user in a chat. |
1022 * | |
1023 * @param chat The chat. | |
1024 * @param old_user The old username. | |
1025 * @param new_user The new username. | |
1026 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1027 void gaim_conv_chat_rename_user(GaimConvChat *chat, const char *old_user, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1028 const char *new_user); |
4359 | 1029 |
1030 /** | |
1031 * Removes a user from a chat, optionally with a reason. | |
1032 * | |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1033 * It is up to the developer to free this list after calling this function. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1034 * |
4359 | 1035 * @param chat The chat. |
1036 * @param user The user that is being removed. | |
1037 * @param reason The optional reason given for the removal. Can be @c NULL. | |
1038 */ | |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1039 void gaim_conv_chat_remove_user(GaimConvChat *chat, const char *user, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1040 const char *reason); |
4359 | 1041 |
1042 /** | |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1043 * Removes a list of users from a chat, optionally with a single reason. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1044 * |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1045 * @param chat The chat. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1046 * @param users The users that are being removed. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1047 * @param reason The optional reason given for the removal. Can be @c NULL. |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1048 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1049 void gaim_conv_chat_remove_users(GaimConvChat *chat, GList *users, |
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1050 const char *reason); |
6407
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1051 |
ba0b99a72be2
[gaim-migrate @ 6913]
Christian Hammond <chipx86@chipx86.com>
parents:
6405
diff
changeset
|
1052 /** |
9554 | 1053 * Finds a user in a chat |
1054 * | |
1055 * @param chat The chat. | |
1056 * @param user The user to look for. | |
1057 * | |
1058 * @return TRUE if the user is in the chat, FALSE if not | |
1059 */ | |
1060 gboolean gaim_conv_chat_find_user(GaimConvChat *chat, const char *user); | |
1061 | |
1062 /** | |
1063 * Set a users flags in a chat | |
1064 * | |
1065 * @param chat The chat. | |
1066 * @param user The user to update. | |
1067 * @param flags The new flags. | |
1068 */ | |
1069 void gaim_conv_chat_user_set_flags(GaimConvChat *chat, const char *user, | |
1070 GaimConvChatBuddyFlags flags); | |
1071 | |
1072 /** | |
1073 * Get the flags for a user in a chat | |
1074 * | |
1075 * @param chat The chat. | |
1076 * @param user The user to find the flags for | |
1077 * | |
1078 * @return The flags for the user | |
1079 */ | |
1080 GaimConvChatBuddyFlags gaim_conv_chat_user_get_flags(GaimConvChat *chat, | |
1081 const char *user); | |
1082 | |
1083 /** | |
6414
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1084 * Clears all users from a chat. |
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1085 * |
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1086 * @param chat The chat. |
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1087 */ |
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7035
diff
changeset
|
1088 void gaim_conv_chat_clear_users(GaimConvChat *chat); |
6414
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1089 |
874a5c9f4eb8
[gaim-migrate @ 6921]
Christian Hammond <chipx86@chipx86.com>
parents:
6407
diff
changeset
|
1090 /** |
8158 | 1091 * Sets your nickname (used for hilighting) for a chat. |
1092 * | |
1093 * @param chat The chat. | |
1094 * @param nick The nick. | |
1095 */ | |
1096 void gaim_conv_chat_set_nick(GaimConvChat *chat, const char *nick); | |
1097 | |
1098 /** | |
1099 * Gets your nickname (used for hilighting) for a chat. | |
1100 * | |
1101 * @param chat The chat. | |
1102 * @return The nick. | |
1103 */ | |
1104 const char *gaim_conv_chat_get_nick(GaimConvChat *chat); | |
1105 | |
1106 /** | |
4359 | 1107 * Finds a chat with the specified chat ID. |
1108 * | |
1109 * @param gc The gaim_connection. | |
1110 * @param id The chat ID. | |
1111 * | |
1112 * @return The chat conversation. | |
1113 */ | |
5676
dae79aefac8d
[gaim-migrate @ 6094]
Christian Hammond <chipx86@chipx86.com>
parents:
5563
diff
changeset
|
1114 GaimConversation *gaim_find_chat(const GaimConnection *gc, int id); |
4359 | 1115 |
8256
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1116 /** |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1117 * Lets the core know we left a chat, without destroying it. |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1118 * Called from serv_got_chat_left(). |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1119 * |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1120 * @param chat The chat. |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1121 */ |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1122 void gaim_conv_chat_left(GaimConvChat *chat); |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1123 |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1124 /** |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1125 * Returns true if we're no longer in this chat, |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1126 * and just left the window open. |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1127 * |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1128 * @param chat The chat. |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1129 * |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1130 * @return @c TRUE if we left the chat already, @c FALSE if |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1131 * we're still there. |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1132 */ |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1133 gboolean gaim_conv_chat_has_left(GaimConvChat *chat); |
1d86096ae0f4
[gaim-migrate @ 8979]
Christian Hammond <chipx86@chipx86.com>
parents:
8158
diff
changeset
|
1134 |
9554 | 1135 /** |
1136 * Creates a new chat buddy | |
1137 * | |
1138 * @param name The name. | |
13965 | 1139 * @param alias The alias. |
9554 | 1140 * @param flags The flags. |
1141 * | |
1142 * @return The new chat buddy | |
1143 */ | |
13965 | 1144 GaimConvChatBuddy *gaim_conv_chat_cb_new(const char *name, const char *alias, |
9554 | 1145 GaimConvChatBuddyFlags flags); |
1146 | |
1147 /** | |
1148 * Find a chat buddy in a chat | |
1149 * | |
1150 * @param chat The chat. | |
1151 * @param name The name of the chat buddy to find. | |
1152 */ | |
1153 GaimConvChatBuddy *gaim_conv_chat_cb_find(GaimConvChat *chat, const char *name); | |
1154 | |
1155 /** | |
1156 * Get the name of a chat buddy | |
1157 * | |
1158 * @param cb The chat buddy. | |
1159 * | |
1160 * @return The name of the chat buddy. | |
1161 */ | |
1162 const char *gaim_conv_chat_cb_get_name(GaimConvChatBuddy *cb); | |
1163 | |
1164 /** | |
1165 * Destroys a chat buddy | |
1166 * | |
1167 * @param cb The chat buddy to destroy | |
1168 */ | |
1169 void gaim_conv_chat_cb_destroy(GaimConvChatBuddy *cb); | |
1170 | |
4359 | 1171 /*@}*/ |
1172 | |
4469
d76095396a0e
[gaim-migrate @ 4744]
Christian Hammond <chipx86@chipx86.com>
parents:
4465
diff
changeset
|
1173 /**************************************************************************/ |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1174 /** @name Conversations Subsystem */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1175 /**************************************************************************/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1176 /*@{*/ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1177 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1178 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1179 * Returns the conversation subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1180 * |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1181 * @return The conversation subsystem handle. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1182 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1183 void *gaim_conversations_get_handle(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1184 |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
1185 /** |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
1186 * Initializes the conversation subsystem. |
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
1187 */ |
6485
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1188 void gaim_conversations_init(void); |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1189 |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1190 /** |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1191 * Uninitializes the conversation subsystem. |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1192 */ |
70d5122bc3ff
[gaim-migrate @ 6999]
Christian Hammond <chipx86@chipx86.com>
parents:
6414
diff
changeset
|
1193 void gaim_conversations_uninit(void); |
5872
059d95c67cda
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5858
diff
changeset
|
1194 |
4481
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1195 /*@}*/ |
b30b0a02ada0
[gaim-migrate @ 4756]
Christian Hammond <chipx86@chipx86.com>
parents:
4476
diff
changeset
|
1196 |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1197 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1198 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1199 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
1200 |
4890
89cb14edf8cf
[gaim-migrate @ 5220]
Christian Hammond <chipx86@chipx86.com>
parents:
4877
diff
changeset
|
1201 #endif /* _GAIM_CONVERSATION_H_ */ |