Mercurial > pidgin
view plugins/perl/common/ConvWindow.xs @ 7104:7700a28929bd
[gaim-migrate @ 7669]
When retrieving user info for an MSN user, the prpl checks if the info is
empty. If so, it displays an error dialog indicating so. Otherwise, it
displays the info.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Wed, 01 Oct 2003 05:42:40 +0000 |
| parents | c1a36e7b198e |
| children | b14a7bc189b8 |
line wrap: on
line source
#include "module.h" MODULE = Gaim::ConvWindow PACKAGE = Gaim::ConvWindow PREFIX = gaim_window_ PROTOTYPES: ENABLE Gaim::ConvWindow gaim_window_new() void DESTROY(win) Gaim::ConvWindow win CODE: gaim_window_destroy(win); void gaim_window_show(win) Gaim::ConvWindow win void gaim_window_hide(win) Gaim::ConvWindow win void gaim_window_raise(win) Gaim::ConvWindow win void gaim_window_flash(win) Gaim::ConvWindow win int gaim_window_add_conversation(win, conv) Gaim::ConvWindow win Gaim::Conversation conv Gaim::Conversation gaim_window_remove_conversation(win, index) Gaim::ConvWindow win unsigned int index void gaim_window_move_conversation(win, index, new_index) Gaim::ConvWindow win unsigned int index unsigned int new_index Gaim::Conversation gaim_window_get_conversation_at(win, index) Gaim::ConvWindow win unsigned int index size_t gaim_window_get_conversation_count(win) Gaim::ConvWindow win void gaim_window_switch_conversation(win, index) Gaim::ConvWindow win unsigned int index Gaim::Conversation gaim_window_get_active_conversation(win) Gaim::ConvWindow win void conversations(win) Gaim::ConvWindow win PREINIT: GList *l; CODE: for (l = gaim_window_get_conversations(win); l != NULL; l = l->next) { XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::Conversation"))); } MODULE = Gaim::ConvWindow PACKAGE = Gaim PREFIX = gaim_ PROTOTYPES: ENABLE void conv_windows() PREINIT: GList *l; CODE: for (l = gaim_get_windows(); l != NULL; l = l->next) XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::ConvWindow")));
