Mercurial > pidgin
annotate doc/notify-signals.dox @ 12688:473c23442a36
[gaim-migrate @ 15031]
Add the notion of "popular" saved statuses. This lets us show 6 recently
used/popular statuses in the context menu for the docklet.
Eventually I'll add the same list to the status box--but that's a little
more work. If someone else wants to tackle it before I have a chance to
feel free (and let me know!)
Does this look ok to everyone (the docklet menu changes)? Would it
be better if it was a submenu? Or if it was labeled? It'd be cool
if the icons reflected the status.
Oh, and I just remembered that the menu items don't actually work yet...
but that's not too hard, I think I can get to that tonight
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 03 Jan 2006 01:25:06 +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 |