comparison libpurple/connection.h @ 29529:3e5bb4e2334c

Added PurpleConnection flags to determine support for moods and mood messages. Mood messages is yet to be implemented in the UI (and replacing the current account-specific mood setting for XMPP).
author Marcus Lundblad <ml@update.uu.se>
date Thu, 04 Mar 2010 22:14:03 +0000
parents 8b17877d3294
children af709c6ab032
comparison
equal deleted inserted replaced
29528:cead5610c89a 29529:3e5bb4e2334c
42 PURPLE_CONNECTION_FORMATTING_WBFO = 0x0008, /**< The text buffer must be formatted as a whole */ 42 PURPLE_CONNECTION_FORMATTING_WBFO = 0x0008, /**< The text buffer must be formatted as a whole */
43 PURPLE_CONNECTION_NO_NEWLINES = 0x0010, /**< No new lines are allowed in outgoing messages */ 43 PURPLE_CONNECTION_NO_NEWLINES = 0x0010, /**< No new lines are allowed in outgoing messages */
44 PURPLE_CONNECTION_NO_FONTSIZE = 0x0020, /**< Connection does not send/receive font sizes */ 44 PURPLE_CONNECTION_NO_FONTSIZE = 0x0020, /**< Connection does not send/receive font sizes */
45 PURPLE_CONNECTION_NO_URLDESC = 0x0040, /**< Connection does not support descriptions with links */ 45 PURPLE_CONNECTION_NO_URLDESC = 0x0040, /**< Connection does not support descriptions with links */
46 PURPLE_CONNECTION_NO_IMAGES = 0x0080, /**< Connection does not support sending of images */ 46 PURPLE_CONNECTION_NO_IMAGES = 0x0080, /**< Connection does not support sending of images */
47 PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY = 0x0100 /**< Connection supports sending and receiving custom smileys */ 47 PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY = 0x0100, /**< Connection supports sending and receiving custom smileys */
48 48 PURPLE_CONNECTION_SUPPORT_MOODS = 0x0200, /**< Connection supports setting moods */
49 PURPLE_CONNECTION_SUPPORT_MOOD_MESSAGES = 0x0400 /**< Connection supports setting a message on moods */
49 } PurpleConnectionFlags; 50 } PurpleConnectionFlags;
50 51
51 typedef enum 52 typedef enum
52 { 53 {
53 PURPLE_DISCONNECTED = 0, /**< Disconnected. */ 54 PURPLE_DISCONNECTED = 0, /**< Disconnected. */