| 1 #include "gtkmodule.h" |
1 #include "gtkmodule.h" |
| 2 |
2 |
| 3 MODULE = Gaim::GtkUI::BuddyList PACKAGE = Gaim::GtkUI::BuddyList PREFIX = gaim_gtk_blist_ |
3 MODULE = Pidgin::BuddyList PACKAGE = Pidgin::BuddyList PREFIX = pidgin_blist_ |
| 4 PROTOTYPES: ENABLE |
4 PROTOTYPES: ENABLE |
| 5 |
5 |
| 6 Gaim::Handle |
6 Gaim::Handle |
| 7 gaim_gtk_blist_get_handle() |
7 pidgin_blist_get_handle() |
| 8 |
8 |
| 9 Gaim::GtkUI::BuddyList |
9 Pidgin::BuddyList |
| 10 gaim_gtk_blist_get_default_gtk_blist() |
10 pidgin_blist_get_default_gtk_blist() |
| 11 |
11 |
| 12 void |
12 void |
| 13 gaim_gtk_blist_refresh(list) |
13 pidgin_blist_refresh(list) |
| 14 Gaim::BuddyList list |
14 Gaim::BuddyList list |
| 15 |
15 |
| 16 void |
16 void |
| 17 gaim_gtk_blist_update_refresh_timeout() |
17 pidgin_blist_update_refresh_timeout() |
| 18 |
18 |
| 19 gboolean |
19 gboolean |
| 20 gaim_gtk_blist_node_is_contact_expanded(node) |
20 pidgin_blist_node_is_contact_expanded(node) |
| 21 Gaim::BuddyList::Node node |
21 Gaim::BuddyList::Node node |
| 22 |
22 |
| 23 void |
23 void |
| 24 gaim_gtk_blist_toggle_visibility() |
24 pidgin_blist_toggle_visibility() |
| 25 |
25 |
| 26 void |
26 void |
| 27 gaim_gtk_blist_visibility_manager_add() |
27 pidgin_blist_visibility_manager_add() |
| 28 |
28 |
| 29 void |
29 void |
| 30 gaim_gtk_blist_visibility_manager_remove() |
30 pidgin_blist_visibility_manager_remove() |
| 31 |
31 |
| 32 void |
32 void |
| 33 gaim_gtk_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 = gaim_gtk_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, "Gaim::GtkUI::BuddyList::SortMethod"))); |
38 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Pidgin::BuddyList::SortMethod"))); |
| 39 } |
39 } |
| 40 |
40 |
| 41 void |
41 void |
| 42 gaim_gtk_blist_sort_method_reg(id, name, func) |
42 pidgin_blist_sort_method_reg(id, name, func) |
| 43 const char * id |
43 const char * id |
| 44 const char * name |
44 const char * name |
| 45 Gaim::GtkUI::BuddyList::SortFunction func |
45 Pidgin::BuddyList::SortFunction func |
| 46 |
46 |
| 47 void |
47 void |
| 48 gaim_gtk_blist_sort_method_unreg(id) |
48 pidgin_blist_sort_method_unreg(id) |
| 49 const char * id |
49 const char * id |
| 50 |
50 |
| 51 void |
51 void |
| 52 gaim_gtk_blist_sort_method_set(id) |
52 pidgin_blist_sort_method_set(id) |
| 53 const char * id |
53 const char * id |
| 54 |
54 |
| 55 void |
55 void |
| 56 gaim_gtk_blist_setup_sort_methods() |
56 pidgin_blist_setup_sort_methods() |
| 57 |
57 |
| 58 void |
58 void |
| 59 gaim_gtk_blist_update_accounts_menu() |
59 pidgin_blist_update_accounts_menu() |
| 60 |
60 |
| 61 void |
61 void |
| 62 gaim_gtk_blist_update_plugin_actions() |
62 pidgin_blist_update_plugin_actions() |
| 63 |
63 |
| 64 void |
64 void |
| 65 gaim_gtk_blist_update_sort_methods() |
65 pidgin_blist_update_sort_methods() |
| 66 |
66 |
| 67 gboolean |
67 gboolean |
| 68 gaim_gtk_blist_joinchat_is_showable() |
68 pidgin_blist_joinchat_is_showable() |
| 69 |
69 |
| 70 void |
70 void |
| 71 gaim_gtk_blist_joinchat_show() |
71 pidgin_blist_joinchat_show() |
| 72 |
72 |
| 73 void |
73 void |
| 74 gaim_gtk_blist_update_account_error_state(account, message) |
74 pidgin_blist_update_account_error_state(account, message) |
| 75 Gaim::Account account |
75 Gaim::Account account |
| 76 const char * message |
76 const char * message |