Mon, 18 Sep 2006 04:26:33 +0000
[gaim-migrate @ 17305]
Remove a couple more commented out functions, fix the class we were blessing
things into with smiley themes, and add an indentatation level to the
bootstrap section of GtkUI.xs (doesn't matter now but bit me during some of my
testing).
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
| 14629 | 3 | MODULE = Gaim::GtkUI::Themes PACKAGE = Gaim::GtkUI::Themes PREFIX = gaim_gtkthemes_ |
| 14478 | 4 | PROTOTYPES: ENABLE |
| 5 | ||
| 6 | void | |
| 7 | gaim_gtkthemes_init() | |
| 8 | ||
| 9 | gboolean | |
| 10 | gaim_gtkthemes_smileys_disabled() | |
| 11 | ||
| 12 | void | |
| 13 | gaim_gtkthemes_smiley_theme_probe() | |
| 14 | ||
| 15 | void | |
| 16 | gaim_gtkthemes_load_smiley_theme(file, load) | |
| 17 | const char * file | |
| 18 | gboolean load | |
| 19 | ||
| 20 | void | |
| 21 | gaim_gtkthemes_get_proto_smileys(id) | |
| 22 | const char * id | |
| 23 | PREINIT: | |
| 24 | GSList *l; | |
| 25 | PPCODE: | |
| 26 | for (l = gaim_gtkthemes_get_proto_smileys(id); l != NULL; l = l->next) { | |
| 14643 | 27 | XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::GtkUI::IMHtml::Smiley"))); |
| 14478 | 28 | } |