changeset 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 e9a730ad5a3c
children e624b492b981
files ChangeLog doc/conversation-signals.dox
diffstat 2 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun Sep 07 20:02:45 2003 +0000
+++ b/ChangeLog	Sun Sep 07 20:09:31 2003 +0000
@@ -10,6 +10,7 @@
 	* Yahoo ignore support (Jesse Farmer (farmerje))
 	* The accounts window now shows offline accounts as greyed out, and
 	  online accounts as colored.
+	* Fixed the text replacement plugin.
 	* Added SSL support, compatible with GNUTLS and Mozilla NSS.
 	* Added support for gettext 0.12.x.
 	* The right-click menu for conversation tabs now shows the tab icon
--- 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