pidgin/plugins/perl/common/GtkMenuTray.xs

changeset 38887
826f5da7b56c
parent 38886
c1fb4e53da4e
parent 38341
3da74e727e78
child 38888
8bcae3a0b165
equal deleted inserted replaced
38886:c1fb4e53da4e 38887:826f5da7b56c
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 pidgin_menu_tray_new()
8
9 Gtk::Widget
10 pidgin_menu_tray_get_box(menu_tray)
11 Pidgin::MenuTray menu_tray
12
13 void
14 pidgin_menu_tray_append(menu_tray, widget, tooltip)
15 Pidgin::MenuTray menu_tray
16 Gtk::Widget widget
17 const char * tooltip
18
19 void
20 pidgin_menu_tray_prepend(menu_tray, widget, tooltip)
21 Pidgin::MenuTray menu_tray
22 Gtk::Widget widget
23 const char * tooltip
24
25 void
26 pidgin_menu_tray_set_tooltip(menu_tray, widget, tooltip)
27 Pidgin::MenuTray menu_tray
28 Gtk::Widget widget
29 const char * tooltip
30 */
31
32 MODULE = Pidgin::MenuTray PACKAGE = Pidgin::MenuTray PREFIX = pidgin_menu_tray
33 PROTOTYPES: ENABLE

mercurial