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