
2001-02-17 Christopher James Lahey <clahey@ximian.com> From a patch submitted by Murray Cumming <Murray.Cumming@mybau.com> * gal/util/e-util.h, gal/util/e-xml-utils.h, gal/widgets/e-canvas-utils.h, gal/widgets/e-colors.h, gal/widgets/e-cursors.h, gal/widgets/e-gui-utils.h, gal/widgets/e-popup-menu.h, gal/widgets/e-printable.h, gal/widgets/gtk-combo-stack.h: Added GNOME_DECLS. svn path=/trunk/; revision=8267
25 lines
755 B
C
25 lines
755 B
C
#ifndef GAL_GUI_UTILS_H
|
|
#define GAL_GUI_UTILS_H
|
|
|
|
#include <gtk/gtkmenu.h>
|
|
#include <gtk/gtkwindow.h>
|
|
|
|
#include <libgnomeui/gnome-messagebox.h>
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
void e_popup_menu (GtkMenu *menu, GdkEvent *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);
|
|
void e_container_focus_nth_entry (GtkContainer *container,
|
|
int n);
|
|
gint e_container_change_tab_order (GtkContainer *container,
|
|
GList *widgets);
|
|
|
|
END_GNOME_DECLS
|
|
|
|
#endif /* GAL_GUI_UTILS_H */
|