Wed, 04 Jun 2025 23:47:08 -0500
Remove the retro protocol plugins
This removes gadu-gadu, novell, sametime, silc, silc10, and zephyr as they are
all being migrated to retro-prpl.
Testing Done:
Ran `make distcheck` and built the windows installer and verified that both worked as expected and that the uninstaller didn't remove the files. I did have to clean my `win32-install-dir` as that had contained previous builds of the now deleted protocols.
Bugs closed: PIDGIN-18098
Reviewed at https://reviews.imfreedom.org/r/4019/
| 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 |
| 11454 | 10 | @signal buddy-added |
| 11 | @signal buddy-removed | |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
12 | @signal buddy-icon-changed |
| 11454 | 13 | @signal blist-node-aliased |
|
30052
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
14 | @signal buddy-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
15 | @signal ui-caps-changed |
| 6605 | 16 | @endsignals |
| 17 | ||
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
18 | @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
|
19 | |
| 6605 | 20 | <hr> |
| 21 | ||
| 11935 | 22 | @signaldef buddy-status-changed |
| 6605 | 23 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
24 | void (*buddy_away)(PurpleBuddy *buddy, PurpleStatus *old_status, PurpleStatus *status); |
| 6605 | 25 | @endsignalproto |
| 26 | @signaldesc | |
| 27 | Emitted when a buddy on your buddy list goes away. | |
| 11947 | 28 | @param buddy The buddy whose status changed. |
| 11935 | 29 | @param old_status The status that the buddy just changed from. |
| 30 | @param status The status that the buddy just changed to. | |
| 6605 | 31 | @endsignaldef |
| 32 | ||
| 11935 | 33 | @signaldef buddy-idle-changed |
| 6605 | 34 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
35 | void (*buddy_idle)(PurpleBuddy *buddy, gboolean old_idle, gboolean idle); |
| 6605 | 36 | @endsignalproto |
| 37 | @signaldesc | |
| 38 | Emitted when a buddy on your buddy list becomes idle. | |
| 11947 | 39 | @param buddy The buddy whose idle status changed. |
| 11935 | 40 | @param old_idle Whether the buddy was idle. |
| 41 | @param idle Whether the buddy is currently idle. | |
|
9111
e5e3fca89af4
[gaim-migrate @ 9888]
Christian Hammond <chipx86@chipx86.com>
parents:
9051
diff
changeset
|
42 | @endsignaldef |
|
e5e3fca89af4
[gaim-migrate @ 9888]
Christian Hammond <chipx86@chipx86.com>
parents:
9051
diff
changeset
|
43 | |
| 6605 | 44 | @signaldef buddy-signed-on |
| 45 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
46 | void (*buddy_signed_on)(PurpleBuddy *buddy); |
| 6605 | 47 | @endsignalproto |
| 48 | @signaldesc | |
| 49 | Emitted when a buddy on your buddy list signs on. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
50 | @param buddy The buddy that signed on. |
| 6605 | 51 | @endsignaldef |
| 52 | ||
| 53 | @signaldef buddy-signed-off | |
| 54 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
55 | void (*buddy_signed_off)(PurpleBuddy *buddy); |
| 6605 | 56 | @endsignalproto |
| 57 | @signaldesc | |
| 58 | Emitted when a buddy on your buddy list signs off. | |
|
6606
1387777368c7
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
59 | @param buddy The buddy that signed off. |
| 6605 | 60 | @endsignaldef |
| 61 | ||
| 62 | @signaldef update-idle | |
| 63 | @signalproto | |
| 64 | void (*update_idle)(); | |
| 65 | @endsignalproto | |
| 66 | @signaldesc | |
| 67 | Emitted when the buddy list is refreshed and the idle times are updated. | |
| 68 | @endsignaldef | |
| 69 | ||
| 9051 | 70 | @signaldef blist-node-extended-menu |
| 71 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
72 | void (*blist_node_extended_menu)(PurpleBlistNode *node, GList **menu) |
| 9051 | 73 | @endsignalproto |
| 74 | @signaldesc | |
| 75 | 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
|
76 | a GList of PurpleBlistNodeAction's allowing a plugin to add menu items |
| 9051 | 77 | @endsignaldef |
| 78 | ||
|
27023
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
79 | @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
|
80 | @signalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
81 | 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
|
82 | @endsignalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
83 | @signaldesc |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
84 | 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
|
85 | @endsignaldef |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
86 | |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
87 | @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
|
88 | @signalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
89 | 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
|
90 | @endsignalproto |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
91 | @signaldesc |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
92 | 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
|
93 | @endsignaldef |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
94 | |
| 11454 | 95 | @signaldef buddy-added |
| 96 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
97 | void (*buddy_added)(PurpleBuddy *buddy) |
| 11454 | 98 | @endsignalproto |
| 99 | @signaldesc | |
| 100 | Emitted when a new buddy is added to the buddy list. | |
|
27023
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
101 | @deprecated Use blist-node-added instead. |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
102 | @endsignaldef |
| 11454 | 103 | |
|
21141
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
104 | @signaldef buddy-removed |
|
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
105 | @signalproto |
|
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
106 | void (*buddy_removed)(PurpleBuddy *buddy) |
|
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
107 | @endsignalproto |
|
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
108 | @signaldesc |
|
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
109 | Emitted when a buddy is removed from the buddy list. |
|
27023
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
110 | @deprecated Use blist-node-removed instead. |
|
f7d6ee5315c9
Add blist-node-(added|removed) and deprecate buddy-(added|removed). Closes #8309
Paul Aurich <darkrain42@pidgin.im>
parents:
21141
diff
changeset
|
111 | @endsignaldef |
|
21141
569c16841ac9
Order the signal descriptions the same in the body as in the summary.
Etan Reisner <deryni@pidgin.im>
parents:
20897
diff
changeset
|
112 | |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
113 | @signaldef buddy-icon-changed |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
114 | @signalproto |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
115 | void (*buddy_icon_changed)(PurpleBuddy *buddy) |
|
12148
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
116 | @endsignalproto |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
117 | @signaldesc |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
118 | Emitted when a buddy's icon is set. |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
119 | @endsignaldef |
|
6d4bb4d9081b
[gaim-migrate @ 14449]
Richard Laager <rlaager@pidgin.im>
parents:
11947
diff
changeset
|
120 | |
| 11454 | 121 | @signaldef blist-node-aliased |
| 122 | @signalproto | |
|
16244
be35cbf49dfb
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@pidgin.im>
parents:
12148
diff
changeset
|
123 | void (*blist_node_aliased)(PurpleBlistNode *node, const char *old_alias) |
| 11454 | 124 | @endsignalproto |
| 125 | @signaldesc | |
| 126 | Emitted when a blist node (buddy, chat, or contact) is aliased. | |
| 127 | @endsignaldef | |
| 128 | ||
|
30052
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
129 | @signaldef buddy-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
130 | @signalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
131 | 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
|
132 | PurpleMediaCaps oldcaps) |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
133 | @endsignalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
134 | @signaldesc |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
135 | 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
|
136 | @param buddy The buddy |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
137 | @param newcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
138 | @param oldcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
139 | @since 2.7.0 |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
140 | @endsignaldef |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
141 | |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
142 | @signaldef ui-caps-changed |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
143 | @signalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
144 | 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
|
145 | @endsignalproto |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
146 | @signaldesc |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
147 | 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
|
148 | @param newcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
149 | @param oldcaps |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
150 | @since 2.7.0 |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
151 | @endsignaldef |
|
1efbc2ffc89c
Added signal definitions for the new signals.
Marcus Lundblad <malu@pidgin.im>
parents:
27023
diff
changeset
|
152 | |
| 6605 | 153 | */ |
|
20897
2608e9e07913
Add some links from signal documentation back to the documentation for the
Will Thompson <resiak@pidgin.im>
parents:
16244
diff
changeset
|
154 | // vim: syntax=c.doxygen tw=75 et |