separated "normal" and advanced exif, "Normal" exif is now in the
[geeqie.git] / src / bar_exif.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2009 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 BAR_EXIF_H
15 #define BAR_EXIF_H
16
17 #define EXIF_UI_OFF     0
18 #define EXIF_UI_IFSET   1
19 #define EXIF_UI_ON      2
20
21 typedef struct _ExifUI ExifUI;
22 struct _ExifUI {
23         gint         current;
24         gint         temp;
25         gint         default_value;
26         const gchar *key;
27 };
28 extern ExifUI ExifUIList[];
29
30 #define EXIF_BAR_CUSTOM_COUNT 20
31
32
33 GtkWidget *bar_pane_exif_new(const gchar *title);
34
35
36 /* these are exposed for when duplication of the exif bar's text is needed */
37
38 const gchar **bar_exif_key_list;
39 const gint bar_exif_key_count;
40
41
42 #endif
43 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */