
2000-05-18 Christopher James Lahey <clahey@helixcode.com> * Makefile.am: Add imagesdir support. * e-gui-utils.c, e-gui-utils.h: Added e_create_image_widget for glade use. svn path=/trunk/; revision=3120
14 lines
460 B
C
14 lines
460 B
C
#ifndef E_GUI_UTILS_H
|
|
#define E_GUI_UTILS_H
|
|
|
|
#include <gtk/gtkmenu.h>
|
|
#include <gtk/gtkwindow.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, ...);
|
|
GtkWidget *e_create_image_widget(gchar *name, gchar *string1, gchar *string2, gint int1, gint int2);
|
|
|
|
|
|
#endif /* E_GUI_UTILS_H */
|