blob: 1edb412733ae6047503f4421affc4d3cacc6e907 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef E_GUI_UTILS_H
#define E_GUI_UTILS_H
#include <gtk/gtkwidget.h>
#include <bonobo/bonobo-ui-util.h>
#include <bonobo/bonobo-control.h>
GtkWidget *e_create_image_widget (gchar *name, gchar *string1, gchar *string2, gint int1, gint int2);
GtkWidget *e_button_new_with_stock_icon (const char *label_str, const char *stockid);
#endif /* E_GUI_UTILS_H */
|