Mercurial > pidgin
annotate doc/account-signals.dox @ 9924:872c4d8c1192
[gaim-migrate @ 10816]
Sam S. added back support for rendering <strike>
Before anyone gets too excited and decides to add back sup, sub, and pre,
I'd like to recode some stuff in imhtml and make it easier and cleaner to
add tags, especially simple boolean tags like strike.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Tue, 31 Aug 2004 20:10:21 +0000 |
parents | bb9a25682675 |
children | e1e47878d0ed |
rev | line source |
---|---|
6605 | 1 /** @page account-signals Account Signals |
2 | |
3 @signals | |
4 @signal account-away | |
5 @signal account-connecting | |
6 @signal account-setting-info | |
7 @signal account-set-info | |
9447 | 8 @signal account-warned |
6605 | 9 @endsignals |
10 | |
11 <hr> | |
12 | |
13 @signaldef account-away | |
14 @signalproto | |
15 void (*account_away)(GaimAccount *account, const char *state, const char *message); | |
16 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
17 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
18 Emitted when an account goes away. |
6605 | 19 @param account The account that went away. |
20 @param state The away state. | |
21 @param message The away message. | |
22 @endsignaldef | |
23 | |
24 @signaldef account-connecting | |
25 @signalproto | |
26 void (*account_connecting)(GaimAccount *account); | |
27 @endsignalproto | |
28 @signaldesc | |
29 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
|
30 @param account The account in the process of connecting. |
6605 | 31 @endsignaldef |
32 | |
33 @signaldef account-setting-info | |
34 @signalproto | |
35 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
36 @endsignalproto | |
37 @signaldesc | |
38 Emitted when a user is about to send his new user info, or | |
39 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
40 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
41 @param new_info The new information to set. |
6605 | 42 @endsignaldef |
43 | |
44 @signaldef account-set-info | |
45 @signalproto | |
46 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
47 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
48 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
49 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 50 @param account The account that the info was set on. |
51 @param new_info The new information set. | |
52 @endsignaldef | |
53 | |
54 @signaldef account-warned | |
55 @signalproto | |
56 void (*account_warned)(GaimAccount *account, const char *warner, int level); | |
57 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
58 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
59 Emitted when an account got warned. |
6605 | 60 @param account The account that was warned. |
61 @param warner The screenname of the user that warned the account. | |
62 @param level The new warning level. | |
63 @endsignaldef | |
64 | |
65 */ | |
66 // vim: syntax=c tw=75 et |