annotate doc/cmd-signals.dox @ 30720:8c586dbcae2d

Since a buddy's avatar information is distributed as part of their online presence information, if they have changed their avatar while we were offline (and they're now offline) we won't see the change until we're both online at the same time. So when the user requests to view a buddy's profile, we now also request their current AvatarId - if it is different to what Pidgin has cached, we request the new image. Move buddy's avatar processing out of mxit_update_buddy_presence() and into new function mxit_update_buddy_avatar(). The buddy avatar updating is called when we receive a buddy's presence update or when we request the buddies profile.
author andrew.victor@mxit.com
date Tue, 20 Jul 2010 09:46:28 +0000
parents 1ca49b349037
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23416
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
1 /** @page cmd-signals Command Signals
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
2 @signals
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
3 @signal cmd-added
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
4 @signal cmd-removed
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
5 @endsignals
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
6
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
7 @see cmds.h
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
8
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
9 @signaldef cmd-added
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
10 @signalproto
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
11 void (*cmd_added)(const char *command, PurpleCmdPriority priority,
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
12 PurpleCmdFlag flag);
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
13 @endsignalproto
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
14 @signaldesc
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
15 Emitted when a new command is added.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
16 @param command The new command.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
17 @param priority The priority of the new command.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
18 @param flag The command flags.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
19 @endsignaldef
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
20
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
21 @signaldef cmd-removed
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
22 @signalproto
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
23 void (*cmd_removed)(const char *command);
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
24 @endsignalproto
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
25 @signaldesc
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
26 Emitted when a command is removed.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
27 @param command The removed command.
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
28 @endsignaldef
1ca49b349037 Document the command signals.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
diff changeset
29 */