comparison libgaim/protocols/jabber/message.h @ 14192:60b1bc8dbf37

[gaim-migrate @ 16863] Renamed 'core' to 'libgaim' committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Sat, 19 Aug 2006 01:50:10 +0000
parents
children
comparison
equal deleted inserted replaced
14191:009db0b357b5 14192:60b1bc8dbf37
1 /**
2 * @file message.h Message handlers
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_MESSAGE_H_
23 #define _GAIM_JABBER_MESSAGE_H_
24
25 #include "jabber.h"
26 #include "xmlnode.h"
27
28 typedef struct _JabberMessage {
29 JabberStream *js;
30 enum {
31 JABBER_MESSAGE_NORMAL,
32 JABBER_MESSAGE_CHAT,
33 JABBER_MESSAGE_GROUPCHAT,
34 JABBER_MESSAGE_HEADLINE,
35 JABBER_MESSAGE_ERROR,
36 JABBER_MESSAGE_GROUPCHAT_INVITE,
37 JABBER_MESSAGE_OTHER
38 } type;
39 time_t sent;
40 gboolean delayed;
41 char *id;
42 char *from;
43 char *to;
44 char *subject;
45 char *body;
46 char *xhtml;
47 char *password;
48 char *error;
49 char *thread_id;
50 enum {
51 JM_TS_NONE = 0,
52 JM_TS_JEP_0022 = 0x1,
53 JM_TS_JEP_0085 = 0x2
54 } typing_style;
55 enum {
56 JM_STATE_ACTIVE,
57 JM_STATE_COMPOSING,
58 JM_STATE_PAUSED,
59 JM_STATE_INACTIVE,
60 JM_STATE_GONE
61 } chat_state;
62 GList *etc;
63 } JabberMessage;
64
65 void jabber_message_free(JabberMessage *jm);
66
67 void jabber_message_send(JabberMessage *jm);
68
69 void jabber_message_parse(JabberStream *js, xmlnode *packet);
70 int jabber_message_send_im(GaimConnection *gc, const char *who, const char *msg,
71 GaimMessageFlags flags);
72 int jabber_message_send_chat(GaimConnection *gc, int id, const char *message, GaimMessageFlags flags);
73
74 unsigned int jabber_send_typing(GaimConnection *gc, const char *who, GaimTypingState state);
75
76
77 #endif /* _GAIM_JABBER_MESSAGE_H_ */