comparison libpurple/conversation.h @ 29259:d855ff9cf839

propagate from branch 'im.pidgin.pidgin' (head 311b4db51b575e1baa7f78d751ff926475edecc3) to branch 'im.pidgin.cpw.attention_ui' (head 97b1a4ad4476369802e26e6ddf7aec5a5e46dc00)
author Marcus Lundblad <ml@update.uu.se>
date Thu, 13 Nov 2008 19:49:58 +0000
parents 22b8a92fb5ee
children 9ea6842536ba
comparison
equal deleted inserted replaced
24404:f18f37a62971 29259:d855ff9cf839
643 */ 643 */
644 void purple_conversation_write(PurpleConversation *conv, const char *who, 644 void purple_conversation_write(PurpleConversation *conv, const char *who,
645 const char *message, PurpleMessageFlags flags, 645 const char *message, PurpleMessageFlags flags,
646 time_t mtime); 646 time_t mtime);
647 647
648 648 /**
649 * Sends an attention to a conversation window.
650 *
651 * This is to be called by prpls to tell UIs to set off the action for
652 * an attention message
653 *
654 * @param conv The conversation
655 * @param who The user who sent the attention
656 * @param type The attention type (will be 0 for protocols that only have 1 type)
657 * @param flags The message flags (send, receive)
658 * @param mtime The time the attentsion was sent
659 */
660 void purple_conversation_attention(PurpleConversation *conv, const char *who,
661 guint attention_type, PurpleMessageFlags flags, time_t mtime);
662
649 /** 663 /**
650 Set the features as supported for the given conversation. 664 Set the features as supported for the given conversation.
651 @param conv The conversation 665 @param conv The conversation
652 @param features Bitset defining supported features 666 @param features Bitset defining supported features
653 */ 667 */