Mercurial > pidgin.yaz
annotate doc/notify-signals.dox @ 13753:c066473fff04
[gaim-migrate @ 16164]
SF Patch #1482906 from Sadrul
"The timestamp plugin was not working. This makes it
work again. Looks like I didn't update this one when
the displaying- signals were moved to gtkconv from conv.
Also, I think having this timestamp work for chat
windows can't hurt. So I have added support for that too."
If you object to the change in functionality, that's easy to remove. I wasn't sure, since I don't use this plugin, but I kept it because I can't think of a reason you wouldn't want the timestamps in chats as well.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 09 May 2006 01:42:39 +0000 |
parents | 216988c717da |
children | faa6afdcea39 |
rev | line source |
---|---|
12129 | 1 /** @page conversation-signals Notification Signals |
2 | |
3 @signals | |
4 @signal displaying-userinfo | |
5 @endsignals | |
6 | |
7 @signaldef displaying-userinfo | |
8 @signalproto | |
9 void (*displaying_userinfo)(GaimAccount *account, const char *who, char **infotext); | |
10 @endsignalproto | |
11 @signaldesc | |
12 Emitted before userinfo is handed to the UI to display. | |
13 @a infotext is a pointer to a string, so a plugin can replace the text that | |
14 will be displayed. | |
15 @note | |
16 Make sure to free @a *infotext before you replace it! | |
17 @param account The account on which the info was obtained. | |
18 @param who The screen name of the user whose info is to be displayed. | |
19 @param infotext A pointer to the userinfo text to be displayed. | |
20 @endsignaldef | |
21 | |
22 */ | |
23 // vim: syntax=c tw=75 et |