comparison src/bar_exif.h @ 1353:77c3d9dcd6bc

dropped ExifUIList
author nadvornik
date Sun, 01 Mar 2009 13:37:30 +0000
parents 9d190c098b97
children 607c60506863
comparison
equal deleted inserted replaced
1352:d9197358ec5a 1353:77c3d9dcd6bc
12 12
13 13
14 #ifndef BAR_EXIF_H 14 #ifndef BAR_EXIF_H
15 #define BAR_EXIF_H 15 #define BAR_EXIF_H
16 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, gboolean expanded, gboolean populate); 17 GtkWidget *bar_pane_exif_new(const gchar *title, gboolean expanded, gboolean populate);
34 GtkWidget *bar_pane_exif_new_from_config(const gchar **attribute_names, const gchar **attribute_values); 18 GtkWidget *bar_pane_exif_new_from_config(const gchar **attribute_names, const gchar **attribute_values);
35 void bar_pane_exif_entry_add_from_config(GtkWidget *pane, const gchar **attribute_names, const gchar **attribute_values); 19 void bar_pane_exif_entry_add_from_config(GtkWidget *pane, const gchar **attribute_names, const gchar **attribute_values);
36 20
37 /* these are exposed for when duplication of the exif bar's text is needed */ 21 /* these are exposed for when duplication of the exif bar's text is needed */