comparison 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
comparison
equal deleted inserted replaced
17842:a0cd74d7b51e 17843:8338e171a43b
24 24
25 #include "jabber.h" 25 #include "jabber.h"
26 26
27 /* Implementation of XEP-0107 */ 27 /* Implementation of XEP-0107 */
28 28
29 typedef enum _jabber_mood { /* wtf */ 29 typedef enum _JabberMood { /* wtf */
30 unknown = 0, 30 UNKNOWN = 0,
31 afraid, 31 AFRAID,
32 amazed, 32 AMAZED,
33 angry, 33 ANGRY,
34 annoyed, 34 ANNOYED,
35 anxious, 35 ANXIOUS,
36 aroused, 36 AROUSED,
37 ashamed, 37 ASHAMED,
38 bored, 38 BORED,
39 brave, 39 BRAVE,
40 calm, 40 CALM,
41 cold, 41 COLD,
42 confused, 42 CONFUSED,
43 contented, 43 CONTENTED,
44 cranky, 44 CRANKY,
45 curious, 45 CURIOUS,
46 depressed, 46 DEPRESSED,
47 disappointed, 47 DISAPPOINTED,
48 disgusted, 48 DISGUSTED,
49 distracted, 49 DISTRACTED,
50 embarrassed, 50 EMBARRASSED,
51 excited, 51 EXCITED,
52 flirtatious, 52 FLIRTATIOUS,
53 frustrated, 53 FRUSTRATED,
54 grumpy, 54 GRUMPY,
55 guilty, 55 GUILTY,
56 happy, 56 HAPPY,
57 hot, 57 HOT,
58 humbled, 58 HUMBLED,
59 humiliated, 59 HUMILIATED,
60 hungry, 60 HUNGRY,
61 hurt, 61 HURT,
62 impressed, 62 IMPRESSED,
63 in_awe, 63 IN_AWE,
64 in_love, 64 IN_LOVE,
65 indignant, 65 INDIGNANT,
66 interested, 66 INTERESTED,
67 intoxicated, 67 INTOXICATED,
68 invincible, 68 INVINCIBLE,
69 jealous, 69 JEALOUS,
70 lonely, 70 LONELY,
71 mean, 71 MEAN,
72 moody, 72 MOODY,
73 nervous, 73 NERVOUS,
74 neutral, 74 NEUTRAL,
75 offended, 75 OFFENDED,
76 playful, 76 PLAYFUL,
77 proud, 77 PROUD,
78 relieved, 78 RELIEVED,
79 remorseful, 79 REMORSEFUL,
80 restless, 80 RESTLESS,
81 sad, 81 SAD,
82 sarcastic, 82 SARCASTIC,
83 serious, 83 SERIOUS,
84 shocked, 84 SHOCKED,
85 shy, 85 SHY,
86 sick, 86 SICK,
87 sleepy, 87 SLEEPY,
88 stressed, 88 STRESSED,
89 surprised, 89 SURPRISED,
90 thirsty, 90 THIRSTY,
91 worried 91 WORRIED
92 } jabber_mood; 92 } JabberMood;
93 93
94 void jabber_mood_init(void); 94 void jabber_mood_init(void);
95 95
96 void jabber_set_mood(JabberStream *js, jabber_mood mood, const char *text /* might be NULL */); 96 void jabber_set_mood(JabberStream *js, JabberMood mood, const char *text /* might be NULL */);
97 97
98 #endif /* _PURPLE_JABBER_USERMOOD_H_ */ 98 #endif /* _PURPLE_JABBER_USERMOOD_H_ */