Mercurial > pidgin.yaz
annotate doc/account-signals.dox @ 12067:e859c1663a27
[gaim-migrate @ 14362]
Revert GtkSpell dynamic loading. A GtkSpell plugin is a better idea, and nosnilmot says he has one that's close to fully functional.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sun, 13 Nov 2005 01:44:11 +0000 |
parents | 1ec93dd2f359 |
children | e4666705944b |
rev | line source |
---|---|
6605 | 1 /** @page account-signals Account Signals |
2 | |
3 @signals | |
12053 | 4 @signal account-added |
6605 | 5 @signal account-connecting |
12053 | 6 @signal account-removed |
6605 | 7 @signal account-setting-info |
8 @signal account-set-info | |
11628 | 9 @signal account-status-changed |
6605 | 10 @endsignals |
11 | |
12 <hr> | |
13 | |
12053 | 14 @signaldef account-added |
15 @signalproto | |
16 void (*account_added)(GaimAccount *account); | |
17 @endsignalproto | |
18 @signaldesc | |
19 Emitted when an account is added. | |
20 @param account The account that was added. | |
21 @endsignaldef | |
22 | |
6605 | 23 @signaldef account-connecting |
24 @signalproto | |
25 void (*account_connecting)(GaimAccount *account); | |
26 @endsignalproto | |
27 @signaldesc | |
28 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
|
29 @param account The account in the process of connecting. |
6605 | 30 @endsignaldef |
31 | |
12053 | 32 @signaldef account-removed |
33 @signalproto | |
34 void (*account_removed)(GaimAccount *account); | |
35 @endsignalproto | |
36 @signaldesc | |
37 Emitted when an account is removed. | |
38 @param account The account that was removed. | |
39 @endsignaldef | |
40 | |
6605 | 41 @signaldef account-setting-info |
42 @signalproto | |
43 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
44 @endsignalproto | |
45 @signaldesc | |
46 Emitted when a user is about to send his new user info, or | |
47 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
48 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
49 @param new_info The new information to set. |
6605 | 50 @endsignaldef |
51 | |
52 @signaldef account-set-info | |
53 @signalproto | |
54 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
55 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
56 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
57 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 58 @param account The account that the info was set on. |
59 @param new_info The new information set. | |
60 @endsignaldef | |
61 | |
11628 | 62 @signaldef account-status-changed |
63 @signalproto | |
64 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); | |
65 @endsignalproto | |
66 @signaldesc | |
67 Emitted when the status of an account changes (after the change). | |
68 @param account The account that changed status. | |
69 @param old The status before change. | |
70 @param new The status after change. | |
71 @endsignaldef | |
72 | |
6605 | 73 */ |
74 // vim: syntax=c tw=75 et |