Mercurial > pidgin.yaz
annotate doc/account-signals.dox @ 9763:b85df3f44350
[gaim-migrate @ 10631]
"Can someone test this patch, diff'ed with 0.81 (anoncvs is
down, as usual).
http://javabsp.org/software/gaim/syslog_fd_leak.diff
This keeps the double .system 0 length files from being
created everytime you list the system log, which for some
reason aren't closed (although reading from the code, they
should be). Anyhow, since they are not created anymore, they
won't waste any fd's.
Another change that I've made, previously gaim is logging
chats to
logs/<prpl>/<my sn>.chat/<chatroom name>/<date-time>, now
it's logging to logs/<prpl>/<my sn>/<chatroom
name>.chat>/<date-time>. I think this makes more sense.
Oh, and gaim_normalize is not meant to be called a second
time while expecting the value of the first call to remain
what it should be." --Ka-Hing Cheung
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Mon, 16 Aug 2004 03:24:00 +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 |