| 1 #include "gtkmodule.h" |
1 #include "gtkmodule.h" |
| 2 |
2 |
| 3 MODULE = Pidgin::BuddyList PACKAGE = Pidgin::BuddyList PREFIX = pidgin_blist_ |
3 MODULE = Pidgin::BuddyList PACKAGE = Pidgin::BuddyList PREFIX = pidgin_blist_ |
| 4 PROTOTYPES: ENABLE |
4 PROTOTYPES: ENABLE |
| 5 |
5 |
| 6 Gaim::Handle |
6 Purple::Handle |
| 7 pidgin_blist_get_handle() |
7 pidgin_blist_get_handle() |
| 8 |
8 |
| 9 Pidgin::BuddyList |
9 Pidgin::BuddyList |
| 10 pidgin_blist_get_default_gtk_blist() |
10 pidgin_blist_get_default_gtk_blist() |
| 11 |
11 |
| 12 void |
12 void |
| 13 pidgin_blist_refresh(list) |
13 pidgin_blist_refresh(list) |
| 14 Gaim::BuddyList list |
14 Purple::BuddyList list |
| 15 |
15 |
| 16 void |
16 void |
| 17 pidgin_blist_update_refresh_timeout() |
17 pidgin_blist_update_refresh_timeout() |
| 18 |
18 |
| 19 gboolean |
19 gboolean |
| 20 pidgin_blist_node_is_contact_expanded(node) |
20 pidgin_blist_node_is_contact_expanded(node) |
| 21 Gaim::BuddyList::Node node |
21 Purple::BuddyList::Node node |
| 22 |
22 |
| 23 void |
23 void |
| 24 pidgin_blist_toggle_visibility() |
24 pidgin_blist_toggle_visibility() |
| 25 |
25 |
| 26 void |
26 void |
| 33 pidgin_blist_get_sort_methods() |
33 pidgin_blist_get_sort_methods() |
| 34 PREINIT: |
34 PREINIT: |
| 35 GList *l; |
35 GList *l; |
| 36 PPCODE: |
36 PPCODE: |
| 37 for (l = pidgin_blist_get_sort_methods(); l != NULL; l = l->next) { |
37 for (l = pidgin_blist_get_sort_methods(); l != NULL; l = l->next) { |
| 38 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Pidgin::BuddyList::SortMethod"))); |
38 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Pidgin::BuddyList::SortMethod"))); |
| 39 } |
39 } |
| 40 |
40 |
| 41 void |
41 void |
| 42 pidgin_blist_sort_method_reg(id, name, func) |
42 pidgin_blist_sort_method_reg(id, name, func) |
| 43 const char * id |
43 const char * id |