Mercurial > pidgin.yaz
annotate doc/connection-signals.dox @ 9554:8b2451878e26
[gaim-migrate @ 10387]
" This patch adds chat user status icons (voice / halfop
/ op / founder) to chats
There's a screenshot here, showing ops, voices and
ignored ops and voices
http://nosnilmot.com/gaim/chatusers.png
This required some changes in how the core stores the
list of users in chats to be able to store the status
too, which are detailed below.
I also fixed up some memory leaks as I came across them
(string values returned by gtk_tree_model_get() not
being g_free()'d) and a minor bug in signals-test.c
Conversation API:
Changed:
gaim_conv_chat_add_user() (added flags parameter)
gaim_conv_chat_add_users() now (added GList of flags
parameter)
gaim_conv_chat_get_users() now returns a GList of
GaimChatBuddy's
gaim_conv_chat_set_users() now expects a GList of
GaimChatBuddy's
Added:
gaim_conv_chat_set_user_flags()
gaim_conv_chat_get_user_flags()
gaim_conv_chat_find_user()
gaim_conv_chat_cb_new()
gaim_conv_chat_cb_find()
gaim_conv_chat_cb_destroy()
gaim_conv_chat_cb_get_name()
Conversation UI ops:
added: chat_update_user()
Signals:
Changed: chat-buddy-joining & chat-buddy-joined now
include the user's flags
Added: chat-buddy-flags for when user's flags change
Added:
gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT
(required for the new chat-buddy-flags signal)
Protocol Plugins:
All updated to work with above changes (obviously)
User flags support added to IRC, Jabber and SILC
New Files:
pixmaps/status/default/ voice.svg halfop.svg op.svg
founder.svg
" --Stu Tomlinson
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sat, 17 Jul 2004 18:11:12 +0000 |
parents | aca39e77db85 |
children | 8cf53d7a0887 |
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 | |
10 <hr> | |
11 | |
12 @signaldef signing-on | |
13 @signalproto | |
14 void (*signing_on)(GaimConnection *gc); | |
15 @endsignalproto | |
16 @signaldesc | |
17 Emitted when a connection is about to sign on. | |
18 @param gc The connection that is about to sign on. | |
19 @endsignaldef | |
20 | |
21 @signaldef signed-on | |
22 @signalproto | |
23 void (*signed_on)(GaimConnection *gc); | |
24 @endsignalproto | |
25 @signaldesc | |
26 Emitted when a connection has signed on. | |
27 @param gc The connection that has signed on. | |
28 @endsignaldef | |
29 | |
30 @signaldef signing-off | |
31 @signalproto | |
6724
aca39e77db85
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
32 void (*signing_off)(GaimConnection *gc); |
6611 | 33 @endsignalproto |
34 @signaldesc | |
35 Emitted when a connection is about to sign off. | |
36 @param gc The connection that is about to sign off. | |
37 @endsignaldef | |
38 | |
39 @signaldef signed-off | |
40 @signalproto | |
6724
aca39e77db85
[gaim-migrate @ 7251]
Christian Hammond <chipx86@chipx86.com>
parents:
6611
diff
changeset
|
41 void (*signed_off)(GaimConnection *gc); |
6611 | 42 @endsignalproto |
43 @signaldesc | |
44 Emitted when a connection has signed off. | |
45 @param gc The connection that has signed off. | |
46 @endsignaldef | |
47 | |
48 */ | |
49 // vim: syntax=c tw=75 et |