diff plugins/SIGNALS @ 808:9d61f3d01046

[gaim-migrate @ 818] event_new_conversation committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 31 Aug 2000 03:40:17 +0000
parents ae7c762775cd
children 15d005f8baaf
line wrap: on
line diff
--- a/plugins/SIGNALS	Thu Aug 31 02:12:58 2000 +0000
+++ b/plugins/SIGNALS	Thu Aug 31 03:40:17 2000 +0000
@@ -19,7 +19,8 @@
 	event_chat_send,
 	event_warned,
 	event_error,
-	event_quit
+	event_quit,
+	event_new_conversation
 };
 
 To add a signal handler, call the fuction gaim_signal_connect with the
@@ -194,3 +195,10 @@
 	in the login window or the Quit option in the File menu on the buddy
 	list). If gaim dies or is murdered, this won't be called. It's not my
 	fault, it's Seg's.
+
+event_new_conversation:
+	char *who
+
+	'who' is who the conversation is with. This gets called when a new
+	conversation window is created. You can use find_conversation(char *)
+	to then find the struct conversation * and modify those values.