comparison doc/conversation-signals.dox @ 9517:0524b36c701a

[gaim-migrate @ 10344] " And hopefully i got everything updated this time around.. everything being signals_test.c, plugins/ChangeLog.API and doc/conversation-signals.dox." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 12 Jul 2004 19:37:07 +0000
parents 1fac0336890c
children 8b2451878e26
comparison
equal deleted inserted replaced
9516:464e2b6bc7e6 9517:0524b36c701a
30 @signal chat-inviting-user 30 @signal chat-inviting-user
31 @signal chat-invited-user 31 @signal chat-invited-user
32 @signal chat-invited 32 @signal chat-invited
33 @signal chat-joined 33 @signal chat-joined
34 @signal chat-left 34 @signal chat-left
35 @signal chat-topic-changed
35 @endsignals 36 @endsignals
36 37
37 @signaldef writing-im-msg 38 @signaldef writing-im-msg
38 @signalproto 39 @signalproto
39 gboolean (*writing_im_msg)(GaimAccount *account, GaimConversation *conv, char **message); 40 gboolean (*writing_im_msg)(GaimAccount *account, GaimConversation *conv, char **message);
435 @signaldesc 436 @signaldesc
436 Emitted when an account leaves a chat room. 437 Emitted when an account leaves a chat room.
437 @param conv The conversation that left the chat room. 438 @param conv The conversation that left the chat room.
438 @endsignaldef 439 @endsignaldef
439 440
441 @signaldef chat-topic-changed
442 @signalproto
443 void (*chat_topic_changed)(GaimConversation *conv, const char *who, const char *topic);
444 @endsignalproto
445 @signaldesc
446 Emitted when the topic is changed in a chat.
447 @param conv The conversation whose topic changed.
448 @param who The name of the person that changed the topic.
449 @param topic The new topic.
450 @endsignaldef
451
440 */ 452 */
441 // vim: syntax=c tw=75 et 453 // vim: syntax=c tw=75 et