Index: doc/conversation-signals.dox =================================================================== RCS file: /cvsroot/gaim/gaim/doc/conversation-signals.dox,v retrieving revision 1.10 diff -u -p -u -r1.10 conversation-signals.dox --- doc/conversation-signals.dox 17 Feb 2004 04:09:28 -0000 1.10 +++ doc/conversation-signals.dox 11 Apr 2004 16:27:11 -0000 @@ -1,11 +1,15 @@ /** @page conversation-signals Conversation Signals @signals + @signal writing-im-msg + @signal wrote-im-msg @signal displaying-im-msg @signal displayed-im-msg @signal sending-im-msg @signal sent-im-msg @signal received-im-msg + @signal writing-chat-msg + @signal wrote-chat-msg @signal displaying-chat-msg @signal displayed-chat-msg @signal sending-chat-msg @@ -53,7 +57,7 @@ void (*wrote_im_msg)(GaimAccount *accoun Emitted after a message is entered by the user, but before it is sent and displyed. When sending an IM, the order that the im-msg callbacks will be called is: writing-im-msg, wrote-im-msg, displaying-im-msg, displayed-im-msg, sending-im-msg, - sending-im-msg, and finally sent-im-msg. + and finally sent-im-msg. @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. @@ -130,6 +134,7 @@ gboolean (*received_im_msg)(GaimAccount @param account The account the message was received on. @param sender A pointer to the username of the sender. @param message A pointer to the message that was sent. + @param flags The message flags. @endsignaldef @signaldef writing-chat-msg @@ -150,15 +155,15 @@ gboolean (*writing_chat_msg)(GaimAccount @return @c TRUE if the message should be canceled, or @c FALSE otherwise. @endsignaldef - @signaldef wrote-im-msg + @signaldef wrote-chat-msg @signalproto -void (*wrote_im_msg)(GaimAccount *account, GaimConversation *conv, const char *message); +void (*wrote_chat_msg)(GaimAccount *account, GaimConversation *conv, const char *message); @endsignalproto @signaldesc Emitted after a message is entered by the user, but before it is sent and displyed. When sending an IM, the order that the im-msg callbacks will be called is: writing-im-msg, wrote-im-msg, displaying-im-msg, displayed-im-msg, sending-im-msg, - sending-im-msg, and finally sent-im-msg. + and finally sent-im-msg. @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.