Sun, 17 Sep 2006 05:44:22 +0000
[gaim-migrate @ 17292]
An oops unrelated to my last commit, go figure.
Gaim::GtkUI::StatusBox functions don't need a leading _.
| 14478 | 1 | #include "gtkmodule.h" |
| 2 | ||
| 3 | /* This can't work at the moment since I don't have a typemap for Gtk::Widget. | |
| 4 | * I thought about using the one from libgtk2-perl but wasn't sure how to go | |
| 5 | * about doing that. | |
| 6 | Gtk::Widget | |
| 7 | gtk_gaim_status_box_new() | |
| 8 | ||
| 9 | Gtk::Widget | |
| 10 | gtk_gaim_status_box_new_with_account(account) | |
| 11 | Gaim::Account account | |
| 12 | ||
| 13 | void | |
| 14 | gtk_gaim_status_box_add(status_box, type, pixbuf, text, sec_text, data) | |
| 14629 | 15 | Gaim::GtkUI::StatusBox status_box |
| 16 | Gaim::GtkUI::StatusBox::ItemType type | |
| 14478 | 17 | GdkPixbuf pixbuf |
| 18 | const char * text | |
| 19 | const char * sec_text | |
| 20 | gpointer data | |
| 21 | */ | |
| 22 | ||
| 14630 | 23 | MODULE = Gaim::GtkUI::StatusBox PACKAGE = Gaim::GtkUI::StatusBox PREFIX = gtk_gaim_status_box_ |
| 14478 | 24 | PROTOTYPES: ENABLE |
| 25 | ||
| 26 | void | |
| 27 | gtk_gaim_status_box_add_separator(status_box) | |
| 14629 | 28 | Gaim::GtkUI::StatusBox status_box |
| 14478 | 29 | |
| 30 | void | |
| 31 | gtk_gaim_status_box_set_connecting(status_box, connecting) | |
| 14629 | 32 | Gaim::GtkUI::StatusBox status_box |
| 14478 | 33 | gboolean connecting |
| 34 | ||
| 35 | void | |
| 36 | gtk_gaim_status_box_pulse_connecting(status_box) | |
| 14629 | 37 | Gaim::GtkUI::StatusBox status_box |
| 14478 | 38 | |
| 39 | void | |
| 40 | gtk_gaim_status_box_set_buddy_icon(status_box, filename) | |
| 14629 | 41 | Gaim::GtkUI::StatusBox status_box |
| 14478 | 42 | const char * filename |
| 43 | ||
| 44 | const char * | |
| 45 | gtk_gaim_status_box_get_buddy_icon(status_box) | |
| 14629 | 46 | Gaim::GtkUI::StatusBox status_box |
| 14478 | 47 | |
| 48 | char * | |
| 49 | gtk_gaim_status_box_get_message(status_box) | |
| 14629 | 50 | Gaim::GtkUI::StatusBox status_box |