Mercurial > pidgin
annotate doc/plugin-signals.dox @ 13505:7a6763bbf82b
[gaim-migrate @ 15881]
On Mon, 2006-03-13 at 15:10 -0500, Adil wrote:
> Would it be `better' to not print an error message for the event
> (because it is possible to have a chat-window for a disconnected
> account), and popup a menu with disabled entries instead?
This commit implements that. I've also removed some code duplication by having create_chat_menu() look up the prpl_info from the gc.
Also, I think we should grey out the Send File menu item when a particular user doesn't have the ability to receive files, rather than not show it. It's more consistent with what we do elsewhere. I've made that change as well.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 14 Mar 2006 06:15:31 +0000 |
| parents | 1ec93dd2f359 |
| children | 8cf53d7a0887 |
| rev | line source |
|---|---|
| 12053 | 1 /** @page plugin-signals Plugin Signals |
| 2 | |
| 3 @signals | |
| 4 @signal plugin-load | |
| 5 @signal plugin-unload | |
| 6 @endsignals | |
| 7 | |
| 8 <hr> | |
| 9 | |
| 10 @signaldef plugin-load | |
| 11 @signalproto | |
| 12 void (*plugin_load)(GaimPlugin *plugin); | |
| 13 @endsignalproto | |
| 14 @signaldesc | |
| 15 Emitted when a plugin is loaded. | |
| 16 @param plugin The plugin that was loaded. | |
| 17 @endsignaldef | |
| 18 | |
| 19 @signaldef plugin-unload | |
| 20 @signalproto | |
| 21 void (*plugin_unload)(GaimPlugin *plugin); | |
| 22 @endsignalproto | |
| 23 @signaldesc | |
| 24 Emitted when a plugin is unloaded. | |
| 25 @param plugin The plugin that was unloaded. | |
| 26 @endsignaldef | |
| 27 | |
| 28 */ | |
| 29 // vim: syntax=c tw=75 et |
