Sat, 27 Sep 2003 05:11:11 +0000
[gaim-migrate @ 7535]
Two string corrections from KAMO Tomoyuki. Thanks dude
I fiddled with the prefs away message stuff...
Changed a function to static and renamed it to have a _cb at the end.
Added an away_message_click_cb() callback--double clicking on an
away message in the list brings up the edit away message window.
I want to add an "Activate" button, but I don't have time now, and
away.c needs to be core/ui split, I think, with the ability to
activate a chosen message.
The Second Annual Chips & Dip night was good. We watched The Unborn
2, which is supposed to be one of the worst movies ever. It rocked.
committer: Mark Doliner <markdoliner@pidgin.im>
| 6584 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Connection PACKAGE = Gaim::Connection PREFIX = gaim_connection_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | void | |
| 7 | gaim_connection_set_display_name(gc, name) | |
| 8 | Gaim::Connection gc | |
| 9 | const char *name | |
| 10 | ||
| 11 | Gaim::Account | |
| 12 | gaim_connection_get_account(gc) | |
| 13 | Gaim::Connection gc | |
| 14 | ||
| 15 | const char * | |
| 16 | gaim_connection_get_display_name(gc) | |
| 17 | Gaim::Connection gc | |
| 18 | ||
| 19 | ||
| 20 | MODULE = Gaim::Connections PACKAGE = Gaim::Connections PREFIX = gaim_connections_ | |
| 21 | PROTOTYPES: ENABLE | |
| 22 | ||
| 23 | void | |
| 24 | gaim_connections_disconnect_all() | |
| 25 | ||
| 26 | void * | |
| 27 | handle() | |
| 28 | CODE: | |
| 29 | RETVAL = gaim_connections_get_handle(); | |
| 30 | OUTPUT: | |
| 31 | RETVAL | |
| 32 | ||
| 33 | ||
| 34 | MODULE = Gaim::Connection PACKAGE = Gaim | |
| 35 | ||
| 36 | void | |
| 37 | connections() | |
| 38 | PREINIT: | |
| 39 | GList *l; | |
| 40 | PPCODE: | |
| 41 | for (l = gaim_connections_get_all(); l != NULL; l = l->next) | |
| 42 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::Connection"))); |