Fri, 31 Jan 2014 14:47:31 +0100
Remove more GtkImHtml dependencies (from perl and two other plugins)
| 6605 | 1 | /** @page blist-signals Buddy List Signals |
| 2 | ||
| 3 | @signals | |
| 11935 | 4 | @signal buddy-status-changed |
| 5 | @signal buddy-idle-changed | |
| 6605 | 6 | @signal buddy-signed-on |
| 7 | @signal buddy-signed-off | |
| 8 | @signal update-idle | |
| 9051 | 9 | @signal blist-node-extended-menu |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
10 | @signal buddy-icon-changed |
| 11454 | 11 | @signal blist-node-aliased |
|
30052
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
12 | @signal buddy-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
13 | @signal ui-caps-changed |
| 6605 | 14 | @endsignals |
| 15 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
16 | @see blist.h |
|
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
17 | |
| 6605 | 18 | <hr> |
| 19 | ||
| 11935 | 20 | @signaldef buddy-status-changed |
| 6605 | 21 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
22 | void (*buddy_away)(PurpleBuddy *buddy, PurpleStatus *old_status, PurpleStatus *status); |
| 6605 | 23 | @endsignalproto |
| 24 | @signaldesc | |
| 25 | Emitted when a buddy on your buddy list goes away. | |
| 11947 | 26 | @param buddy The buddy whose status changed. |
| 11935 | 27 | @param old_status The status that the buddy just changed from. |
| 28 | @param status The status that the buddy just changed to. | |
| 6605 | 29 | @endsignaldef |
| 30 | ||
| 11935 | 31 | @signaldef buddy-idle-changed |
| 6605 | 32 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
33 | void (*buddy_idle)(PurpleBuddy *buddy, gboolean old_idle, gboolean idle); |
| 6605 | 34 | @endsignalproto |
| 35 | @signaldesc | |
| 36 | Emitted when a buddy on your buddy list becomes idle. | |
| 11947 | 37 | @param buddy The buddy whose idle status changed. |
| 11935 | 38 | @param old_idle Whether the buddy was idle. |
| 39 | @param idle Whether the buddy is currently idle. | |
|
9111
e5e3fca89af4
[gaim-migrate @ 9888]
Christian Hammond <chipx86@chipx86.com>
parents:
9051
diff
changeset
|
40 | @endsignaldef |
|
e5e3fca89af4
[gaim-migrate @ 9888]
Christian Hammond <chipx86@chipx86.com>
parents:
9051
diff
changeset
|
41 | |
| 6605 | 42 | @signaldef buddy-signed-on |
| 43 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
44 | void (*buddy_signed_on)(PurpleBuddy *buddy); |
| 6605 | 45 | @endsignalproto |
| 46 | @signaldesc | |
| 47 | Emitted when a buddy on your buddy list signs on. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
48 | @param buddy The buddy that signed on. |
| 6605 | 49 | @endsignaldef |
| 50 | ||
| 51 | @signaldef buddy-signed-off | |
| 52 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
53 | void (*buddy_signed_off)(PurpleBuddy *buddy); |
| 6605 | 54 | @endsignalproto |
| 55 | @signaldesc | |
| 56 | Emitted when a buddy on your buddy list signs off. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
57 | @param buddy The buddy that signed off. |
| 6605 | 58 | @endsignaldef |
| 59 | ||
| 60 | @signaldef update-idle | |
| 61 | @signalproto | |
| 62 | void (*update_idle)(); | |
| 63 | @endsignalproto | |
| 64 | @signaldesc | |
| 65 | Emitted when the buddy list is refreshed and the idle times are updated. | |
| 66 | @endsignaldef | |
| 67 | ||
| 9051 | 68 | @signaldef blist-node-extended-menu |
| 69 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
70 | void (*blist_node_extended_menu)(PurpleBlistNode *node, GList **menu) |
| 9051 | 71 | @endsignalproto |
| 72 | @signaldesc | |
| 73 | Emitted when a buddlist menu is being constructed @a menu is a pointer to | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
74 | a GList of PurpleBlistNodeAction's allowing a plugin to add menu items |
| 9051 | 75 | @endsignaldef |
| 76 | ||
|
27023
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
77 | @signaldef blist-node-added |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
78 | @signalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
79 | void (*blist_node_added)(PurpleBlistNode *node) |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
80 | @endsignalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
81 | @signaldesc |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
82 | Emitted when a new blist node is added to the buddy list. |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
83 | @endsignaldef |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
84 | |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
85 | @signaldef blist-node-removed |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
86 | @signalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
87 | void (*blist_node_removed)(PurpleBlistNode *node) |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
88 | @endsignalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
89 | @signaldesc |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
90 | Emitted when a blist node is removed from the buddy list. |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
91 | @endsignaldef |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
92 | |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
93 | @signaldef buddy-icon-changed |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
94 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
95 | void (*buddy_icon_changed)(PurpleBuddy *buddy) |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
96 | @endsignalproto |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
97 | @signaldesc |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
98 | Emitted when a buddy's icon is set. |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
99 | @endsignaldef |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
100 | |
| 11454 | 101 | @signaldef blist-node-aliased |
| 102 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
103 | void (*blist_node_aliased)(PurpleBlistNode *node, const char *old_alias) |
| 11454 | 104 | @endsignalproto |
| 105 | @signaldesc | |
| 106 | Emitted when a blist node (buddy, chat, or contact) is aliased. | |
| 107 | @endsignaldef | |
| 108 | ||
|
30052
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
109 | @signaldef buddy-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
110 | @signalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
111 | void (*buddy_caps_changed)(PurpleBuddy *buddy, PurpleMediaCaps newcaps, |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
112 | PurpleMediaCaps oldcaps) |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
113 | @endsignalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
114 | @signaldesc |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
115 | Emitted when updating a buddy's media capabilities. |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
116 | @param buddy The buddy |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
117 | @param newcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
118 | @param oldcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
119 | @endsignaldef |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
120 | |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
121 | @signaldef ui-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
122 | @signalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
123 | void (*ui_caps_changed)(PurpleMediaCaps newcaps, PurpleMediaCaps oldcaps) |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
124 | @endsignalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
125 | @signaldesc |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
126 | Emitted when updating the media capabilities of the UI. |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
127 | @param newcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
128 | @param oldcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
129 | @endsignaldef |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
130 | |
| 6605 | 131 | */ |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
132 | // vim: syntax=c.doxygen tw=75 et |