Mercurial > pidgin.yaz
annotate doc/account-signals.dox @ 12024:e67993da8a22
[gaim-migrate @ 14317]
I strongly suspect CruiseControl is going to yell at me for this.
A voice chat API, GUI + mediastreamer. This is what I'm using for Google Talk.
This doesn't actually do anything at all. There's no code in the Jabber plugin yet
to use this API (although it Works For Me). All it will do is compile and link.
If you're lucky.
To build this, you should install oRTP from Linphone, Speex and iLBC (also
from linphone, I believe). To not build this, ./configure --disable-vv.
Most of the configure.ac and Makefile.am hackery was lifted right out of
Linphone with a few modifications. It seems to work if you have everything
installed or if you --disable-vv. I haven't really tested not having
everything installed and not --disabling-vv.
It's kinda funky to include all of mediastreamer in the source tree like this,
but linphone doesn't build it as a separate library. I'll probably wind up
writing them a patch to build it as a .so so we can link it dynamically instead.
This code certainly isn't finished. It'll adapt as I progress on the Google code,
but it's certainly of more use here in CVS than in my personal tree.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Wed, 09 Nov 2005 08:07:20 +0000 |
parents | d309a383ebf7 |
children | 1ec93dd2f359 |
rev | line source |
---|---|
6605 | 1 /** @page account-signals Account Signals |
2 | |
3 @signals | |
4 @signal account-connecting | |
5 @signal account-setting-info | |
6 @signal account-set-info | |
11628 | 7 @signal account-status-changed |
6605 | 8 @endsignals |
9 | |
10 <hr> | |
11 | |
12 @signaldef account-connecting | |
13 @signalproto | |
14 void (*account_connecting)(GaimAccount *account); | |
15 @endsignalproto | |
16 @signaldesc | |
17 This is called when an account is in the process of connecting. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
18 @param account The account in the process of connecting. |
6605 | 19 @endsignaldef |
20 | |
21 @signaldef account-setting-info | |
22 @signalproto | |
23 void (*account_setting_info)(GaimAccount *account, const char *new_info); | |
24 @endsignalproto | |
25 @signaldesc | |
26 Emitted when a user is about to send his new user info, or | |
27 profile, to the server. | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
28 @param account The account that the info will be set on. |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
29 @param new_info The new information to set. |
6605 | 30 @endsignaldef |
31 | |
32 @signaldef account-set-info | |
33 @signalproto | |
34 void (*account_set_info)(GaimAccount *account, const char *new_info); | |
35 @endsignalproto | |
6606
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
36 @signaldesc |
34eaa941ecd6
[gaim-migrate @ 7130]
Christian Hammond <chipx86@chipx86.com>
parents:
6605
diff
changeset
|
37 Emitted when a user sent his new user info, or profile, to the server. |
6605 | 38 @param account The account that the info was set on. |
39 @param new_info The new information set. | |
40 @endsignaldef | |
41 | |
11628 | 42 @signaldef account-status-changed |
43 @signalproto | |
44 void (*account_status_changed)(GaimAccount *account, GaimStatus *old, GaimStatus *new); | |
45 @endsignalproto | |
46 @signaldesc | |
47 Emitted when the status of an account changes (after the change). | |
48 @param account The account that changed status. | |
49 @param old The status before change. | |
50 @param new The status after change. | |
51 @endsignaldef | |
52 | |
6605 | 53 */ |
54 // vim: syntax=c tw=75 et |