Mercurial > geeqie.yaz
annotate src/advanced_exif.c @ 1376:2ecdff667841
dnd from advanced exif window to exif pane
author | nadvornik |
---|---|
date | Wed, 04 Mar 2009 21:19:12 +0000 |
parents | 77c3d9dcd6bc |
children | d1b32a69b40a |
rev | line source |
---|---|
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
1 /* |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
2 * Geeqie |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
3 * (C) 2004 John Ellis |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
4 * Copyright (C) 2008 - 2009 The Geeqie Team |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
5 * |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
6 * Author: John Ellis |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
7 * |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
8 * This software is released under the GNU General Public License (GNU GPL). |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
9 * Please read the included file COPYING for more information. |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
10 * This software comes with no warranty of any kind, use at your own risk! |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
11 */ |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
12 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
13 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
14 #include "main.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
15 #include "advanced_exif.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
16 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
17 #include "exif.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
18 #include "metadata.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
19 #include "filedata.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
20 #include "history_list.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
21 #include "misc.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
22 #include "ui_misc.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
23 #include "window.h" |
1376 | 24 #include "dnd.h" |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
25 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
26 /* FIXME: not needed when bar_exif.c is improved */ |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
27 #include "bar_exif.h" |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
28 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
29 #include <math.h> |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
30 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
31 #define ADVANCED_EXIF_DATA_COLUMN_WIDTH 200 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
32 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
33 /* |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
34 *------------------------------------------------------------------- |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
35 * EXIF window |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
36 *------------------------------------------------------------------- |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
37 */ |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
38 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
39 typedef struct _ExifWin ExifWin; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
40 struct _ExifWin |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
41 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
42 GtkWidget *window; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
43 GtkWidget *vbox; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
44 GtkWidget *scrolled; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
45 GtkWidget *listview; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
46 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
47 FileData *fd; |
1376 | 48 gchar *sel_key; |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
49 }; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
50 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
51 enum { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
52 EXIF_ADVCOL_ENABLED = 0, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
53 EXIF_ADVCOL_TAG, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
54 EXIF_ADVCOL_NAME, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
55 EXIF_ADVCOL_VALUE, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
56 EXIF_ADVCOL_FORMAT, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
57 EXIF_ADVCOL_ELEMENTS, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
58 EXIF_ADVCOL_DESCRIPTION, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
59 EXIF_ADVCOL_COUNT |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
60 }; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
61 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
62 static gint advanced_exif_row_enabled(const gchar *name) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
63 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
64 GList *list; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
65 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
66 if (!name) return FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
67 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
68 list = history_list_get_by_key("exif_extras"); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
69 while (list) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
70 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
71 if (strcmp(name, (gchar *)(list->data)) == 0) return TRUE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
72 list = list->next; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
73 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
74 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
75 return FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
76 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
77 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
78 static void advanced_exif_update(ExifWin *ew) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
79 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
80 ExifData *exif; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
81 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
82 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
83 GtkTreeIter iter; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
84 ExifData *exif_original; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
85 ExifItem *item; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
86 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
87 exif = exif_read_fd(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
88 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
89 gtk_widget_set_sensitive(ew->scrolled, !!exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
90 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
91 if (!exif) return; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
92 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
93 exif_original = exif_get_original(exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
94 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
95 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(ew->listview))); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
96 gtk_list_store_clear(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
97 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
98 item = exif_get_first_item(exif_original); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
99 while (item) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
100 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
101 gchar *tag; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
102 gchar *tag_name; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
103 gchar *text; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
104 gchar *utf8_text; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
105 const gchar *format; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
106 gchar *elements; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
107 gchar *description; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
108 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
109 tag = g_strdup_printf("0x%04x", exif_item_get_tag_id(item)); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
110 tag_name = exif_item_get_tag_name(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
111 format = exif_item_get_format_name(item, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
112 text = exif_item_get_data_as_text(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
113 utf8_text = utf8_validate_or_convert(text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
114 g_free(text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
115 elements = g_strdup_printf("%d", exif_item_get_elements(item)); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
116 description = exif_item_get_description(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
117 if (!description || *description == '\0') |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
118 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
119 g_free(description); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
120 description = g_strdup(tag_name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
121 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
122 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
123 gtk_list_store_append(store, &iter); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
124 gtk_list_store_set(store, &iter, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
125 EXIF_ADVCOL_ENABLED, advanced_exif_row_enabled(tag_name), |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
126 EXIF_ADVCOL_TAG, tag, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
127 EXIF_ADVCOL_NAME, tag_name, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
128 EXIF_ADVCOL_VALUE, utf8_text, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
129 EXIF_ADVCOL_FORMAT, format, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
130 EXIF_ADVCOL_ELEMENTS, elements, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
131 EXIF_ADVCOL_DESCRIPTION, description, -1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
132 g_free(tag); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
133 g_free(utf8_text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
134 g_free(elements); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
135 g_free(description); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
136 g_free(tag_name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
137 item = exif_get_next_item(exif_original); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
138 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
139 exif_free_fd(ew->fd, exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
140 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
141 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
142 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
143 static void advanced_exif_clear(ExifWin *ew) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
144 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
145 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
146 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
147 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(ew->listview))); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
148 gtk_list_store_clear(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
149 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
150 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
151 void advanced_exif_set_fd(GtkWidget *window, FileData *fd) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
152 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
153 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
154 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
155 ew = g_object_get_data(G_OBJECT(window), "advanced_exif_data"); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
156 if (!ew) return; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
157 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
158 /* store this, advanced view toggle needs to reload data */ |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
159 file_data_unref(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
160 ew->fd = file_data_ref(fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
161 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
162 advanced_exif_clear(ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
163 advanced_exif_update(ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
164 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
165 |
1353 | 166 #if 0 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
167 static void advanced_exif_row_toggled_cb(GtkCellRendererToggle *toggle, const gchar *path, gpointer data) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
168 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
169 GtkWidget *listview = data; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
170 GtkTreeModel *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
171 GtkTreeIter iter; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
172 GtkTreePath *tpath; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
173 gchar *name = NULL; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
174 gboolean active; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
175 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
176 store = gtk_tree_view_get_model(GTK_TREE_VIEW(listview)); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
177 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
178 tpath = gtk_tree_path_new_from_string(path); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
179 gtk_tree_model_get_iter(store, &iter, tpath); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
180 gtk_tree_path_free(tpath); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
181 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
182 gtk_tree_model_get(store, &iter, EXIF_ADVCOL_ENABLED, &active, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
183 EXIF_ADVCOL_NAME, &name, -1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
184 active = (!active); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
185 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
186 if (active && |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
187 g_list_length(history_list_get_by_key("exif_extras")) >= EXIF_BAR_CUSTOM_COUNT) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
188 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
189 active = FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
190 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
191 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
192 gtk_list_store_set(GTK_LIST_STORE(store), &iter, EXIF_ADVCOL_ENABLED, active, -1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
193 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
194 if (active) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
195 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
196 history_list_add_to_key("exif_extras", name, EXIF_BAR_CUSTOM_COUNT); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
197 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
198 else |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
199 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
200 history_list_item_change("exif_extras", name, NULL); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
201 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
202 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
203 g_free(name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
204 } |
1353 | 205 #endif |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
206 |
1353 | 207 #if 0 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
208 static void advanced_exif_add_column_check(GtkWidget *listview, const gchar *title, gint n) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
209 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
210 GtkTreeViewColumn *column; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
211 GtkCellRenderer *renderer; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
212 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
213 column = gtk_tree_view_column_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
214 gtk_tree_view_column_set_title(column, title); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
215 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
216 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
217 renderer = gtk_cell_renderer_toggle_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
218 gtk_tree_view_column_pack_start(column, renderer, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
219 gtk_tree_view_column_add_attribute(column, renderer, "active", n); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
220 gtk_tree_view_append_column(GTK_TREE_VIEW(listview), column); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
221 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
222 g_signal_connect(G_OBJECT(renderer), "toggled", |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
223 G_CALLBACK(advanced_exif_row_toggled_cb), listview); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
224 } |
1353 | 225 #endif |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
226 |
1376 | 227 static GtkTargetEntry advanced_exif_drag_types[] = { |
228 { "text/plain", 0, TARGET_TEXT_PLAIN } | |
229 }; | |
230 static gint n_exif_drag_types = 1; | |
231 | |
232 | |
233 static void advanced_exif_dnd_get(GtkWidget *entry, GdkDragContext *context, | |
234 GtkSelectionData *selection_data, guint info, | |
235 guint time, gpointer data) | |
236 { | |
237 ExifWin *ew = data; | |
238 | |
239 gtk_selection_data_set_text(selection_data, ew->sel_key, -1); | |
240 } | |
241 | |
242 static void advanced_exif_dnd_begin(GtkWidget *listview, GdkDragContext *context, gpointer data) | |
243 { | |
244 ExifWin *ew = data; | |
245 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(listview)); | |
246 GtkTreeIter iter; | |
247 ew->sel_key = NULL; | |
248 | |
249 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
250 { | |
251 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(listview)); | |
252 | |
253 gtk_tree_model_get(store, &iter, EXIF_ADVCOL_NAME, &ew->sel_key, -1); | |
254 printf("%s\n",ew->sel_key); | |
255 } | |
256 | |
257 } | |
258 | |
259 static void advanced_exif_dnd_end(GtkWidget *widget, GdkDragContext *context, gpointer data) | |
260 { | |
261 ExifWin *ew = data; | |
262 g_free(ew->sel_key); | |
263 ew->sel_key = NULL; | |
264 } | |
265 | |
266 | |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
267 static void advanced_exif_add_column(GtkWidget *listview, const gchar *title, gint n, gint sizable) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
268 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
269 GtkTreeViewColumn *column; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
270 GtkCellRenderer *renderer; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
271 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
272 column = gtk_tree_view_column_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
273 gtk_tree_view_column_set_title(column, title); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
274 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
275 if (sizable) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
276 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
277 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
278 gtk_tree_view_column_set_fixed_width(column, ADVANCED_EXIF_DATA_COLUMN_WIDTH); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
279 gtk_tree_view_column_set_resizable(column, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
280 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
281 else |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
282 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
283 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
284 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
285 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
286 renderer = gtk_cell_renderer_text_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
287 gtk_tree_view_column_pack_start(column, renderer, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
288 gtk_tree_view_column_add_attribute(column, renderer, "text", n); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
289 gtk_tree_view_append_column(GTK_TREE_VIEW(listview), column); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
290 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
291 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
292 void advanced_exif_close(GtkWidget *window) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
293 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
294 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
295 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
296 ew = g_object_get_data(G_OBJECT(window), "advanced_exif_data"); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
297 if (!ew) return; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
298 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
299 gtk_widget_destroy(ew->vbox); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
300 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
301 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
302 static void advanced_exif_destroy(GtkWidget *widget, gpointer data) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
303 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
304 ExifWin *ew = data; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
305 file_data_unref(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
306 g_free(ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
307 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
308 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
309 GtkWidget *advanced_exif_new(void) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
310 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
311 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
312 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
313 GdkGeometry geometry; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
314 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
315 ew = g_new0(ExifWin, 1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
316 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
317 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
318 ew->window = window_new(GTK_WINDOW_TOPLEVEL, "view", NULL, NULL, _("Metadata")); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
319 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
320 geometry.min_width = 900; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
321 geometry.min_height = 600; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
322 gtk_window_set_geometry_hints(GTK_WINDOW(ew->window), NULL, &geometry, GDK_HINT_MIN_SIZE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
323 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
324 gtk_window_set_resizable(GTK_WINDOW(ew->window), TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
325 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
326 g_object_set_data(G_OBJECT(ew->window), "advanced_exif_data", ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
327 g_signal_connect_after(G_OBJECT(ew->window), "destroy", |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
328 G_CALLBACK(advanced_exif_destroy), ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
329 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
330 ew->vbox = gtk_vbox_new(FALSE, PREF_PAD_GAP); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
331 gtk_container_add(GTK_CONTAINER(ew->window), ew->vbox); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
332 gtk_widget_show(ew->vbox); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
333 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
334 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
335 store = gtk_list_store_new(7, G_TYPE_BOOLEAN, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
336 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
337 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
338 ew->listview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
339 g_object_unref(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
340 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
341 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(ew->listview), TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
342 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(ew->listview), TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
343 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
344 gtk_tree_view_set_search_column(GTK_TREE_VIEW(ew->listview), EXIF_ADVCOL_NAME); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
345 |
1353 | 346 // advanced_exif_add_column_check(ew->listview, "", EXIF_ADVCOL_ENABLED); |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
347 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
348 advanced_exif_add_column(ew->listview, _("Description"), EXIF_ADVCOL_DESCRIPTION, FALSE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
349 advanced_exif_add_column(ew->listview, _("Value"), EXIF_ADVCOL_VALUE, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
350 advanced_exif_add_column(ew->listview, _("Name"), EXIF_ADVCOL_NAME, FALSE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
351 advanced_exif_add_column(ew->listview, _("Tag"), EXIF_ADVCOL_TAG, FALSE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
352 advanced_exif_add_column(ew->listview, _("Format"), EXIF_ADVCOL_FORMAT, FALSE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
353 advanced_exif_add_column(ew->listview, _("Elements"), EXIF_ADVCOL_ELEMENTS, FALSE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
354 |
1376 | 355 gtk_tree_view_enable_model_drag_source(GTK_TREE_VIEW(ew->listview), |
356 GDK_BUTTON1_MASK | GDK_BUTTON2_MASK, | |
357 advanced_exif_drag_types, n_exif_drag_types, | |
358 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); | |
359 | |
360 g_signal_connect(G_OBJECT(ew->listview), "drag_data_get", | |
361 G_CALLBACK(advanced_exif_dnd_get), ew); | |
362 | |
363 g_signal_connect(G_OBJECT(ew->listview), "drag_begin", | |
364 G_CALLBACK(advanced_exif_dnd_begin), ew); | |
365 g_signal_connect(G_OBJECT(ew->listview), "drag_end", | |
366 G_CALLBACK(advanced_exif_dnd_end), ew); | |
367 | |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
368 ew->scrolled = gtk_scrolled_window_new(NULL, NULL); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
369 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(ew->scrolled), GTK_SHADOW_IN); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
370 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(ew->scrolled), |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
371 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
372 gtk_box_pack_start(GTK_BOX(ew->vbox), ew->scrolled, TRUE, TRUE, 0); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
373 gtk_container_add(GTK_CONTAINER(ew->scrolled), ew->listview); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
374 gtk_widget_show(ew->listview); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
375 gtk_widget_show(ew->scrolled); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
376 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
377 gtk_widget_show(ew->window); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
378 return ew->window; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
379 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
380 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |