| |
1 #include "gtkmodule.h" |
| |
2 |
| |
3 MODULE = Pidgin::BuddyList PACKAGE = Pidgin::BuddyList PREFIX = pidgin_blist_ |
| |
4 PROTOTYPES: ENABLE |
| |
5 |
| |
6 Purple::Handle |
| |
7 pidgin_blist_get_handle() |
| |
8 |
| |
9 Pidgin::BuddyList |
| |
10 pidgin_blist_get_default_gtk_blist() |
| |
11 |
| |
12 void |
| |
13 pidgin_blist_refresh(list) |
| |
14 Purple::BuddyList list |
| |
15 |
| |
16 void |
| |
17 pidgin_blist_update_refresh_timeout() |
| |
18 |
| |
19 gboolean |
| |
20 pidgin_blist_node_is_contact_expanded(node) |
| |
21 Purple::BuddyList::Node node |
| |
22 |
| |
23 void |
| |
24 pidgin_blist_toggle_visibility() |
| |
25 |
| |
26 void |
| |
27 pidgin_blist_visibility_manager_add() |
| |
28 |
| |
29 void |
| |
30 pidgin_blist_visibility_manager_remove() |
| |
31 |
| |
32 void |
| |
33 pidgin_blist_get_sort_methods() |
| |
34 PREINIT: |
| |
35 GList *l; |
| |
36 PPCODE: |
| |
37 for (l = pidgin_blist_get_sort_methods(); l != NULL; l = l->next) { |
| |
38 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Pidgin::BuddyList::SortMethod"))); |
| |
39 } |
| |
40 |
| |
41 void |
| |
42 pidgin_blist_sort_method_reg(id, name, func) |
| |
43 const char * id |
| |
44 const char * name |
| |
45 Pidgin::BuddyList::SortFunction func |
| |
46 |
| |
47 void |
| |
48 pidgin_blist_sort_method_unreg(id) |
| |
49 const char * id |
| |
50 |
| |
51 void |
| |
52 pidgin_blist_sort_method_set(id) |
| |
53 const char * id |
| |
54 |
| |
55 void |
| |
56 pidgin_blist_setup_sort_methods() |
| |
57 |
| |
58 void |
| |
59 pidgin_blist_update_accounts_menu() |
| |
60 |
| |
61 void |
| |
62 pidgin_blist_update_plugin_actions() |
| |
63 |
| |
64 void |
| |
65 pidgin_blist_update_sort_methods() |
| |
66 |
| |
67 gboolean |
| |
68 pidgin_blist_joinchat_is_showable() |
| |
69 |
| |
70 void |
| |
71 pidgin_blist_joinchat_show() |
| |
72 |
| |
73 void |
| |
74 pidgin_blist_update_account_error_state(account, message) |
| |
75 Purple::Account account |
| |
76 const char * message |