Mercurial > pidgin
view doc/account-signals.dox @ 16552:17ac25319a77
Quoth Charkins:
This patch has two changes:
"This patch has two changes:
First is to slightly change the re-creation behavior of the docklet. Sadrul pointed out on gaim-devel that the x11 docklet re-creates itself when it is destroyed and thought this might be causing problems with fluxbox. This patch now distinguishes between initial creation and re-creation. When re-creating, the docklet no longer registers itself as a visibility manager until it successfully embeds.
Second is to change the timeout behavior for embedding. Because the notification area API is asynchronous, gaim assumes the docklet gets embeded for a certain timeout period, allowing the buddy list to start hidden before the docklet has been embeded in the notification area. If the timeout occurs, it is removed as a visibility manager and the buddy list will become visible. This timeout has been set at 5 seconds. There have been a few reports that indicate this timeout period is not long enough when starting gaim from a saved session upon login. I have been hesitant to increase the timeout, as it has the potential of delaying the startup of gaim for the timeout period if the buddy list was hidden when gaim last closed and there is not currently a notification area available. This patch makes the x11 docklet track whether it was successfully embedded and uses a longer timeout (15 seconds in this patch) only if it successfully embedded on the previous execution. Otherwise, it uses the shorter 5 second timeout. "
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sat, 28 Apr 2007 02:33:40 +0000 |
parents | 8cf53d7a0887 |
children | 8e3ef71c4362 e0613cf8c493 |
line wrap: on
line source
/** @page account-signals Account Signals @signals @signal account-added @signal account-connecting @signal account-removed @signal account-disabled @signal account-enabled @signal account-setting-info @signal account-set-info @signal account-status-changed @endsignals <hr> @signaldef account-added @signalproto void (*account_added)(PurpleAccount *account); @endsignalproto @signaldesc Emitted when an account is added. @param account The account that was added. @endsignaldef @signaldef account-connecting @signalproto void (*account_connecting)(PurpleAccount *account); @endsignalproto @signaldesc This is called when an account is in the process of connecting. @param account The account in the process of connecting. @endsignaldef @signaldef account-removed @signalproto void (*account_removed)(PurpleAccount *account); @endsignalproto @signaldesc Emitted when an account is removed. @param account The account that was removed. @endsignaldef @signaldef account-disabled @signalproto void (*account_disabled)(PurpleAccount *account); @endsignalproto @signaldesc Emitted when an account is disabled. @param account The account that was disabled. @endsignaldef @signaldef account-enabled @signalproto void (*account_enabled)(PurpleAccount *account); @endsignalproto @signaldesc Emitted when an account is enabled. @param account The account that was enabled. @endsignaldef @signaldef account-setting-info @signalproto void (*account_setting_info)(PurpleAccount *account, const char *new_info); @endsignalproto @signaldesc Emitted when a user is about to send his new user info, or profile, to the server. @param account The account that the info will be set on. @param new_info The new information to set. @endsignaldef @signaldef account-set-info @signalproto void (*account_set_info)(PurpleAccount *account, const char *new_info); @endsignalproto @signaldesc Emitted when a user sent his new user info, or profile, to the server. @param account The account that the info was set on. @param new_info The new information set. @endsignaldef @signaldef account-status-changed @signalproto void (*account_status_changed)(PurpleAccount *account, PurpleStatus *old, PurpleStatus *new); @endsignalproto @signaldesc Emitted when the status of an account changes (after the change). @param account The account that changed status. @param old The status before change. @param new The status after change. @endsignaldef @signaldef account-alias-changed @signalproto void (*account_alias_changed)(PurpleAccount *account, const char *old); @endsignalproto @signaldesc Emitted when the alias of an account changes (after the change). @param account The account for which the alias was changed. @param old The alias before change. @endsignaldef */ // vim: syntax=c tw=75 et