Mercurial > pidgin
annotate doc/account-signals.dox @ 12010:b41b75f709e4
[gaim-migrate @ 14303]
sf patch #1350789, from Peter Lawler
"When Yahoo introduced their selective visibility, they
called it 'stealth'. I guess the US Air Force must've
got law-suit happy or something.
Anyways, here's the patch where we change it to
Presence, to match the native client."
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 08 Nov 2005 23:50:06 +0000 |
parents | d309a383ebf7 |
children | 1ec93dd2f359 |
rev | line source |
---|---|
6605 | 1 /** @page account-signals Account Signals |
2 | |
3 @signals | |
4 @signal account-connecting | |
5 @signal account-setting-info | |
6 @signal account-set-info | |
11628 | 7 @signal account-status-changed |
6605 | 8 @endsignals |
9 | |
10 <hr> | |
11 | |
12 @signaldef account-connecting | |
13 @signalproto | |
14 void (*account_connecting)(GaimAccount *account); | |
15 @endsignalproto | |
16 @signaldesc | |
17 This is called when an account is in the process of connecting. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
18 @param account The account in the process of connecting. |
6605 | 19 @endsignaldef |
20 | |
21 @signaldef account-setting-info | |
22 @signalproto | |
23 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
24 @endsignalproto | |
25 @signaldesc | |
26 Emitted when a user is about to send his new user info, or | |
27 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
28 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
29 @param new_info The new information to set. |
6605 | 30 @endsignaldef |
31 | |
32 @signaldef account-set-info | |
33 @signalproto | |
34 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
35 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
36 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
37 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 38 @param account The account that the info was set on. |
39 @param new_info The new information set. | |
40 @endsignaldef | |
41 | |
11628 | 42 @signaldef account-status-changed |
43 @signalproto | |
44 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); | |
45 @endsignalproto | |
46 @signaldesc | |
47 Emitted when the status of an account changes (after the change). | |
48 @param account The account that changed status. | |
49 @param old The status before change. | |
50 @param new The status after change. | |
51 @endsignaldef | |
52 | |
6605 | 53 */ |
54 // vim: syntax=c tw=75 et |