Mercurial > pidgin
annotate doc/account-signals.dox @ 11647:a4880ada048d
[gaim-migrate @ 13926]
About Boxed!
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Wed, 12 Oct 2005 23:55:41 +0000 |
parents | e1e47878d0ed |
children | d309a383ebf7 |
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 | |
9447 | 7 @signal account-warned |
11628 | 8 @signal account-status-changed |
6605 | 9 @endsignals |
10 | |
11 <hr> | |
12 | |
13 @signaldef account-connecting | |
14 @signalproto | |
15 void (*account_connecting)(GaimAccount *account); | |
16 @endsignalproto | |
17 @signaldesc | |
18 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
|
19 @param account The account in the process of connecting. |
6605 | 20 @endsignaldef |
21 | |
22 @signaldef account-setting-info | |
23 @signalproto | |
24 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
25 @endsignalproto | |
26 @signaldesc | |
27 Emitted when a user is about to send his new user info, or | |
28 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
29 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
30 @param new_info The new information to set. |
6605 | 31 @endsignaldef |
32 | |
33 @signaldef account-set-info | |
34 @signalproto | |
35 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
36 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
37 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
38 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 39 @param account The account that the info was set on. |
40 @param new_info The new information set. | |
41 @endsignaldef | |
42 | |
43 @signaldef account-warned | |
44 @signalproto | |
45 void (*account_warned)(GaimAccount *account, const char *warner, int level); | |
46 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
47 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
48 Emitted when an account got warned. |
6605 | 49 @param account The account that was warned. |
50 @param warner The screenname of the user that warned the account. | |
51 @param level The new warning level. | |
52 @endsignaldef | |
53 | |
11628 | 54 @signaldef account-status-changed |
55 @signalproto | |
56 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); | |
57 @endsignalproto | |
58 @signaldesc | |
59 Emitted when the status of an account changes (after the change). | |
60 @param account The account that changed status. | |
61 @param old The status before change. | |
62 @param new The status after change. | |
63 @endsignaldef | |
64 | |
6605 | 65 */ |
66 // vim: syntax=c tw=75 et |