annotate libpurple/protocols/jabber/usermood.h @ 17843:8338e171a43b

Fixed naming to adhere to the libpurple convention
author Andreas Monitzer <pidgin@monitzer.com>
date Tue, 12 Jun 2007 00:28:06 +0000
parents a0cd74d7b51e
children 2e0799b916b9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17842
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
1 /*
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
2 * purple - Jabber Protocol Plugin
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
3 *
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
4 * Copyright (C) 2007, Andreas Monitzer <andy@monitzer.com>
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
5 *
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
6 * This program is free software; you can redistribute it and/or modify
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
7 * it under the terms of the GNU General Public License as published by
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
8 * the Free Software Foundation; either version 2 of the License, or
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
9 * (at your option) any later version.
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
10 *
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
11 * This program is distributed in the hope that it will be useful,
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
14 * GNU General Public License for more details.
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
15 *
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
19 *
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
20 */
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
21
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
22 #ifndef _PURPLE_JABBER_USERMOOD_H_
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
23 #define _PURPLE_JABBER_USERMOOD_H_
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
24
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
25 #include "jabber.h"
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
26
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
27 /* Implementation of XEP-0107 */
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
28
17843
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
29 typedef enum _JabberMood { /* wtf */
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
30 UNKNOWN = 0,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
31 AFRAID,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
32 AMAZED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
33 ANGRY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
34 ANNOYED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
35 ANXIOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
36 AROUSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
37 ASHAMED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
38 BORED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
39 BRAVE,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
40 CALM,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
41 COLD,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
42 CONFUSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
43 CONTENTED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
44 CRANKY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
45 CURIOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
46 DEPRESSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
47 DISAPPOINTED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
48 DISGUSTED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
49 DISTRACTED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
50 EMBARRASSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
51 EXCITED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
52 FLIRTATIOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
53 FRUSTRATED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
54 GRUMPY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
55 GUILTY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
56 HAPPY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
57 HOT,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
58 HUMBLED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
59 HUMILIATED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
60 HUNGRY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
61 HURT,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
62 IMPRESSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
63 IN_AWE,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
64 IN_LOVE,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
65 INDIGNANT,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
66 INTERESTED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
67 INTOXICATED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
68 INVINCIBLE,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
69 JEALOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
70 LONELY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
71 MEAN,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
72 MOODY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
73 NERVOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
74 NEUTRAL,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
75 OFFENDED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
76 PLAYFUL,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
77 PROUD,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
78 RELIEVED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
79 REMORSEFUL,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
80 RESTLESS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
81 SAD,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
82 SARCASTIC,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
83 SERIOUS,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
84 SHOCKED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
85 SHY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
86 SICK,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
87 SLEEPY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
88 STRESSED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
89 SURPRISED,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
90 THIRSTY,
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
91 WORRIED
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
92 } JabberMood;
17842
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
93
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
94 void jabber_mood_init(void);
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
95
17843
8338e171a43b Fixed naming to adhere to the libpurple convention
Andreas Monitzer <pidgin@monitzer.com>
parents: 17842
diff changeset
96 void jabber_set_mood(JabberStream *js, JabberMood mood, const char *text /* might be NULL */);
17842
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
97
a0cd74d7b51e forgot to add usermood.[hc]
Andreas Monitzer <pidgin@monitzer.com>
parents:
diff changeset
98 #endif /* _PURPLE_JABBER_USERMOOD_H_ */