Sun, 03 Jun 2012 07:40:47 +0000
Setup WBFO in a WebView.
Though, really, I wish execCommand could work on arbitrary ranges
instead of needed to save and restore the selection.
| 6605 | 1 | /** @page account-signals Account Signals |
| 2 | ||
| 3 | @signals | |
|
26986
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
4 | @signal account-created |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
5 | @signal account-destroying |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
6 | @signal account-added |
| 6605 | 7 | @signal account-connecting |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
8 | @signal account-removed |
|
12127
0ff56edeaaaf
[gaim-migrate @ 14427]
Casey Harkins <charkins@pidgin.im>
parents:
12070
diff
changeset
|
9 | @signal account-disabled |
|
0ff56edeaaaf
[gaim-migrate @ 14427]
Casey Harkins <charkins@pidgin.im>
parents:
12070
diff
changeset
|
10 | @signal account-enabled |
| 6605 | 11 | @signal account-setting-info |
| 12 | @signal account-set-info | |
| 11628 | 13 | @signal account-status-changed |
|
26871
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
14 | @signal account-actions-changed |
|
21140
26ad90b1ead5
Add the account-alias-changed signal to the summary at the top.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
15 | @signal account-alias-changed |
|
21205
af0ebfad2b43
Changelog some of the stuff.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21204
diff
changeset
|
16 | @signal account-authorization-requested |
|
31325
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
17 | @signal account-authorization-requested-with-message |
|
21205
af0ebfad2b43
Changelog some of the stuff.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21204
diff
changeset
|
18 | @signal account-authorization-denied |
|
af0ebfad2b43
Changelog some of the stuff.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
21204
diff
changeset
|
19 | @signal account-authorization-granted |
|
21287
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
20 | @signal account-error-changed |
|
29993
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
21 | @signal account-signed-on |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
22 | @signal account-signed-off |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
23 | @signal account-connection-error |
| 6605 | 24 | @endsignals |
| 25 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
26 | @see account.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
27 | |
| 6605 | 28 | <hr> |
| 29 | ||
|
26986
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
30 | @signaldef account-created |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
31 | @signalproto |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
32 | void (*account_created)(PurpleAccount *account); |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
33 | @endsignalproto |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
34 | @signaldesc |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
35 | Emitted when an account is created by calling purple_account_new. |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
36 | @param account The account. |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
37 | @endsignaldef |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
38 | |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
39 | @signaldef account-destroying |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
40 | @signalproto |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
41 | void (*account_destroying)(PurpleAccount *account); |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
42 | @endsignalproto |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
43 | @signaldesc |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
44 | Emitted when an account is about to be destroyed. |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
45 | @param account The account. |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
46 | @endsignaldef |
|
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
47 | |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
48 | @signaldef account-added |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
49 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
50 | void (*account_added)(PurpleAccount *account); |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
51 | @endsignalproto |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
52 | @signaldesc |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
53 | Emitted when an account is added. |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
54 | @param account The account that was added. |
|
26986
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
55 | @see purple_accounts_add |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
56 | @endsignaldef |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
57 | |
| 6605 | 58 | @signaldef account-connecting |
| 59 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
60 | void (*account_connecting)(PurpleAccount *account); |
| 6605 | 61 | @endsignalproto |
| 62 | @signaldesc | |
| 63 | This is called when an account is in the process of connecting. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
64 | @param account The account in the process of connecting. |
| 6605 | 65 | @endsignaldef |
| 66 | ||
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
67 | @signaldef account-removed |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
68 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
69 | void (*account_removed)(PurpleAccount *account); |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
70 | @endsignalproto |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
71 | @signaldesc |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
72 | Emitted when an account is removed. |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
73 | @param account The account that was removed. |
|
26986
5b66ec752214
Add account-(created|destroying) signals.
Paul Aurich <darkrain42@pidgin.im>
parents:
26871
diff
changeset
|
74 | @see purple_accounts_remove |
|
12053
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
75 | @endsignaldef |
|
5aa634db0fc1
[gaim-migrate @ 14348]
Casey Harkins <charkins@pidgin.im>
parents:
11685
diff
changeset
|
76 | |
| 12070 | 77 | @signaldef account-disabled |
| 78 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
79 | void (*account_disabled)(PurpleAccount *account); |
| 12070 | 80 | @endsignalproto |
| 81 | @signaldesc | |
| 82 | Emitted when an account is disabled. | |
| 83 | @param account The account that was disabled. | |
| 84 | @endsignaldef | |
| 85 | ||
| 86 | @signaldef account-enabled | |
| 87 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
88 | void (*account_enabled)(PurpleAccount *account); |
| 12070 | 89 | @endsignalproto |
| 90 | @signaldesc | |
| 91 | Emitted when an account is enabled. | |
| 92 | @param account The account that was enabled. | |
| 93 | @endsignaldef | |
| 94 | ||
| 6605 | 95 | @signaldef account-setting-info |
| 96 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
97 | void (*account_setting_info)(PurpleAccount *account, const char *new_info); |
| 6605 | 98 | @endsignalproto |
| 99 | @signaldesc | |
| 100 | Emitted when a user is about to send his new user info, or | |
| 101 | profile, to the server. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
102 | @param account The account that the info will be set on. |
|
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
103 | @param new_info The new information to set. |
| 6605 | 104 | @endsignaldef |
| 105 | ||
| 106 | @signaldef account-set-info | |
| 107 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
108 | void (*account_set_info)(PurpleAccount *account, const char *new_info); |
| 6605 | 109 | @endsignalproto |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
110 | @signaldesc |
|
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
111 | Emitted when a user sent his new user info, or profile, to the server. |
| 6605 | 112 | @param account The account that the info was set on. |
| 113 | @param new_info The new information set. | |
| 114 | @endsignaldef | |
| 115 | ||
| 11628 | 116 | @signaldef account-status-changed |
| 117 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
118 | void (*account_status_changed)(PurpleAccount *account, PurpleStatus *old, PurpleStatus *new); |
| 11628 | 119 | @endsignalproto |
| 120 | @signaldesc | |
| 121 | Emitted when the status of an account changes (after the change). | |
| 122 | @param account The account that changed status. | |
| 123 | @param old The status before change. | |
| 124 | @param new The status after change. | |
| 125 | @endsignaldef | |
| 126 | ||
|
26871
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
127 | @signaldef account-actions-changed |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
128 | @signalproto |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
129 | void (*account_actions_changed)(PurpleAccount *account); |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
130 | @endsignalproto |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
131 | @signaldesc |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
132 | Emitted when the account actions are changed after initial connection. |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
133 | @param account The account whose actions changed. |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
134 | @endsignaldef |
|
d62964222795
Add a new signal which is emitted (after the account is connected) if the
Paul Aurich <darkrain42@pidgin.im>
parents:
26581
diff
changeset
|
135 | |
|
13282
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
136 | @signaldef account-alias-changed |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
137 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
13282
diff
changeset
|
138 | void (*account_alias_changed)(PurpleAccount *account, const char *old); |
|
13282
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
139 | @endsignalproto |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
140 | @signaldesc |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
141 | Emitted when the alias of an account changes (after the change). |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
142 | @param account The account for which the alias was changed. |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
143 | @param old The alias before change. |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
144 | @endsignaldef |
|
83e33fe74de3
[gaim-migrate @ 15647]
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
12127
diff
changeset
|
145 | |
|
20421
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
146 | @signaldef account-authorization-requested |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
147 | @signalproto |
|
26581
669b448a46e5
Update the documentation for the account-authorization-requested signal, as
Richard Laager <rlaager@pidgin.im>
parents:
22430
diff
changeset
|
148 | int (*account_authorization_requested)(PurpleAccount *account, const char *user); |
|
20421
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
149 | @endsignalproto |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
150 | @signaldesc |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
151 | Emitted when a user requests authorization. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
152 | @param account The account. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
153 | @param user The name of the user requesting authorization. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
154 | @return Less than zero to deny the request without prompting, greater |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
155 | than zero if the request should be granted. If zero is returned, |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
156 | then the user will be prompted with the request. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
157 | @endsignaldef |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
158 | |
|
31325
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
159 | @signaldef account-authorization-requested-with-message |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
160 | @signalproto |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
161 | int (*account_authorization_requested)(PurpleAccount *account, const char *user, const char *message); |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
162 | @endsignalproto |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
163 | @signaldesc |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
164 | Emitted when a user requests authorization. |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
165 | @param account The account. |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
166 | @param user The name of the user requesting authorization. |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
167 | @param message The authorization request message |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
168 | @return PURPLE_ACCOUNT_RESPONSE_IGNORE to silently ignore the request, |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
169 | PURPLE_ACCOUNT_RESPONSE_DENY to block the request (the sender might |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
170 | get informed, PURPLE_ACCOUNT_RESPONSE_ACCEPT if the request should be |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
171 | granted. If PURPLE_ACCOUNT_RESPONSE_PASS is returned, then the user |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
172 | will be prompted with the request. |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
173 | @endsignaldef |
|
2bb18e0658e7
Patch from Stefan Ott to add the account-authorization-requested-with-message
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
29993
diff
changeset
|
174 | |
|
20421
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
175 | @signaldef account-authorization-denied |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
176 | @signalproto |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
177 | void (*account_authorization_denied)(PurpleAccount *account, const char *user); |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
178 | @endsignalproto |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
179 | @signaldesc |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
180 | Emitted when the authorization request for a buddy is denied. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
181 | @param account The account. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
182 | @param user The name of the user requesting authorization. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
183 | @endsignaldef |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
184 | |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
185 | @signaldef account-authorization-granted |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
186 | @signalproto |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
187 | void (*account_authorization_granted)(PurpleAccount *account, const char *user); |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
188 | @endsignalproto |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
189 | @signaldesc |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
190 | Emitted when the authorization request for a buddy is granted. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
191 | @param account The account. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
192 | @param user The name of the user requesting authorization. |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
193 | @endsignaldef |
|
e6c82f6c2485
Authorization signals. Modified patch from cockroach. Closes #1061.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
16244
diff
changeset
|
194 | |
|
21287
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
195 | @signaldef account-error-changed |
|
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
196 | @signalproto |
|
21298
d0d9cfaf3fe7
Mark pointed out that PurpleConnectionErrorPair is not a very good name for the
Will Thompson <resiak@pidgin.im>
parents:
21295
diff
changeset
|
197 | void (*account_error_changed)(PurpleAccount *account, const PurpleConnectionErrorInfo *old_error, const PurpleConnectionErrorInfo *current_error); |
|
21287
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
198 | @endsignalproto |
|
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
199 | @signaldesc |
|
22430
9a2ae22bf043
I think it's reasonable to just say "don't do this".
Will Thompson <resiak@pidgin.im>
parents:
21682
diff
changeset
|
200 | Emitted when @a account's error changes. You should not call |
|
9a2ae22bf043
I think it's reasonable to just say "don't do this".
Will Thompson <resiak@pidgin.im>
parents:
21682
diff
changeset
|
201 | purple_account_clear_current_error() while this signal is being emitted. |
|
21294
1fe885468da2
Add the old error to the account-error-changed signal.
Will Thompson <resiak@pidgin.im>
parents:
21287
diff
changeset
|
202 | @param account The account whose error has changed. |
|
1fe885468da2
Add the old error to the account-error-changed signal.
Will Thompson <resiak@pidgin.im>
parents:
21287
diff
changeset
|
203 | @param old_error The account's previous error, or @c NULL if it had no |
|
21300
1c23e08cb824
Document exactly how long the PurpleConnectionErrorInfo pointers given out by
Will Thompson <resiak@pidgin.im>
parents:
21298
diff
changeset
|
204 | error. After this signal is emitted, @a old_error is |
|
1c23e08cb824
Document exactly how long the PurpleConnectionErrorInfo pointers given out by
Will Thompson <resiak@pidgin.im>
parents:
21298
diff
changeset
|
205 | not guaranteed to be a valid pointer. |
|
21294
1fe885468da2
Add the old error to the account-error-changed signal.
Will Thompson <resiak@pidgin.im>
parents:
21287
diff
changeset
|
206 | @param new_error The account's new error, or @c NULL if it has no error. |
|
21300
1c23e08cb824
Document exactly how long the PurpleConnectionErrorInfo pointers given out by
Will Thompson <resiak@pidgin.im>
parents:
21298
diff
changeset
|
207 | If not @c NULL, @a new_error will remain a valid until |
|
1c23e08cb824
Document exactly how long the PurpleConnectionErrorInfo pointers given out by
Will Thompson <resiak@pidgin.im>
parents:
21298
diff
changeset
|
208 | pointer just after the next time this signal is emitted |
|
1c23e08cb824
Document exactly how long the PurpleConnectionErrorInfo pointers given out by
Will Thompson <resiak@pidgin.im>
parents:
21298
diff
changeset
|
209 | for this @a account. |
|
21287
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
210 | @see purple_account_get_current_error() |
|
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
211 | @endsignaldef |
|
c4971408eae8
Make PurpleAccount keep track of the last connection error suffered (or not, if
Will Thompson <resiak@pidgin.im>
parents:
21205
diff
changeset
|
212 | |
|
29993
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
213 | @signaldef account-signed-on |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
214 | @signalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
215 | void (*signed_on)(PurpleAccount *account); |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
216 | @endsignalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
217 | @signaldesc |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
218 | Emitted when an account has signed on. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
219 | @param account The account that has signed on. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
220 | @endsignaldef |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
221 | |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
222 | @signaldef account-signed-off |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
223 | @signalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
224 | void (*signed_off)(PurpleAccount *account); |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
225 | @endsignalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
226 | @signaldesc |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
227 | Emitted when an account has signed off. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
228 | @param account The account that has signed off. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
229 | @endsignaldef |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
230 | |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
231 | @signaldef account-connection-error |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
232 | @signalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
233 | void (*connection_error)(PurpleAccount *gc, PurpleConnectionError err, const gchar *desc) |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
234 | @endsignalproto |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
235 | @signaldesc |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
236 | Emitted when a connection error occurs, before @ref signed-off. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
237 | @param account The account on which the error has occurred |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
238 | @param err The error that occurred |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
239 | @param desc A description of the error, giving more information. |
|
982a75b07fea
Document those signals. Refs #11130.
Paul Aurich <darkrain42@pidgin.im>
parents:
26986
diff
changeset
|
240 | @endsignaldef |
| 6605 | 241 | */ |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
242 | // vim: syntax=c.doxygen tw=75 et |