comparison libpurple/conversation.h @ 29264:a0fd6a41d127

propagate from branch 'im.pidgin.pidgin' (head 1203a733696f95eef53b04b5078e0a779371b4d3) to branch 'im.pidgin.cpw.attention_ui' (head 37530586a02ebf04f4d6002ba9e30f0ff49eb527)
author Marcus Lundblad <ml@update.uu.se>
date Sun, 07 Dec 2008 01:37:06 +0000
parents 22b8a92fb5ee
children 9ea6842536ba
comparison
equal deleted inserted replaced
24656:918738a0bba4 29264:a0fd6a41d127
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 */