Mercurial > cropper
comparison support.h @ 1:80535e4deaa4
nicer code formating
author | meillo@marmaro.de |
---|---|
date | Tue, 04 Dec 2007 20:23:25 +0100 |
parents | ca9155129253 |
children |
comparison
equal
deleted
inserted
replaced
0:ca9155129253 | 1:80535e4deaa4 |
---|---|
1 /* | |
2 * DO NOT EDIT THIS FILE - it is generated by Glade. | |
3 */ | |
4 | |
5 #ifdef HAVE_CONFIG_H | |
6 # include <config.h> | |
7 #endif | |
8 | |
9 #include <gtk/gtk.h> | 1 #include <gtk/gtk.h> |
10 | 2 |
11 /* | 3 /* Public Functions */ |
12 * Public Functions. | |
13 */ | |
14 | 4 |
15 /* | 5 /* |
16 * This function returns a widget in a component created by Glade. | 6 * This function returns a widget in a component created by Glade. |
17 * Call it with the toplevel widget in the component (i.e. a window/dialog), | 7 * Call it with the toplevel widget in the component (i.e. a window/dialog), |
18 * or alternatively any widget in the component, and the name of the widget | 8 * or alternatively any widget in the component, and the name of the widget |
19 * you want returned. | 9 * you want returned. |
20 */ | 10 */ |
21 GtkWidget* lookup_widget (GtkWidget *widget, | 11 GtkWidget* lookup_widget(GtkWidget* widget, const gchar* widget_name); |
22 const gchar *widget_name); | |
23 | 12 |
24 | 13 |
25 /* Use this function to set the directory containing installed pixmaps. */ | 14 /* Use this function to set the directory containing installed pixmaps. */ |
26 void add_pixmap_directory (const gchar *directory); | 15 void add_pixmap_directory(const gchar* directory); |
27 | 16 |
28 | 17 |
29 /* | 18 /* Private Functions */ |
30 * Private Functions. | 19 |
31 */ | |
32 | 20 |
33 /* This is used to create the pixmaps used in the interface. */ | 21 /* This is used to create the pixmaps used in the interface. */ |
34 GtkWidget* create_pixmap (GtkWidget *widget, | 22 GtkWidget* create_pixmap(GtkWidget* widget, const gchar* filename); |
35 const gchar *filename); | |
36 | 23 |
37 /* This is used to create the pixbufs used in the interface. */ | 24 /* This is used to create the pixbufs used in the interface. */ |
38 GdkPixbuf* create_pixbuf (const gchar *filename); | 25 GdkPixbuf* create_pixbuf(const gchar* filename); |
39 | 26 |
40 /* This is used to set ATK action descriptions. */ | 27 /* This is used to set ATK action descriptions. */ |
41 void glade_set_atk_action_description (AtkAction *action, | 28 void glade_set_atk_action_description(AtkAction* action, const gchar* action_name, const gchar* description); |
42 const gchar *action_name, | |
43 const gchar *description); | |
44 |