Mercurial > pidgin.yaz
annotate doc/notify-signals.dox @ 15136:31603a03cc02
[gaim-migrate @ 17921]
Etan had changed the account notify stuff so that the prpl decides
if the person is a buddy or not; I totally wiped that out with my
authorization stuff. This brings it back.
Additionally, I added a googletalk flag to JabberStream which
can determine at runtime if you're connected to Google Talk.
All of the Google Talk extensions can be detected individually
with disco, but this might be used for working with perfectly
standard XMPP that's implemented in what might be considered a
quirky way in Google Talk. For instance, Google Talk automatically
adds buddies to your roster when you authorize them to add you.
I was going to use this flag so that the Jabber prpl would
never ask me to add a Google Talk buddy who's just been
automatically added anyway.
I decided to keep it, though, since I may still want to
specify what group he's in.
This opens the door for more Google Talk customization though >:)
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Fri, 08 Dec 2006 02:51:47 +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 |