Fri, 02 Jan 2004 15:34:04 +0000
[gaim-migrate @ 8651]
jabber /part support (with /part messages!)
the list of the cool jabber chat stuff I can do w/o certain extras
from people who know who they are is getting shorter and shorter
| 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_invite(GaimConnection *gc, int id, const char *message, | |
| 51 | const char *name); | |
| 52 | void jabber_chat_leave(GaimConnection *gc, int id); | |
| 7398 | 53 | char *jabber_chat_buddy_real_name(GaimConnection *gc, int id, const char *who); |
| 7923 | 54 | void jabber_chat_request_room_configure(JabberChat *chat); |
| 7895 | 55 | void jabber_chat_create_instant_room(JabberChat *chat); |
| 7971 | 56 | void jabber_chat_register(JabberChat *chat); |
| 57 | void jabber_chat_change_topic(JabberChat *chat, const char *topic); | |
| 58 | void jabber_chat_set_topic(GaimConnection *gc, int id, const char *topic); | |
| 7972 | 59 | void jabber_chat_change_nick(JabberChat *chat, const char *nick); |
| 7974 | 60 | void jabber_chat_part(JabberChat *chat, const char *msg); |
| 7398 | 61 | |
| 7014 | 62 | |
| 63 | #endif /* _GAIM_JABBER_CHAT_H_ */ |