summaryrefslogtreecommitdiff
path: root/doc/conversation-signals.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/conversation-signals.dox')
-rw-r--r--doc/conversation-signals.dox30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/conversation-signals.dox b/doc/conversation-signals.dox
index 4e1ca8569a..cc008fc3b7 100644
--- a/doc/conversation-signals.dox
+++ b/doc/conversation-signals.dox
@@ -33,6 +33,8 @@
@signal chat-left
@signal chat-topic-changed
@signal conversation-extended-menu
+ @signal sent-attention
+ @signal got-attention
@endsignals
@see conversation.h
@@ -476,5 +478,33 @@ void (*conversation_extended_menu)(PurpleConversation *conv, GList **list);
@param list A pointer to the list of actions.
@since 2.1.0
@endsignaldef
+
+ @signaldef sent-attention
+ @signalproto
+void (*got_attention)(PurpleAccount *account, const char *who,
+ PurpleConversation *conv, guint type)
+ @endsignalproto
+ @signaldesc
+ Emitted when receiving an attention message (buzz, nudge, etc.).
+ @param account The account
+ @param who The name of the person receiving the attention
+ @param conv The conversation
+ @param type The attention type (an index starting at 0)
+ @since 2.7.0
+ @endsignaldef
+
+ @signaldef got-attention
+ @signalproto
+void (*got_attention)(PurpleAccount *account, const char *who,
+ PurpleConversation *conv, guint type)
+ @endsignalproto
+ @signaldesc
+ Emitted when receiving an attention message (buzz, nudge, etc.).
+ @param account The account
+ @param who The name of the person sending the attention
+ @param conv The conversation
+ @param type The attention type (an index starting at 0)
+ @since 2.7.0
+ @endsignaldef
*/
// vim: syntax=c.doxygen tw=75 et