Thu, 02 Oct 2003 01:58:26 +0000
[gaim-migrate @ 7683]
fix a big ugly memleak on jabber account signoff, fix the img display in vcards until the gtk code can be talked into understanding proper XHTML, and a few misc other things I felt like getting out of my tree.
| 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; | |
| 40 | } JabberChat; | |
| 41 | ||
| 42 | GList *jabber_chat_info(GaimConnection *gc); | |
| 43 | void jabber_chat_join(GaimConnection *gc, GHashTable *data); | |
| 44 | JabberChat *jabber_chat_find(JabberStream *js, const char *room, | |
| 45 | const char *server); | |
| 46 | JabberChat *jabber_chat_find_by_id(JabberStream *js, int id); | |
| 47 | void jabber_chat_destroy(JabberChat *chat); | |
| 48 | gboolean jabber_chat_find_buddy(GaimConversation *conv, const char *name); | |
| 49 | void jabber_chat_whisper(GaimConnection *gc, int id, const char *who, | |
| 50 | const char *message); | |
| 51 | void jabber_chat_invite(GaimConnection *gc, int id, const char *message, | |
| 52 | const char *name); | |
| 53 | void jabber_chat_leave(GaimConnection *gc, int id); | |
| 54 | ||
| 55 | #endif /* _GAIM_JABBER_CHAT_H_ */ |