Mercurial > pidgin.yaz
annotate doc/account-signals.dox @ 11851:3bfb2cffcef2
[gaim-migrate @ 14142]
inspired by Richard Stellingwerff's patch 1339606, this workaround for
annoying visible borders on tab close buttons is no longer required with
at least gtk 2.6 (if someone can confirm if it was fixed in 2.4 we could
remove it there too)
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 27 Oct 2005 15:15:52 +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 |