comparison gtk/plugins/perl/common/GtkBlist.xs @ 14567:d6eae5115b31

[gaim-migrate @ 17291] This is a really huge commit for basically nothing, I decided that Gaim::Gtk should really be Gaim::GtkUI (which will line up better with any eventual Gaim::GntUI that might exist, etc.). So that's what this is, I think I got everything, it builds here at least. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Sun, 17 Sep 2006 05:35:46 +0000
parents 040dfd49107d
children 310a81ba302c
comparison
equal deleted inserted replaced
14566:d2de045b077f 14567:d6eae5115b31
36 Gtk::Widget menu 36 Gtk::Widget menu
37 Gaim::Connection gc 37 Gaim::Connection gc
38 Gaim::BuddyList::Node node 38 Gaim::BuddyList::Node node
39 */ 39 */
40 40
41 MODULE = Gaim::Gtk::BuddyList PACKAGE = Gaim::Gtk::BuddyList PREFIX = gaim_gtk_blist_ 41 MODULE = Gaim::GtkUI::BuddyList PACKAGE = Gaim::GtkUI::BuddyList PREFIX = gaim_gtk_blist_
42 PROTOTYPES: ENABLE 42 PROTOTYPES: ENABLE
43 43
44 void * 44 void *
45 gaim_gtk_blist_get_handle() 45 gaim_gtk_blist_get_handle()
46 46
47 Gaim::Gtk::BuddyList 47 Gaim::GtkUI::BuddyList
48 gaim_gtk_blist_get_default_gtk_blist() 48 gaim_gtk_blist_get_default_gtk_blist()
49 49
50 void 50 void
51 gaim_gtk_blist_refresh(list) 51 gaim_gtk_blist_refresh(list)
52 Gaim::BuddyList list 52 Gaim::BuddyList list
71 gaim_gtk_blist_get_sort_methods() 71 gaim_gtk_blist_get_sort_methods()
72 PREINIT: 72 PREINIT:
73 GList *l; 73 GList *l;
74 PPCODE: 74 PPCODE:
75 for (l = gaim_gtk_blist_get_sort_methods(); l != NULL; l = l->next) { 75 for (l = gaim_gtk_blist_get_sort_methods(); l != NULL; l = l->next) {
76 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::Gtk::BuddyList::SortMethod"))); 76 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::BuddyList::SortMethod")));
77 } 77 }
78 78
79 void 79 void
80 gaim_gtk_blist_sort_method_reg(id, name, func) 80 gaim_gtk_blist_sort_method_reg(id, name, func)
81 const char * id 81 const char * id
82 const char * name 82 const char * name
83 Gaim::Gtk::BuddyList::SortFunction func 83 Gaim::GtkUI::BuddyList::SortFunction func
84 84
85 void 85 void
86 gaim_gtk_blist_sort_method_unreg(id) 86 gaim_gtk_blist_sort_method_unreg(id)
87 const char * id 87 const char * id
88 88