7014
|
1 /**
|
|
2 * @file chat.h Chat stuff
|
|
3 *
|
|
4 * gaim
|
|
5 *
|
|
6 * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
|
|
7 *
|
|
8 * This program is free software; you can redistribute it and/or modify
|
|
9 * it under the terms of the GNU General Public License as published by
|
|
10 * the Free Software Foundation; either version 2 of the License, or
|
|
11 * (at your option) any later version.
|
|
12 *
|
|
13 * This program is distributed in the hope that it will be useful,
|
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 * GNU General Public License for more details.
|
|
17 *
|
|
18 * You should have received a copy of the GNU General Public License
|
|
19 * along with this program; if not, write to the Free Software
|
|
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
21 */
|
|
22 #ifndef _GAIM_JABBER_CHAT_H_
|
|
23 #define _GAIM_JABBER_CHAT_H_
|
|
24
|
|
25 #include "internal.h"
|
|
26 #include "connection.h"
|
|
27 #include "conversation.h"
|
|
28
|
|
29 #include "jabber.h"
|
|
30
|
|
31
|
|
32 typedef struct _JabberChat {
|
|
33 JabberStream *js;
|
|
34 char *room;
|
|
35 char *server;
|
|
36 char *nick;
|
|
37 int id;
|
|
38 GaimConversation *conv;
|
|
39 gboolean muc;
|
7345
|
40 gboolean xhtml;
|
7014
|
41 } JabberChat;
|
|
42
|
|
43 GList *jabber_chat_info(GaimConnection *gc);
|
|
44 void jabber_chat_join(GaimConnection *gc, GHashTable *data);
|
|
45 JabberChat *jabber_chat_find(JabberStream *js, const char *room,
|
|
46 const char *server);
|
|
47 JabberChat *jabber_chat_find_by_id(JabberStream *js, int id);
|
|
48 void jabber_chat_destroy(JabberChat *chat);
|
|
49 gboolean jabber_chat_find_buddy(GaimConversation *conv, const char *name);
|
|
50 void jabber_chat_whisper(GaimConnection *gc, int id, const char *who,
|
|
51 const char *message);
|
|
52 void jabber_chat_invite(GaimConnection *gc, int id, const char *message,
|
|
53 const char *name);
|
|
54 void jabber_chat_leave(GaimConnection *gc, int id);
|
|
55
|
|
56 #endif /* _GAIM_JABBER_CHAT_H_ */
|