Mercurial > geeqie.yaz
annotate src/advanced_exif.c @ 1419:c520cfd40aef
Code cleanup.
author | zas_ |
---|---|
date | Wed, 11 Mar 2009 23:36:01 +0000 |
parents | 8036c5b779ca |
children | c449a9344c8e |
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; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
48 }; |
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 enum { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
51 EXIF_ADVCOL_ENABLED = 0, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
52 EXIF_ADVCOL_TAG, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
53 EXIF_ADVCOL_NAME, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
54 EXIF_ADVCOL_VALUE, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
55 EXIF_ADVCOL_FORMAT, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
56 EXIF_ADVCOL_ELEMENTS, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
57 EXIF_ADVCOL_DESCRIPTION, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
58 EXIF_ADVCOL_COUNT |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
59 }; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
60 |
1417 | 61 static gboolean advanced_exif_row_enabled(const gchar *name) |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
62 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
63 GList *list; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
64 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
65 if (!name) return FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
66 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
67 list = history_list_get_by_key("exif_extras"); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
68 while (list) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
69 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
70 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
|
71 list = list->next; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
72 } |
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 return FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
75 } |
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 static void advanced_exif_update(ExifWin *ew) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
78 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
79 ExifData *exif; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
80 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
81 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
82 GtkTreeIter iter; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
83 ExifData *exif_original; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
84 ExifItem *item; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
85 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
86 exif = exif_read_fd(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
87 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
88 gtk_widget_set_sensitive(ew->scrolled, !!exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
89 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
90 if (!exif) return; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
91 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
92 exif_original = exif_get_original(exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
93 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
94 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
|
95 gtk_list_store_clear(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
96 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
97 item = exif_get_first_item(exif_original); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
98 while (item) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
99 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
100 gchar *tag; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
101 gchar *tag_name; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
102 gchar *text; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
103 gchar *utf8_text; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
104 const gchar *format; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
105 gchar *elements; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
106 gchar *description; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
107 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
108 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
|
109 tag_name = exif_item_get_tag_name(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
110 format = exif_item_get_format_name(item, TRUE); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
111 text = exif_item_get_data_as_text(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
112 utf8_text = utf8_validate_or_convert(text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
113 g_free(text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
114 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
|
115 description = exif_item_get_description(item); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
116 if (!description || *description == '\0') |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
117 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
118 g_free(description); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
119 description = g_strdup(tag_name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
120 } |
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 gtk_list_store_append(store, &iter); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
123 gtk_list_store_set(store, &iter, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
124 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
|
125 EXIF_ADVCOL_TAG, tag, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
126 EXIF_ADVCOL_NAME, tag_name, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
127 EXIF_ADVCOL_VALUE, utf8_text, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
128 EXIF_ADVCOL_FORMAT, format, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
129 EXIF_ADVCOL_ELEMENTS, elements, |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
130 EXIF_ADVCOL_DESCRIPTION, description, -1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
131 g_free(tag); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
132 g_free(utf8_text); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
133 g_free(elements); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
134 g_free(description); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
135 g_free(tag_name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
136 item = exif_get_next_item(exif_original); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
137 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
138 exif_free_fd(ew->fd, exif); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
139 |
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 static void advanced_exif_clear(ExifWin *ew) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
143 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
144 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
145 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
146 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
|
147 gtk_list_store_clear(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
148 } |
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 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
|
151 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
152 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
153 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
154 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
|
155 if (!ew) return; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
156 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
157 /* 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
|
158 file_data_unref(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
159 ew->fd = file_data_ref(fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
160 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
161 advanced_exif_clear(ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
162 advanced_exif_update(ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
163 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
164 |
1353 | 165 #if 0 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
166 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
|
167 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
168 GtkWidget *listview = data; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
169 GtkTreeModel *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
170 GtkTreeIter iter; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
171 GtkTreePath *tpath; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
172 gchar *name = NULL; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
173 gboolean active; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
174 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
175 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
|
176 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
177 tpath = gtk_tree_path_new_from_string(path); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
178 gtk_tree_model_get_iter(store, &iter, tpath); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
179 gtk_tree_path_free(tpath); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
180 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
181 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
|
182 EXIF_ADVCOL_NAME, &name, -1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
183 active = (!active); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
184 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
185 if (active && |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
186 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
|
187 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
188 active = FALSE; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
189 } |
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 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
|
192 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
193 if (active) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
194 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
195 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
|
196 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
197 else |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
198 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
199 history_list_item_change("exif_extras", name, NULL); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
200 } |
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 g_free(name); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
203 } |
1353 | 204 #endif |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
205 |
1353 | 206 #if 0 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
207 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
|
208 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
209 GtkTreeViewColumn *column; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
210 GtkCellRenderer *renderer; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
211 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
212 column = gtk_tree_view_column_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
213 gtk_tree_view_column_set_title(column, title); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
214 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
|
215 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
216 renderer = gtk_cell_renderer_toggle_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
217 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
|
218 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
|
219 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
|
220 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
221 g_signal_connect(G_OBJECT(renderer), "toggled", |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
222 G_CALLBACK(advanced_exif_row_toggled_cb), listview); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
223 } |
1353 | 224 #endif |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
225 |
1376 | 226 static GtkTargetEntry advanced_exif_drag_types[] = { |
227 { "text/plain", 0, TARGET_TEXT_PLAIN } | |
228 }; | |
229 static gint n_exif_drag_types = 1; | |
230 | |
231 | |
1392 | 232 static void advanced_exif_dnd_get(GtkWidget *listview, GdkDragContext *context, |
1417 | 233 GtkSelectionData *selection_data, guint info, |
234 guint time, gpointer data) | |
1376 | 235 { |
1417 | 236 //ExifWin *ew = data; |
1392 | 237 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(listview)); |
238 GtkTreeIter iter; | |
1376 | 239 |
1392 | 240 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) |
241 { | |
242 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(listview)); | |
243 gchar *key; | |
244 | |
245 gtk_tree_model_get(store, &iter, EXIF_ADVCOL_NAME, &key, -1); | |
246 gtk_selection_data_set_text(selection_data, key, -1); | |
1417 | 247 //printf("%s\n",key); |
1392 | 248 g_free(key); |
249 } | |
250 | |
251 } | |
252 | |
1376 | 253 |
254 static void advanced_exif_dnd_begin(GtkWidget *listview, GdkDragContext *context, gpointer data) | |
255 { | |
1417 | 256 //ExifWin *ew = data; |
1376 | 257 GtkTreeSelection *sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(listview)); |
258 GtkTreeIter iter; | |
259 | |
260 if (gtk_tree_selection_get_selected(sel, NULL, &iter)) | |
261 { | |
262 GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(listview)); | |
1392 | 263 gchar *key; |
1376 | 264 |
1392 | 265 gtk_tree_model_get(store, &iter, EXIF_ADVCOL_NAME, &key, -1); |
266 | |
1393 | 267 dnd_set_drag_label(listview, context, key); |
1392 | 268 g_free(key); |
1376 | 269 } |
270 } | |
271 | |
272 | |
273 | |
1417 | 274 static void advanced_exif_add_column(GtkWidget *listview, const gchar *title, gint n, gboolean sizable) |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
275 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
276 GtkTreeViewColumn *column; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
277 GtkCellRenderer *renderer; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
278 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
279 column = gtk_tree_view_column_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
280 gtk_tree_view_column_set_title(column, title); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
281 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
282 if (sizable) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
283 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
284 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
|
285 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
|
286 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
287 else |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
288 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
289 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
|
290 } |
1401
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
291 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
292 gtk_tree_view_column_set_resizable(column, TRUE); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
293 gtk_tree_view_column_set_sort_column_id(column, n); |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
294 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
295 renderer = gtk_cell_renderer_text_new(); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
296 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
|
297 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
|
298 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
|
299 } |
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 void advanced_exif_close(GtkWidget *window) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
302 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
303 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
304 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
305 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
|
306 if (!ew) return; |
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 gtk_widget_destroy(ew->vbox); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
309 } |
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 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
|
312 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
313 ExifWin *ew = data; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
314 file_data_unref(ew->fd); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
315 g_free(ew); |
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 |
1401
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
318 static gint advanced_exif_sort_cb(GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer data) |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
319 { |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
320 gint n = GPOINTER_TO_INT(data); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
321 gint ret = 0; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
322 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
323 switch (n) |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
324 { |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
325 case EXIF_ADVCOL_DESCRIPTION: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
326 case EXIF_ADVCOL_VALUE: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
327 case EXIF_ADVCOL_NAME: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
328 case EXIF_ADVCOL_TAG: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
329 case EXIF_ADVCOL_FORMAT: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
330 case EXIF_ADVCOL_ELEMENTS: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
331 { |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
332 gchar *s1, *s2; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
333 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
334 gtk_tree_model_get(model, a, n, &s1, -1); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
335 gtk_tree_model_get(model, b, n, &s2, -1); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
336 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
337 if (!s1 || !s2) |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
338 { |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
339 if (!s1 && !s2) break; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
340 ret = s1 ? 1 : -1; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
341 } |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
342 else |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
343 { |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
344 ret = g_utf8_collate(s1, s2); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
345 } |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
346 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
347 g_free(s1); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
348 g_free(s2); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
349 } |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
350 break; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
351 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
352 default: |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
353 g_return_val_if_reached(0); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
354 } |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
355 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
356 return ret; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
357 } |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
358 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
359 GtkWidget *advanced_exif_new(void) |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
360 { |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
361 ExifWin *ew; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
362 GtkListStore *store; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
363 GdkGeometry geometry; |
1401
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
364 GtkTreeSortable *sortable; |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
365 gint n; |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
366 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
367 ew = g_new0(ExifWin, 1); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
368 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
369 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
|
370 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
371 geometry.min_width = 900; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
372 geometry.min_height = 600; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
373 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
|
374 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
375 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
|
376 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
377 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
|
378 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
|
379 G_CALLBACK(advanced_exif_destroy), ew); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
380 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
381 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
|
382 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
|
383 gtk_widget_show(ew->vbox); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
384 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
385 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
386 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
|
387 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
|
388 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING); |
1401
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
389 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
390 /* set up sorting */ |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
391 sortable = GTK_TREE_SORTABLE(store); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
392 for (n = EXIF_ADVCOL_DESCRIPTION; n <= EXIF_ADVCOL_ELEMENTS; n++) |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
393 gtk_tree_sortable_set_sort_func(sortable, n, advanced_exif_sort_cb, |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
394 GINT_TO_POINTER(n), NULL); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
395 |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
396 /* set initial sort order */ |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
397 gtk_tree_sortable_set_sort_column_id(sortable, EXIF_ADVCOL_NAME, GTK_SORT_ASCENDING); |
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
398 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
399 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
|
400 g_object_unref(store); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
401 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
402 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
|
403 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
|
404 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
405 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
|
406 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
|
407 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
|
408 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
|
409 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
|
410 advanced_exif_add_column(ew->listview, _("Elements"), EXIF_ADVCOL_ELEMENTS, FALSE); |
1401
e18871df295f
Advanced exif window: make all columns sortable and resizable.
zas_
parents:
1393
diff
changeset
|
411 |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
412 |
1392 | 413 gtk_drag_source_set(ew->listview, |
414 GDK_BUTTON1_MASK | GDK_BUTTON2_MASK, | |
415 advanced_exif_drag_types, n_exif_drag_types, | |
416 GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); | |
1376 | 417 |
418 g_signal_connect(G_OBJECT(ew->listview), "drag_data_get", | |
419 G_CALLBACK(advanced_exif_dnd_get), ew); | |
420 | |
421 g_signal_connect(G_OBJECT(ew->listview), "drag_begin", | |
422 G_CALLBACK(advanced_exif_dnd_begin), ew); | |
423 | |
1293
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
424 ew->scrolled = gtk_scrolled_window_new(NULL, NULL); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
425 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
|
426 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
|
427 GTK_POLICY_AUTOMATIC, GTK_POLICY_ALWAYS); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
428 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
|
429 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
|
430 gtk_widget_show(ew->listview); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
431 gtk_widget_show(ew->scrolled); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
432 |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
433 gtk_widget_show(ew->window); |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
434 return ew->window; |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
435 } |
48e064b37ba6
separated "normal" and advanced exif, "Normal" exif is now in the
nadvornik
parents:
diff
changeset
|
436 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |