Mon, 18 Sep 2006 04:22:44 +0000
[gaim-migrate @ 17303]
Remove a bunch of functions that are commented out because they can't work
currently, they'll come back if I can get the actual Gtk2 perl stuff to not
crash, but they were just taking up space and getting in my way (since they
are removed already in my other tree).
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
| 14629 | 3 | MODULE = Gaim::GtkUI::BuddyList PACKAGE = Gaim::GtkUI::BuddyList PREFIX = gaim_gtk_blist_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 6 | void * | |
| 7 | gaim_gtk_blist_get_handle() | |
| 8 | ||
| 14629 | 9 | Gaim::GtkUI::BuddyList |
| 14478 | 10 | gaim_gtk_blist_get_default_gtk_blist() |
| 11 | ||
| 12 | void | |
| 13 | gaim_gtk_blist_refresh(list) | |
| 14 | Gaim::BuddyList list | |
| 15 | ||
| 16 | void | |
| 17 | gaim_gtk_blist_update_refresh_timeout() | |
| 18 | ||
| 19 | gboolean | |
| 20 | gaim_gtk_blist_node_is_contact_expanded(node) | |
| 21 | Gaim::BuddyList::Node node | |
| 22 | ||
| 23 | void | |
| 24 | gaim_gtk_blist_toggle_visibility() | |
| 25 | ||
| 26 | void | |
| 27 | gaim_gtk_blist_visibility_manager_add() | |
| 28 | ||
| 29 | void | |
| 30 | gaim_gtk_blist_visibility_manager_remove() | |
| 31 | ||
| 32 | void | |
| 33 | gaim_gtk_blist_get_sort_methods() | |
| 34 | PREINIT: | |
| 35 | GList *l; | |
| 36 | PPCODE: | |
| 37 | for (l = gaim_gtk_blist_get_sort_methods(); l != NULL; l = l->next) { | |
| 14629 | 38 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::BuddyList::SortMethod"))); |
| 14478 | 39 | } |
| 40 | ||
| 41 | void | |
| 42 | gaim_gtk_blist_sort_method_reg(id, name, func) | |
| 43 | const char * id | |
| 44 | const char * name | |
| 14629 | 45 | Gaim::GtkUI::BuddyList::SortFunction func |
| 14478 | 46 | |
| 47 | void | |
| 48 | gaim_gtk_blist_sort_method_unreg(id) | |
| 49 | const char * id | |
| 50 | ||
| 51 | void | |
| 52 | gaim_gtk_blist_sort_method_set(id) | |
| 53 | const char * id | |
| 54 | ||
| 55 | void | |
| 56 | gaim_gtk_blist_setup_sort_methods() | |
| 57 | ||
| 58 | void | |
| 59 | gaim_gtk_blist_update_accounts_menu() | |
| 60 | ||
| 61 | void | |
| 62 | gaim_gtk_blist_update_plugin_actions() | |
| 63 | ||
| 64 | void | |
| 65 | gaim_gtk_blist_update_sort_methods() | |
| 66 | ||
| 67 | gboolean | |
| 68 | gaim_gtk_blist_joinchat_is_showable() | |
| 69 | ||
| 70 | void | |
| 71 | gaim_gtk_blist_joinchat_show() | |
| 72 | ||
| 73 | void | |
| 74 | gaim_gtk_blist_update_account_error_state(account, message) | |
| 75 | Gaim::Account account | |
| 76 | const char * message |