0
|
1 #include <gtk/gtk.h>
|
|
2
|
1
|
3 /* Public Functions */
|
0
|
4
|
|
5 /*
|
|
6 * This function returns a widget in a component created by Glade.
|
|
7 * Call it with the toplevel widget in the component (i.e. a window/dialog),
|
|
8 * or alternatively any widget in the component, and the name of the widget
|
|
9 * you want returned.
|
|
10 */
|
1
|
11 GtkWidget* lookup_widget(GtkWidget* widget, const gchar* widget_name);
|
0
|
12
|
|
13
|
|
14 /* Use this function to set the directory containing installed pixmaps. */
|
1
|
15 void add_pixmap_directory(const gchar* directory);
|
0
|
16
|
|
17
|
1
|
18 /* Private Functions */
|
|
19
|
0
|
20
|
|
21 /* This is used to create the pixmaps used in the interface. */
|
1
|
22 GtkWidget* create_pixmap(GtkWidget* widget, const gchar* filename);
|
0
|
23
|
|
24 /* This is used to create the pixbufs used in the interface. */
|
1
|
25 GdkPixbuf* create_pixbuf(const gchar* filename);
|
0
|
26
|
|
27 /* This is used to set ATK action descriptions. */
|
1
|
28 void glade_set_atk_action_description(AtkAction* action, const gchar* action_name, const gchar* description);
|