Mercurial > pidgin
annotate doc/connection-signals.dox @ 21271:ca16de222b76
Do not do unnecessary processing when updating text in a column.
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Tue, 30 Oct 2007 09:17:50 +0000 |
parents | e0613cf8c493 |
children | 3a269007711e |
rev | line source |
---|---|
6724
aca39e77db85
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
1 /** @page connection-signals Connection Signals |
6611 | 2 |
3 @signals | |
4 @signal signing-on | |
5 @signal signed-on | |
6 @signal signing-off | |
7 @signal signed-off | |
8 @endsignals | |
9 | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
10 @see connection.h |
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
11 |
6611 | 12 <hr> |
13 | |
14 @signaldef signing-on | |
15 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
6724
diff
changeset
|
16 void (*signing_on)(PurpleConnection *gc); |
6611 | 17 @endsignalproto |
18 @signaldesc | |
19 Emitted when a connection is about to sign on. | |
20 @param gc The connection that is about to sign on. | |
21 @endsignaldef | |
22 | |
23 @signaldef signed-on | |
24 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
6724
diff
changeset
|
25 void (*signed_on)(PurpleConnection *gc); |
6611 | 26 @endsignalproto |
27 @signaldesc | |
28 Emitted when a connection has signed on. | |
29 @param gc The connection that has signed on. | |
30 @endsignaldef | |
31 | |
32 @signaldef signing-off | |
33 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
6724
diff
changeset
|
34 void (*signing_off)(PurpleConnection *gc); |
6611 | 35 @endsignalproto |
36 @signaldesc | |
37 Emitted when a connection is about to sign off. | |
38 @param gc The connection that is about to sign off. | |
39 @endsignaldef | |
40 | |
41 @signaldef signed-off | |
42 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
6724
diff
changeset
|
43 void (*signed_off)(PurpleConnection *gc); |
6611 | 44 @endsignalproto |
45 @signaldesc | |
46 Emitted when a connection has signed off. | |
47 @param gc The connection that has signed off. | |
48 @endsignaldef | |
49 | |
50 */ | |
20807
e0613cf8c493
Add some links from signal documentation back to the documentation for the
Will Thompson <will.thompson@collabora.co.uk>
parents:
16183
diff
changeset
|
51 // vim: syntax=c.doxygen tw=75 et |