Mon, 18 Sep 2006 18:14:50 +0000
[gaim-migrate @ 17311]
I couldn't see a reason why we needed all of gaim_gtk_roomlist_dialog_new,
gaim_gtk_roomlist_dialog_new_with_account, gaim_gtk_roomlist_dialog_show, and
gaim_gtk_roomlist_dialog_show_with_account especially considering the _show
functions basically just called the _new functions.
So I whittled us down to just _show and _show_with_account being visible. And
since nothing outside GtkRoomlist.c was using the GaimGtkRoomlistDialog struct
I made that private too.
| 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 | gaim_gtk_menu_tray_new() | |
| 8 | ||
| 9 | Gtk::Widget | |
| 10 | gaim_gtk_menu_tray_get_box(menu_tray) | |
| 14629 | 11 | Gaim::GtkUI::MenuTray menu_tray |
| 14478 | 12 | |
| 13 | void | |
| 14 | gaim_gtk_menu_tray_append(menu_tray, widget, tooltip) | |
| 14629 | 15 | Gaim::GtkUI::MenuTray menu_tray |
| 14478 | 16 | Gtk::Widget widget |
| 17 | const char * tooltip | |
| 18 | ||
| 19 | void | |
| 20 | gaim_gtk_menu_tray_prepend(menu_tray, widget, tooltip) | |
| 14629 | 21 | Gaim::GtkUI::MenuTray menu_tray |
| 14478 | 22 | Gtk::Widget widget |
| 23 | const char * tooltip | |
| 24 | ||
| 25 | void | |
| 26 | gaim_gtk_menu_tray_set_tooltip(menu_tray, widget, tooltip) | |
| 14629 | 27 | Gaim::GtkUI::MenuTray menu_tray |
| 14478 | 28 | Gtk::Widget widget |
| 29 | const char * tooltip | |
| 30 | */ | |
| 31 | ||
| 14629 | 32 | MODULE = Gaim::GtkUI::MenuTray PACKAGE = Gaim::GtkUI::MenuTray PREFIX = gaim_gtk_menu_tray |
| 14478 | 33 | PROTOTYPES: ENABLE |