2000-09-17 JP Rosevear <jpr@helixcode.com> * src/widgets/e-gui-utils.c: Remove e_create_image_widget function * src/widgets/e-canvas-vbox.c: Fix headers svn path=/trunk/; revision=5479
19 lines
628 B
C
19 lines
628 B
C
#ifndef E_GUI_UTILS_H
|
|
#define E_GUI_UTILS_H
|
|
|
|
#include <gtk/gtkmenu.h>
|
|
#include <gtk/gtkwindow.h>
|
|
|
|
#include <libgnomeui/gnome-messagebox.h>
|
|
|
|
void e_popup_menu (GtkMenu *menu, GdkEventButton *event);
|
|
void e_auto_kill_popup_menu_on_hide (GtkMenu *menu);
|
|
void e_notice (GtkWindow *window, const char *type, const char *format, ...);
|
|
void e_container_foreach_leaf (GtkContainer *container,
|
|
GtkCallback callback,
|
|
gpointer closure);
|
|
gint e_container_change_tab_order (GtkContainer *container,
|
|
GList *widgets);
|
|
|
|
#endif /* E_GUI_UTILS_H */
|