view 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
line wrap: on
line source

/*
 * purple - Jabber Protocol Plugin
 *
 * Copyright (C) 2007, Andreas Monitzer <andy@monitzer.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#ifndef _PURPLE_JABBER_USERMOOD_H_
#define _PURPLE_JABBER_USERMOOD_H_

#include "jabber.h"

/* Implementation of XEP-0107 */

typedef enum _JabberMood { /* wtf */
    UNKNOWN = 0,
    AFRAID,
    AMAZED,
    ANGRY,
    ANNOYED,
    ANXIOUS,
    AROUSED,
    ASHAMED,
    BORED,
    BRAVE,
    CALM,
    COLD,
    CONFUSED,
    CONTENTED,
    CRANKY,
    CURIOUS,
    DEPRESSED,
    DISAPPOINTED,
    DISGUSTED,
    DISTRACTED,
    EMBARRASSED,
    EXCITED,
    FLIRTATIOUS,
    FRUSTRATED,
    GRUMPY,
    GUILTY,
    HAPPY,
    HOT,
    HUMBLED,
    HUMILIATED,
    HUNGRY,
    HURT,
    IMPRESSED,
    IN_AWE,
    IN_LOVE,
    INDIGNANT,
    INTERESTED,
    INTOXICATED,
    INVINCIBLE,
    JEALOUS,
    LONELY,
    MEAN,
    MOODY,
    NERVOUS,
    NEUTRAL,
    OFFENDED,
    PLAYFUL,
    PROUD,
    RELIEVED,
    REMORSEFUL,
    RESTLESS,
    SAD,
    SARCASTIC,
    SERIOUS,
    SHOCKED,
    SHY,
    SICK,
    SLEEPY,
    STRESSED,
    SURPRISED,
    THIRSTY,
    WORRIED
} JabberMood;

void jabber_mood_init(void);

void jabber_set_mood(JabberStream *js, JabberMood mood, const char *text /* might be NULL */);

#endif /* _PURPLE_JABBER_USERMOOD_H_ */