diff doc/conversation-signals.dox @ 6781:0489da496f33

[gaim-migrate @ 7320] Updated signal documentation. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 07 Sep 2003 20:09:31 +0000
parents 3beb00af2e1a
children 551a8111977a
line wrap: on
line diff
--- a/doc/conversation-signals.dox	Sun Sep 07 20:02:45 2003 +0000
+++ b/doc/conversation-signals.dox	Sun Sep 07 20:09:31 2003 +0000
@@ -29,7 +29,7 @@
 
  @signaldef displaying-im-msg
   @signalproto
-gboolean (*displaying_im_msg)(GaimAccount *account, char **message);
+gboolean (*displaying_im_msg)(GaimAccount *account, GaimConversation *conv, char **message);
   @endsignalproto
   @signaldesc
    Emitted just before a message is displayed in an IM conversation.
@@ -39,17 +39,19 @@
   @note
    Make sure to free @a *message before you replace it!
   @param account The account the message is being displayed on.
+  @param conv    The conversation the message is being displayed on.
   @param message A pointer to the message that will be displayed.
   @return @c TRUE if the message should be canceled, or @c FALSE otherwise.
  @endsignaldef
 
  @signaldef displayed-im-msg
   @signalproto
-void (*displayed_im_msg)(GaimAccount *account, const char *message);
+void (*displayed_im_msg)(GaimAccount *account, GaimConversation *conv, const char *message);
   @endsignalproto
   @signaldesc
    Emitted after a message is displayed in an IM conversation.
   @param account The account the message was displayed on.
+  @param conv    The conversation the message was displayed on.
   @param message The message that was displayed.
  @endsignaldef
 
@@ -100,7 +102,7 @@
 
  @signaldef displaying-chat-msg
   @signalproto
-gboolean (*displaying_chat_msg)(GaimAccount *account, char **message);
+gboolean (*displaying_chat_msg)(GaimAccount *account, GaimConversation *conv, char **message);
   @endsignalproto
   @signaldesc
    Emitted just before a message is displayed in a chat.
@@ -110,17 +112,19 @@
   @note
    Make sure to free @a *message before you replace it!
   @param account The account the message is being displayed on.
+  @param conv    The conversation the message is being displayed on.
   @param message A pointer to the message that will be displayed.
   @return @c TRUE if the message should be canceled, or @c FALSE otherwise.
  @endsignaldef
 
  @signaldef displayed-chat-msg
   @signalproto
-void (*displayed_chat_msg)(GaimAccount *account, const char *message);
+void (*displayed_chat_msg)(GaimAccount *account, GaimConversation *conv, const char *message);
   @endsignalproto
   @signaldesc
    Emitted after a message is displayed in a chat conversation.
   @param account The account the message was displayed on.
+  @param conv    The conversation the message was displayed on.
   @param message The message that was displayed.
  @endsignaldef