bebd33b200585bc242dcddb4037a07916ff272ae
[geeqie.git] / src / info.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #ifndef INFO_H
14 #define INFO_H
15
16
17 typedef struct _InfoData InfoData;
18 struct _InfoData
19 {
20         GtkWidget *window;
21         ImageWindow *image;
22
23         GList *list;
24
25         FileData *fd;
26
27         GtkWidget *notebook;
28         GtkWidget *name_entry;
29
30         GtkWidget *button_next;
31         GtkWidget *button_back;
32         GtkWidget *label_count;
33
34         GList *tab_list;
35
36         gint updated;
37 };
38
39
40 void info_window_new(FileData *fd, GList *list);
41
42 GtkWidget *table_add_line(GtkWidget *table, gint x, gint y,
43                           const gchar *description, const gchar *text);
44
45
46 #endif