Mercurial > pidgin.yaz
annotate doc/account-signals.dox @ 12692:4da7062a06c2
[gaim-migrate @ 15035]
SF Patch #1277888 from Douglas Thrift
I modified this a bit, but the end result is: This patch adds a logging preference that defaults to off. When enabled, the date is included in messages' timestamps in logs (in addition to the time).
This can be useful if you leave conversations open for days (for me, that's chats). The original patch had this affect timestamps in the conversation window as well, but I didn't like that. I figured it probably wasn't necessary, and I was dreading adding another conversation pref. I welcome feedback on this issue.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 03 Jan 2006 06:33:00 +0000 |
parents | 944c97d11bb1 |
children | e629076386f1 |
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 |
12127
944c97d11bb1
[gaim-migrate @ 14427]
Richard Laager <rlaager@wiktel.com>
parents:
12070
diff
changeset
|
7 @signal account-disabled |
944c97d11bb1
[gaim-migrate @ 14427]
Richard Laager <rlaager@wiktel.com>
parents:
12070
diff
changeset
|
8 @signal account-enabled |
6605 | 9 @signal account-setting-info |
10 @signal account-set-info | |
11628 | 11 @signal account-status-changed |
6605 | 12 @endsignals |
13 | |
14 <hr> | |
15 | |
12053 | 16 @signaldef account-added |
17 @signalproto | |
18 void (*account_added)(GaimAccount *account); | |
19 @endsignalproto | |
20 @signaldesc | |
21 Emitted when an account is added. | |
22 @param account The account that was added. | |
23 @endsignaldef | |
24 | |
6605 | 25 @signaldef account-connecting |
26 @signalproto | |
27 void (*account_connecting)(GaimAccount *account); | |
28 @endsignalproto | |
29 @signaldesc | |
30 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
|
31 @param account The account in the process of connecting. |
6605 | 32 @endsignaldef |
33 | |
12053 | 34 @signaldef account-removed |
35 @signalproto | |
36 void (*account_removed)(GaimAccount *account); | |
37 @endsignalproto | |
38 @signaldesc | |
39 Emitted when an account is removed. | |
40 @param account The account that was removed. | |
41 @endsignaldef | |
42 | |
12070 | 43 @signaldef account-disabled |
44 @signalproto | |
45 void (*account_disabled)(GaimAccount *account); | |
46 @endsignalproto | |
47 @signaldesc | |
48 Emitted when an account is disabled. | |
49 @param account The account that was disabled. | |
50 @endsignaldef | |
51 | |
52 @signaldef account-enabled | |
53 @signalproto | |
54 void (*account_enabled)(GaimAccount *account); | |
55 @endsignalproto | |
56 @signaldesc | |
57 Emitted when an account is enabled. | |
58 @param account The account that was enabled. | |
59 @endsignaldef | |
60 | |
6605 | 61 @signaldef account-setting-info |
62 @signalproto | |
63 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
64 @endsignalproto | |
65 @signaldesc | |
66 Emitted when a user is about to send his new user info, or | |
67 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
68 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
69 @param new_info The new information to set. |
6605 | 70 @endsignaldef |
71 | |
72 @signaldef account-set-info | |
73 @signalproto | |
74 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
75 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
76 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
77 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 78 @param account The account that the info was set on. |
79 @param new_info The new information set. | |
80 @endsignaldef | |
81 | |
11628 | 82 @signaldef account-status-changed |
83 @signalproto | |
84 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); | |
85 @endsignalproto | |
86 @signaldesc | |
87 Emitted when the status of an account changes (after the change). | |
88 @param account The account that changed status. | |
89 @param old The status before change. | |
90 @param new The status after change. | |
91 @endsignaldef | |
92 | |
6605 | 93 */ |
94 // vim: syntax=c tw=75 et |