view gtk/plugins/perl/common/GtkMenuTray.xs @ 14647:18b74ed00850

[gaim-migrate @ 17393] Hide the Browsers preference tab when running in OS X, as is done with gnome, and use its open command which functions as gnome-open does for handling clicked links. committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Fri, 29 Sep 2006 00:17:58 +0000
parents d6eae5115b31
children
line wrap: on
line source

#include "gtkmodule.h"

/* This can't work at the moment since I don't have a typemap for Gtk::Widget.
 * I thought about using the one from libgtk2-perl but wasn't sure how to go
 * about doing that.
Gtk::Widget
gaim_gtk_menu_tray_new()

Gtk::Widget
gaim_gtk_menu_tray_get_box(menu_tray)
	Gaim::GtkUI::MenuTray menu_tray

void
gaim_gtk_menu_tray_append(menu_tray, widget, tooltip)
	Gaim::GtkUI::MenuTray menu_tray
	Gtk::Widget widget
	const char * tooltip

void
gaim_gtk_menu_tray_prepend(menu_tray, widget, tooltip)
	Gaim::GtkUI::MenuTray menu_tray
	Gtk::Widget widget
	const char * tooltip

void
gaim_gtk_menu_tray_set_tooltip(menu_tray, widget, tooltip)
	Gaim::GtkUI::MenuTray menu_tray
	Gtk::Widget widget
	const char * tooltip
*/

MODULE = Gaim::GtkUI::MenuTray  PACKAGE = Gaim::GtkUI::MenuTray  PREFIX = gaim_gtk_menu_tray
PROTOTYPES: ENABLE