comparison libpurple/conversation.h @ 29679:e57315a062cb

propagate from branch 'im.pidgin.pidgin' (head 580055bb22fea0076d3a90d9df9346abd1789bab) to branch 'im.pidgin.cpw.attention_ui' (head 89303c99f052c92262b6a169005f053106ce8f61)
author Marcus Lundblad <ml@update.uu.se>
date Mon, 13 Apr 2009 13:37:33 +0000
parents 15ae2dea92b3 b98519a42e53
children fba8dd643796
comparison
equal deleted inserted replaced
26648:8c3b1a059ecc 29679:e57315a062cb
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 */