Mercurial > geeqie.yaz
annotate src/bar_info.c @ 595:15766932414c
Allow the user to append or replace comments for a group of selected files.
Two buttons were added to the Keywords panel.
author | zas_ |
---|---|
date | Tue, 06 May 2008 17:00:55 +0000 |
parents | 4cfce4ed35e0 |
children | 0b203af63dbf |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
281 | 14 #include "main.h" |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
15 #include "exif.h" |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
16 |
9 | 17 #include "bar_info.h" |
18 | |
19 #include "cache.h" | |
507 | 20 #include "debug.h" |
586 | 21 #include "filedata.h" |
9 | 22 #include "info.h" |
314 | 23 #include "secure_save.h" |
9 | 24 #include "utilops.h" |
25 #include "ui_bookmark.h" | |
26 #include "ui_fileops.h" | |
27 #include "ui_misc.h" | |
28 #include "ui_utildlg.h" | |
29 | |
30 | |
31 #define BAR_KEYWORD_AUTOSAVE_TIME 10000 | |
32 | |
33 | |
34 static const gchar *keyword_favorite_defaults[] = { | |
35 N_("Favorite"), | |
36 N_("Todo"), | |
37 N_("People"), | |
38 N_("Places"), | |
39 N_("Art"), | |
40 N_("Nature"), | |
41 N_("Possessions"), | |
42 NULL | |
43 }; | |
44 | |
45 | |
46 static void bar_info_keyword_update_all(void); | |
47 | |
48 | |
49 /* | |
50 *------------------------------------------------------------------- | |
51 * keyword / comment utils | |
52 *------------------------------------------------------------------- | |
53 */ | |
54 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
55 static gint comment_file_write(gchar *path, GList *keywords, const gchar *comment) |
9 | 56 { |
314 | 57 SecureSaveInfo *ssi; |
9 | 58 |
314 | 59 ssi = secure_open(path); |
60 if (!ssi) return FALSE; | |
9 | 61 |
314 | 62 secure_fprintf(ssi, "#%s comment (%s)\n\n", GQ_APPNAME, VERSION); |
9 | 63 |
314 | 64 secure_fprintf(ssi, "[keywords]\n"); |
65 while (keywords && secsave_errno == SS_ERR_NONE) | |
9 | 66 { |
67 const gchar *word = keywords->data; | |
68 keywords = keywords->next; | |
69 | |
314 | 70 secure_fprintf(ssi, "%s\n", word); |
9 | 71 } |
314 | 72 secure_fputc(ssi, '\n'); |
9 | 73 |
314 | 74 secure_fprintf(ssi, "[comment]\n"); |
75 secure_fprintf(ssi, "%s\n", (comment) ? comment : ""); | |
9 | 76 |
314 | 77 secure_fprintf(ssi, "#end\n"); |
9 | 78 |
314 | 79 return (secure_close(ssi) == 0); |
9 | 80 } |
81 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
82 static gint comment_legacy_write(FileData *fd, GList *keywords, const gchar *comment) |
9 | 83 { |
84 gchar *comment_path; | |
85 gint success = FALSE; | |
86 | |
87 /* If an existing metadata file exists, we will try writing to | |
88 * it's location regardless of the user's preference. | |
89 */ | |
138 | 90 comment_path = cache_find_location(CACHE_TYPE_METADATA, fd->path); |
9 | 91 if (comment_path && !access_file(comment_path, W_OK)) |
92 { | |
93 g_free(comment_path); | |
94 comment_path = NULL; | |
95 } | |
96 | |
97 if (!comment_path) | |
98 { | |
99 gchar *comment_dir; | |
100 mode_t mode = 0755; | |
101 | |
138 | 102 comment_dir = cache_get_location(CACHE_TYPE_METADATA, fd->path, FALSE, &mode); |
9 | 103 if (cache_ensure_dir_exists(comment_dir, mode)) |
104 { | |
138 | 105 comment_path = g_strconcat(comment_dir, "/", fd->name, |
283 | 106 GQ_CACHE_EXT_METADATA, NULL); |
9 | 107 } |
108 g_free(comment_dir); | |
109 } | |
110 | |
111 if (comment_path) | |
112 { | |
113 gchar *comment_pathl; | |
114 | |
506
fc9c8a3e1a8b
Handle the newline in DEBUG_N() macro instead of adding one
zas_
parents:
495
diff
changeset
|
115 DEBUG_1("Saving comment: %s", comment_path); |
9 | 116 |
117 comment_pathl = path_from_utf8(comment_path); | |
118 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
119 success = comment_file_write(comment_pathl, keywords, comment); |
9 | 120 |
121 g_free(comment_pathl); | |
122 g_free(comment_path); | |
123 } | |
124 | |
125 return success; | |
126 } | |
127 | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
128 typedef enum { |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
129 MK_NONE, |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
130 MK_KEYWORDS, |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
131 MK_COMMENT |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
132 } MetadataKey; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
133 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
134 static gint comment_file_read(gchar *path, GList **keywords, gchar **comment) |
9 | 135 { |
136 FILE *f; | |
137 gchar s_buf[1024]; | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
138 MetadataKey key = MK_NONE; |
9 | 139 GList *list = NULL; |
140 GString *comment_build = NULL; | |
141 | |
142 f = fopen(path, "r"); | |
143 if (!f) return FALSE; | |
144 | |
145 while (fgets(s_buf,sizeof(s_buf), f)) | |
146 { | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
147 gchar *ptr = s_buf; |
9 | 148 |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
149 if (*ptr == '#') continue; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
150 if (*ptr == '[') |
9 | 151 { |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
152 gchar *keystr = ++ptr; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
153 |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
154 key = MK_NONE; |
516 | 155 while (*ptr != ']' && *ptr != '\n' && *ptr != '\0') ptr++; |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
156 |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
157 if (*ptr == ']') |
9 | 158 { |
159 *ptr = '\0'; | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
160 if (strcasecmp(keystr, "keywords") == 0) |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
161 key = MK_KEYWORDS; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
162 else if (strcasecmp(keystr, "comment") == 0) |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
163 key = MK_COMMENT; |
9 | 164 } |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
165 continue; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
166 } |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
167 |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
168 switch(key) |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
169 { |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
170 case MK_NONE: |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
171 break; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
172 case MK_KEYWORDS: |
9 | 173 { |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
174 while (*ptr != '\n' && *ptr != '\0') ptr++; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
175 *ptr = '\0'; |
9 | 176 if (strlen(s_buf) > 0) list = g_list_prepend(list, g_strdup(s_buf)); |
177 } | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
178 break; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
179 case MK_COMMENT: |
9 | 180 if (!comment_build) comment_build = g_string_new(""); |
181 g_string_append(comment_build, s_buf); | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
182 break; |
9 | 183 } |
184 } | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
185 |
9 | 186 fclose(f); |
187 | |
188 *keywords = g_list_reverse(list); | |
189 if (comment_build) | |
190 { | |
445
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
191 if (comment) |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
192 { |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
193 gint len; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
194 gchar *ptr = comment_build->str; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
195 |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
196 /* strip leading and trailing newlines */ |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
197 while (*ptr == '\n') ptr++; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
198 len = strlen(ptr); |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
199 while (len > 0 && ptr[len - 1] == '\n') len--; |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
200 if (ptr[len] == '\n') len++; /* keep the last one */ |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
201 if (len > 0) *comment = g_strndup(ptr, len); |
89f8bffbce21
comment_file_read(): rewrite the parser, drop leading and trailing newlines
zas_
parents:
442
diff
changeset
|
202 } |
9 | 203 g_string_free(comment_build, TRUE); |
204 } | |
205 | |
206 return TRUE; | |
207 } | |
208 | |
204 | 209 static gint comment_delete_legacy(FileData *fd) |
210 { | |
211 gchar *comment_path; | |
212 gchar *comment_pathl; | |
213 gint success = FALSE; | |
214 if (!fd) return FALSE; | |
215 | |
216 comment_path = cache_find_location(CACHE_TYPE_METADATA, fd->path); | |
217 if (!comment_path) return FALSE; | |
218 | |
219 comment_pathl = path_from_utf8(comment_path); | |
220 | |
221 success = !unlink(comment_pathl); | |
222 | |
223 g_free(comment_pathl); | |
224 g_free(comment_path); | |
225 | |
226 return success; | |
227 } | |
228 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
229 static gint comment_legacy_read(FileData *fd, GList **keywords, gchar **comment) |
9 | 230 { |
231 gchar *comment_path; | |
232 gchar *comment_pathl; | |
233 gint success = FALSE; | |
138 | 234 if (!fd) return FALSE; |
9 | 235 |
138 | 236 comment_path = cache_find_location(CACHE_TYPE_METADATA, fd->path); |
9 | 237 if (!comment_path) return FALSE; |
238 | |
239 comment_pathl = path_from_utf8(comment_path); | |
240 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
241 success = comment_file_read(comment_pathl, keywords, comment); |
9 | 242 |
243 g_free(comment_pathl); | |
244 g_free(comment_path); | |
245 | |
246 return success; | |
247 } | |
248 | |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
249 #define COMMENT_KEY "Xmp.dc.description" |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
250 #define KEYWORD_KEY "Xmp.dc.subject" |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
251 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
252 static gint comment_xmp_read(FileData *fd, GList **keywords, gchar **comment) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
253 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
254 ExifData *exif; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
255 |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
256 exif = exif_read_fd(fd); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
257 if (!exif) return FALSE; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
258 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
259 if (comment) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
260 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
261 ExifItem *item = exif_get_item(exif, COMMENT_KEY); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
262 *comment = exif_item_get_string(item, 0); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
263 } |
442 | 264 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
265 if (keywords) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
266 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
267 ExifItem *item; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
268 gint i; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
269 |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
270 *keywords = NULL; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
271 item = exif_get_item(exif, KEYWORD_KEY); |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
272 for (i = 0; i < exif_item_get_elements(item); i++) |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
273 { |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
274 gchar *kw = exif_item_get_string(item, i); |
442 | 275 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
276 if (!kw) break; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
277 *keywords = g_list_append(*keywords, (gpointer) kw); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
278 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
279 } |
442 | 280 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
281 exif_free(exif); |
442 | 282 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
283 return (comment && *comment) || (keywords && *keywords); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
284 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
285 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
286 static gint comment_xmp_write(FileData *fd, GList *keywords, const gchar *comment) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
287 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
288 gint success; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
289 gint write_comment = (comment && comment[0]); |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
290 ExifData *exif; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
291 ExifItem *item; |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
292 |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
293 exif = exif_read_fd(fd); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
294 if (!exif) return FALSE; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
295 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
296 item = exif_get_item(exif, COMMENT_KEY); |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
297 if (item && !write_comment) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
298 { |
442 | 299 exif_item_delete(exif, item); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
300 item = NULL; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
301 } |
442 | 302 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
303 if (!item && write_comment) item = exif_add_item(exif, COMMENT_KEY); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
304 if (item) exif_item_set_string(item, comment); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
305 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
306 while ((item = exif_get_item(exif, KEYWORD_KEY))) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
307 { |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
308 exif_item_delete(exif, item); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
309 } |
442 | 310 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
311 if (keywords) |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
312 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
313 GList *work; |
442 | 314 |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
315 item = exif_add_item(exif, KEYWORD_KEY); |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
316 |
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
317 work = keywords; |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
318 while (work) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
319 { |
593
bb712693cad3
comment_xmp_read(), comment_xmp_write(): cleanup and improve readibility.
zas_
parents:
586
diff
changeset
|
320 exif_item_set_string(item, (gchar *) work->data); |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
321 work = work->next; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
322 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
323 } |
442 | 324 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
325 success = exif_write(exif); |
442 | 326 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
327 exif_free(exif); |
442 | 328 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
329 return success; |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
330 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
331 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
332 gint comment_write(FileData *fd, GList *keywords, const gchar *comment) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
333 { |
204 | 334 if (!fd) return FALSE; |
335 | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
593
diff
changeset
|
336 if (options->save_metadata_in_image_file && |
204 | 337 comment_xmp_write(fd, keywords, comment)) |
338 { | |
339 comment_delete_legacy(fd); | |
340 return TRUE; | |
341 } | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
342 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
343 return comment_legacy_write(fd, keywords, comment); |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
344 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
345 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
346 gint comment_read(FileData *fd, GList **keywords, gchar **comment) |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
347 { |
253 | 348 GList *keywords1 = NULL; |
349 GList *keywords2 = NULL; | |
350 gchar *comment1 = NULL; | |
351 gchar *comment2 = NULL; | |
204 | 352 gint res1, res2; |
353 | |
354 if (!fd) return FALSE; | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
355 |
204 | 356 res1 = comment_xmp_read(fd, &keywords1, &comment1); |
357 res2 = comment_legacy_read(fd, &keywords2, &comment2); | |
442 | 358 |
204 | 359 if (!res1 && !res2) |
360 { | |
361 return FALSE; | |
362 } | |
442 | 363 |
204 | 364 if (keywords) |
365 { | |
366 if (res1 && res2) | |
367 *keywords = g_list_concat(keywords1, keywords2); | |
368 else | |
369 *keywords = res1 ? keywords1 : keywords2; | |
370 } | |
371 else | |
372 { | |
373 if (res1) string_list_free(keywords1); | |
374 if (res2) string_list_free(keywords2); | |
375 } | |
442 | 376 |
204 | 377 |
378 if (comment) | |
379 { | |
380 if (res1 && res2 && comment1 && comment2 && comment1[0] && comment2[0]) | |
381 *comment = g_strdup_printf("%s\n%s", comment1, comment2); | |
382 else | |
383 *comment = res1 ? comment1 : comment2; | |
384 } | |
385 if (res1 && (!comment || *comment != comment1)) g_free(comment1); | |
386 if (res2 && (!comment || *comment != comment2)) g_free(comment2); | |
442 | 387 |
204 | 388 return TRUE; |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
389 } |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
390 |
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
391 |
9 | 392 static gchar *comment_pull(GtkWidget *textview) |
393 { | |
394 GtkTextBuffer *buffer; | |
395 GtkTextIter start, end; | |
442 | 396 |
9 | 397 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview)); |
398 gtk_text_buffer_get_bounds(buffer, &start, &end); | |
442 | 399 |
9 | 400 return gtk_text_buffer_get_text(buffer, &start, &end, FALSE); |
401 } | |
402 | |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
403 static gint keyword_list_find(GList *list, const gchar *keyword) |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
404 { |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
405 while (list) |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
406 { |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
407 gchar *haystack = list->data; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
408 |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
409 if (haystack && keyword && strcmp(haystack, keyword) == 0) return TRUE; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
410 |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
411 list = list->next; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
412 } |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
413 |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
414 return FALSE; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
415 } |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
416 |
9 | 417 GList *keyword_list_pull(GtkWidget *text_widget) |
418 { | |
419 GList *list = NULL; | |
420 gchar *text; | |
421 gchar *ptr; | |
422 | |
423 if (GTK_IS_TEXT_VIEW(text_widget)) | |
424 { | |
425 text = comment_pull(text_widget); | |
426 } | |
427 else if (GTK_IS_ENTRY(text_widget)) | |
428 { | |
429 text = g_strdup(gtk_entry_get_text(GTK_ENTRY(text_widget))); | |
430 } | |
431 else | |
432 { | |
433 return NULL; | |
434 } | |
435 | |
436 ptr = text; | |
437 while (*ptr != '\0') | |
438 { | |
439 gchar *begin; | |
440 gint l = 0; | |
441 | |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
442 #define KEYWORDS_SEPARATOR(c) ((c) == ',' || (c) == ';' || (c) == '\n' || (c) == '\r' || (c) == '\b') |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
443 while (KEYWORDS_SEPARATOR(*ptr)) ptr++; |
9 | 444 begin = ptr; |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
445 while (*ptr != '\0' && !KEYWORDS_SEPARATOR(*ptr)) |
9 | 446 { |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
447 ptr++; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
448 l++; |
9 | 449 } |
442 | 450 |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
451 /* trim starting and ending whitespaces */ |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
452 while (l > 0 && g_ascii_isspace(*begin)) begin++, l--; |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
453 while (l > 0 && g_ascii_isspace(begin[l-1])) l--; |
9 | 454 |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
455 if (l > 0) |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
456 { |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
457 gchar *keyword = g_strndup(begin, l); |
442 | 458 |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
459 /* only add if not already in the list */ |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
460 if (keyword_list_find(list, keyword) == FALSE) |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
461 list = g_list_append(list, keyword); |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
462 else |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
463 g_free(keyword); |
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
464 } |
9 | 465 } |
466 | |
467 g_free(text); | |
468 | |
469 return list; | |
470 } | |
471 | |
472 void keyword_list_push(GtkWidget *textview, GList *list) | |
473 { | |
474 GtkTextBuffer *buffer; | |
475 GtkTextIter start, end; | |
476 | |
477 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview)); | |
478 gtk_text_buffer_get_bounds(buffer, &start, &end); | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
507
diff
changeset
|
479 gtk_text_buffer_delete(buffer, &start, &end); |
9 | 480 |
481 while (list) | |
482 { | |
483 const gchar *word = list->data; | |
484 GtkTextIter iter; | |
485 | |
486 gtk_text_buffer_get_end_iter(buffer, &iter); | |
487 if (word) gtk_text_buffer_insert(buffer, &iter, word, -1); | |
488 gtk_text_buffer_get_end_iter(buffer, &iter); | |
489 gtk_text_buffer_insert(buffer, &iter, "\n", -1); | |
490 | |
491 list = list->next; | |
492 } | |
493 } | |
494 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
495 static void metadata_set_keywords(FileData *fd, GList *keywords_to_use, gchar *comment_to_use, gint add) |
9 | 496 { |
497 gchar *comment = NULL; | |
498 GList *keywords = NULL; | |
499 GList *save_list = NULL; | |
500 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
501 comment_read(fd, &keywords, &comment); |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
502 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
503 if (comment_to_use) |
9 | 504 { |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
505 if (add && comment && *comment) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
506 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
507 gchar *tmp = comment; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
508 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
509 comment = g_strconcat(tmp, comment_to_use, NULL); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
510 g_free(tmp); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
511 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
512 else |
9 | 513 { |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
514 g_free(comment); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
515 comment = g_strdup(comment_to_use); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
516 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
517 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
518 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
519 if (keywords_to_use) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
520 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
521 if (add && keywords && g_list_length(keywords) > 0) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
522 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
523 GList *work; |
9 | 524 |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
525 work = keywords_to_use; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
526 while (work) |
9 | 527 { |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
528 gchar *key; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
529 GList *p; |
9 | 530 |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
531 key = work->data; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
532 work = work->next; |
9 | 533 |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
534 p = keywords; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
535 while (p && key) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
536 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
537 gchar *needle = p->data; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
538 p = p->next; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
539 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
540 if (strcmp(needle, key) == 0) key = NULL; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
541 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
542 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
543 if (key) keywords = g_list_append(keywords, g_strdup(key)); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
544 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
545 save_list = keywords; |
9 | 546 } |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
547 else |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
548 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
549 save_list = keywords_to_use; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
550 } |
9 | 551 } |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
552 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
553 comment_write(fd, save_list, comment); |
9 | 554 |
138 | 555 string_list_free(keywords); |
9 | 556 g_free(comment); |
557 } | |
558 | |
559 /* | |
560 *------------------------------------------------------------------- | |
561 * keyword list dialog | |
562 *------------------------------------------------------------------- | |
563 */ | |
564 | |
565 #define KEYWORD_DIALOG_WIDTH 200 | |
566 #define KEYWORD_DIALOG_HEIGHT 250 | |
567 | |
568 typedef struct _KeywordDlg KeywordDlg; | |
569 struct _KeywordDlg | |
570 { | |
571 GenericDialog *gd; | |
572 GtkWidget *treeview; | |
573 }; | |
574 | |
575 static KeywordDlg *keyword_dialog = NULL; | |
576 | |
577 | |
578 static void keyword_dialog_cancel_cb(GenericDialog *gd, gpointer data) | |
579 { | |
580 g_free(keyword_dialog); | |
581 keyword_dialog = NULL; | |
582 } | |
583 | |
584 static void keyword_dialog_ok_cb(GenericDialog *gd, gpointer data) | |
585 { | |
586 KeywordDlg *kd = data; | |
587 GtkTreeModel *store; | |
588 GtkTreeIter iter; | |
589 gint valid; | |
590 | |
591 history_list_free_key("keywords"); | |
592 | |
593 store = gtk_tree_view_get_model(GTK_TREE_VIEW(kd->treeview)); | |
594 valid = gtk_tree_model_get_iter_first(store, &iter); | |
595 while (valid) | |
596 { | |
597 gchar *key; | |
598 | |
599 gtk_tree_model_get(store, &iter, 0, &key, -1); | |
600 valid = gtk_tree_model_iter_next(store, &iter); | |
601 | |
602 history_list_add_to_key("keywords", key, 0); | |
603 } | |
604 | |
605 keyword_dialog_cancel_cb(gd, data); | |
606 | |
607 bar_info_keyword_update_all(); | |
608 } | |
609 | |
610 static void keyword_dialog_add_cb(GtkWidget *button, gpointer data) | |
611 { | |
612 KeywordDlg *kd = data; | |
613 GtkTreeSelection *selection; | |
614 GtkTreeModel *store; | |
615 GtkTreeIter sibling; | |
616 GtkTreeIter iter; | |
617 GtkTreePath *tpath; | |
618 | |
619 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(kd->treeview)); | |
620 if (gtk_tree_selection_get_selected(selection, &store, &sibling)) | |
621 { | |
622 gtk_list_store_insert_before(GTK_LIST_STORE(store), &iter, &sibling); | |
623 } | |
624 else | |
625 { | |
626 store = gtk_tree_view_get_model(GTK_TREE_VIEW(kd->treeview)); | |
627 gtk_list_store_append(GTK_LIST_STORE(store), &iter); | |
628 } | |
629 | |
630 gtk_list_store_set(GTK_LIST_STORE(store), &iter, 1, TRUE, -1); | |
631 | |
632 tpath = gtk_tree_model_get_path(store, &iter); | |
633 gtk_tree_view_set_cursor(GTK_TREE_VIEW(kd->treeview), tpath, | |
634 gtk_tree_view_get_column(GTK_TREE_VIEW(kd->treeview), 0), TRUE); | |
635 gtk_tree_path_free(tpath); | |
636 } | |
637 | |
638 static void keyword_dialog_remove_cb(GtkWidget *button, gpointer data) | |
639 { | |
640 KeywordDlg *kd = data; | |
641 GtkTreeSelection *selection; | |
642 GtkTreeModel *store; | |
643 GtkTreeIter iter; | |
644 GtkTreeIter next; | |
645 GtkTreePath *tpath; | |
646 | |
647 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(kd->treeview)); | |
648 if (!gtk_tree_selection_get_selected(selection, &store, &iter)) return; | |
649 | |
650 tpath = NULL; | |
651 next = iter; | |
652 if (gtk_tree_model_iter_next(store, &next)) | |
653 { | |
654 tpath = gtk_tree_model_get_path(store, &next); | |
655 } | |
656 else | |
657 { | |
658 tpath = gtk_tree_model_get_path(store, &iter); | |
659 if (!gtk_tree_path_prev(tpath)) | |
660 { | |
661 gtk_tree_path_free(tpath); | |
662 tpath = NULL; | |
663 } | |
664 } | |
665 if (tpath) | |
666 { | |
667 gtk_tree_view_set_cursor(GTK_TREE_VIEW(kd->treeview), tpath, | |
668 gtk_tree_view_get_column(GTK_TREE_VIEW(kd->treeview), 0), FALSE); | |
669 gtk_tree_path_free(tpath); | |
670 } | |
671 | |
672 gtk_list_store_remove(GTK_LIST_STORE(store), &iter); | |
673 } | |
674 | |
675 static void keyword_dialog_edit_cb(GtkCellRendererText *renderer, const gchar *path, | |
676 const gchar *new_text, gpointer data) | |
677 { | |
678 KeywordDlg *kd = data; | |
679 GtkTreeModel *store; | |
680 GtkTreeIter iter; | |
681 GtkTreePath *tpath; | |
682 | |
683 if (!new_text || strlen(new_text) == 0) return; | |
684 | |
685 store = gtk_tree_view_get_model(GTK_TREE_VIEW(kd->treeview)); | |
686 | |
687 tpath = gtk_tree_path_new_from_string(path); | |
688 gtk_tree_model_get_iter(store, &iter, tpath); | |
689 gtk_tree_path_free(tpath); | |
690 | |
691 gtk_list_store_set(GTK_LIST_STORE(store), &iter, 0, new_text, -1); | |
692 } | |
693 | |
694 static void keyword_dialog_populate(KeywordDlg *kd) | |
695 { | |
696 GtkListStore *store; | |
697 GList *list; | |
698 | |
699 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(kd->treeview))); | |
700 gtk_list_store_clear(store); | |
701 | |
702 list = history_list_get_by_key("keywords"); | |
703 list = g_list_last(list); | |
704 while (list) | |
705 { | |
706 GtkTreeIter iter; | |
707 | |
708 gtk_list_store_append(store, &iter); | |
709 gtk_list_store_set(store, &iter, 0, list->data, | |
710 1, TRUE, -1); | |
711 | |
712 list = list->prev; | |
713 } | |
714 } | |
715 | |
716 static void keyword_dialog_show(void) | |
717 { | |
718 GtkWidget *scrolled; | |
719 GtkListStore *store; | |
720 GtkTreeViewColumn *column; | |
721 GtkCellRenderer *renderer; | |
722 GtkWidget *hbox; | |
723 GtkWidget *button; | |
724 | |
725 if (keyword_dialog) | |
726 { | |
727 gtk_window_present(GTK_WINDOW(keyword_dialog->gd->dialog)); | |
728 return; | |
729 } | |
730 | |
731 keyword_dialog = g_new0(KeywordDlg, 1); | |
732 | |
733 keyword_dialog->gd = generic_dialog_new(_("Keyword Presets"), | |
254
9faf34f047b1
Make the wmclass value unique among the code by defining
zas_
parents:
253
diff
changeset
|
734 GQ_WMCLASS, "keyword_presets", NULL, TRUE, |
9 | 735 keyword_dialog_cancel_cb, keyword_dialog); |
736 generic_dialog_add_message(keyword_dialog->gd, NULL, _("Favorite keywords list"), NULL); | |
737 | |
738 generic_dialog_add_button(keyword_dialog->gd, GTK_STOCK_OK, NULL, | |
739 keyword_dialog_ok_cb, TRUE); | |
740 | |
741 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
742 gtk_widget_set_size_request(scrolled, KEYWORD_DIALOG_WIDTH, KEYWORD_DIALOG_HEIGHT); | |
743 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
744 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
745 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
746 gtk_box_pack_start(GTK_BOX(keyword_dialog->gd->vbox), scrolled, TRUE, TRUE, 5); | |
747 gtk_widget_show(scrolled); | |
748 | |
749 store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_BOOLEAN); | |
750 keyword_dialog->treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); | |
751 g_object_unref(store); | |
752 | |
753 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(keyword_dialog->treeview), FALSE); | |
754 gtk_tree_view_set_search_column(GTK_TREE_VIEW(keyword_dialog->treeview), 0); | |
755 gtk_tree_view_set_reorderable(GTK_TREE_VIEW(keyword_dialog->treeview), TRUE); | |
756 | |
757 column = gtk_tree_view_column_new(); | |
758 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
759 renderer = gtk_cell_renderer_text_new(); | |
760 g_signal_connect(G_OBJECT(renderer), "edited", | |
761 G_CALLBACK(keyword_dialog_edit_cb), keyword_dialog); | |
762 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
763 gtk_tree_view_column_add_attribute(column, renderer, "text", 0); | |
764 gtk_tree_view_column_add_attribute(column, renderer, "editable", 1); | |
765 gtk_tree_view_append_column(GTK_TREE_VIEW(keyword_dialog->treeview), column); | |
766 | |
767 gtk_container_add(GTK_CONTAINER(scrolled), keyword_dialog->treeview); | |
768 gtk_widget_show(keyword_dialog->treeview); | |
769 | |
770 hbox = gtk_hbox_new(FALSE, 5); | |
771 gtk_box_pack_start(GTK_BOX(keyword_dialog->gd->vbox), hbox, FALSE, FALSE, 0); | |
772 gtk_widget_show(hbox); | |
773 | |
774 button = gtk_button_new_from_stock(GTK_STOCK_ADD); | |
775 g_signal_connect(G_OBJECT(button), "clicked", | |
776 G_CALLBACK(keyword_dialog_add_cb), keyword_dialog); | |
777 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
778 gtk_widget_show(button); | |
779 | |
780 button = gtk_button_new_from_stock(GTK_STOCK_REMOVE); | |
781 g_signal_connect(G_OBJECT(button), "clicked", | |
782 G_CALLBACK(keyword_dialog_remove_cb), keyword_dialog); | |
783 gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0); | |
784 gtk_widget_show(button); | |
785 | |
786 keyword_dialog_populate(keyword_dialog); | |
787 | |
788 gtk_widget_show(keyword_dialog->gd->dialog); | |
789 } | |
790 | |
791 | |
792 static void bar_keyword_edit_cb(GtkWidget *button, gpointer data) | |
793 { | |
794 keyword_dialog_show(); | |
795 } | |
796 | |
797 | |
798 /* | |
799 *------------------------------------------------------------------- | |
800 * info bar | |
801 *------------------------------------------------------------------- | |
802 */ | |
803 | |
804 typedef enum { | |
805 BAR_SORT_COPY, | |
806 BAR_SORT_MOVE, | |
807 BAR_SORT_LINK | |
808 } SortActionType; | |
809 | |
810 enum { | |
811 KEYWORD_COLUMN_TOGGLE = 0, | |
812 KEYWORD_COLUMN_TEXT | |
813 }; | |
814 | |
815 typedef struct _BarInfoData BarInfoData; | |
816 struct _BarInfoData | |
817 { | |
818 GtkWidget *vbox; | |
819 GtkWidget *group_box; | |
820 GtkWidget *label_file_name; | |
821 GtkWidget *label_file_time; | |
822 | |
823 GtkWidget *keyword_view; | |
824 GtkWidget *keyword_treeview; | |
825 | |
826 GtkWidget *comment_view; | |
827 | |
828 GtkWidget *button_save; | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
829 GtkWidget *button_set_keywords_add; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
830 GtkWidget *button_set_keywords_replace; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
831 GtkWidget *button_set_comment_add; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
832 GtkWidget *button_set_comment_replace; |
9 | 833 |
138 | 834 FileData *fd; |
9 | 835 |
836 gint changed; | |
837 gint save_timeout_id; | |
838 | |
839 GList *(*list_func)(gpointer); | |
840 gpointer list_data; | |
841 }; | |
842 | |
843 | |
844 static GList *bar_list = NULL; | |
845 | |
846 | |
847 static void bar_info_write(BarInfoData *bd) | |
848 { | |
849 GList *list; | |
850 gchar *comment; | |
851 | |
138 | 852 if (!bd->fd) return; |
9 | 853 |
854 list = keyword_list_pull(bd->keyword_view); | |
855 comment = comment_pull(bd->comment_view); | |
856 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
857 comment_write(bd->fd, list, comment); |
9 | 858 |
138 | 859 string_list_free(list); |
9 | 860 g_free(comment); |
861 | |
862 bd->changed = FALSE; | |
863 gtk_widget_set_sensitive(bd->button_save, FALSE); | |
864 } | |
865 | |
866 static gint bar_info_autosave(gpointer data) | |
867 { | |
868 BarInfoData *bd = data; | |
869 | |
870 bar_info_write(bd); | |
871 | |
872 bd->save_timeout_id = -1; | |
873 | |
874 return FALSE; | |
875 } | |
876 | |
877 static void bar_info_save_update(BarInfoData *bd, gint enable) | |
878 { | |
879 if (bd->save_timeout_id != -1) | |
880 { | |
881 g_source_remove(bd->save_timeout_id); | |
882 bd->save_timeout_id = -1; | |
883 } | |
884 if (enable) | |
885 { | |
886 bd->save_timeout_id = g_timeout_add(BAR_KEYWORD_AUTOSAVE_TIME, bar_info_autosave, bd); | |
887 } | |
888 } | |
889 | |
890 static void bar_keyword_list_sync(BarInfoData *bd, GList *keywords) | |
891 { | |
892 GList *list; | |
893 GtkListStore *store; | |
894 GtkTreeIter iter; | |
895 | |
896 list = history_list_get_by_key("keywords"); | |
897 if (!list) | |
898 { | |
899 /* blank? set up a few example defaults */ | |
900 | |
901 gint i = 0; | |
902 | |
903 while (keyword_favorite_defaults[i] != NULL) | |
904 { | |
905 history_list_add_to_key("keywords", _(keyword_favorite_defaults[i]), 0); | |
906 i++; | |
907 } | |
908 | |
909 list = history_list_get_by_key("keywords"); | |
910 } | |
911 | |
912 store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(bd->keyword_treeview))); | |
913 | |
914 gtk_list_store_clear(store); | |
915 | |
916 list = g_list_last(list); | |
917 while (list) | |
918 { | |
919 gchar *key = list->data; | |
920 | |
921 gtk_list_store_append(store, &iter); | |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
922 gtk_list_store_set(store, &iter, KEYWORD_COLUMN_TOGGLE, keyword_list_find(keywords, key), |
9 | 923 KEYWORD_COLUMN_TEXT, key, -1); |
924 | |
925 list = list->prev; | |
926 } | |
927 } | |
928 | |
929 static void bar_info_keyword_update_all(void) | |
930 { | |
931 GList *work; | |
932 | |
933 work = bar_list; | |
934 while (work) | |
935 { | |
936 BarInfoData *bd; | |
937 GList *keywords; | |
938 | |
939 bd = work->data; | |
940 work = work->next; | |
941 | |
942 keywords = keyword_list_pull(bd->keyword_view); | |
943 bar_keyword_list_sync(bd, keywords); | |
138 | 944 string_list_free(keywords); |
9 | 945 } |
946 } | |
947 | |
948 static void bar_info_update(BarInfoData *bd) | |
949 { | |
950 GList *keywords = NULL; | |
951 gchar *comment = NULL; | |
952 | |
953 if (bd->label_file_name) | |
954 { | |
138 | 955 gtk_label_set_text(GTK_LABEL(bd->label_file_name), (bd->fd) ? bd->fd->name : ""); |
9 | 956 } |
957 if (bd->label_file_time) | |
958 { | |
138 | 959 gtk_label_set_text(GTK_LABEL(bd->label_file_time), (bd->fd) ? text_from_time(bd->fd->date) : ""); |
9 | 960 } |
961 | |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
962 if (comment_read(bd->fd, &keywords, &comment)) |
9 | 963 { |
964 keyword_list_push(bd->keyword_view, keywords); | |
965 gtk_text_buffer_set_text(gtk_text_view_get_buffer(GTK_TEXT_VIEW(bd->comment_view)), | |
966 (comment) ? comment : "", -1); | |
967 | |
968 bar_keyword_list_sync(bd, keywords); | |
969 | |
138 | 970 string_list_free(keywords); |
9 | 971 g_free(comment); |
972 } | |
973 else | |
974 { | |
975 gtk_text_buffer_set_text(gtk_text_view_get_buffer(GTK_TEXT_VIEW(bd->keyword_view)), "", -1); | |
976 gtk_text_buffer_set_text(gtk_text_view_get_buffer(GTK_TEXT_VIEW(bd->comment_view)), "", -1); | |
977 | |
978 bar_keyword_list_sync(bd, NULL); | |
979 } | |
980 | |
981 bar_info_save_update(bd, FALSE); | |
982 bd->changed = FALSE; | |
983 gtk_widget_set_sensitive(bd->button_save, FALSE); | |
984 | |
138 | 985 gtk_widget_set_sensitive(bd->group_box, (bd->fd != NULL)); |
9 | 986 } |
987 | |
138 | 988 void bar_info_set(GtkWidget *bar, FileData *fd) |
9 | 989 { |
990 BarInfoData *bd; | |
991 | |
992 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
993 if (!bd) return; | |
994 | |
995 if (bd->changed) bar_info_write(bd); | |
996 | |
138 | 997 file_data_unref(bd->fd); |
998 bd->fd = file_data_ref(fd); | |
9 | 999 |
1000 bar_info_update(bd); | |
1001 } | |
1002 | |
138 | 1003 void bar_info_maint_renamed(GtkWidget *bar, FileData *fd) |
9 | 1004 { |
1005 BarInfoData *bd; | |
1006 | |
1007 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
1008 if (!bd) return; | |
1009 | |
138 | 1010 file_data_unref(bd->fd); |
1011 bd->fd = file_data_ref(fd); | |
9 | 1012 |
1013 if (bd->label_file_name) | |
1014 { | |
138 | 1015 gtk_label_set_text(GTK_LABEL(bd->label_file_name), (bd->fd) ? bd->fd->name : ""); |
9 | 1016 } |
1017 } | |
1018 | |
1019 gint bar_info_event(GtkWidget *bar, GdkEvent *event) | |
1020 { | |
1021 BarInfoData *bd; | |
1022 | |
1023 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
1024 if (!bd) return FALSE; | |
1025 | |
1026 if (GTK_WIDGET_HAS_FOCUS(bd->keyword_view)) return gtk_widget_event(bd->keyword_view, event); | |
1027 if (GTK_WIDGET_HAS_FOCUS(bd->comment_view)) return gtk_widget_event(bd->comment_view, event); | |
1028 | |
1029 return FALSE; | |
1030 } | |
1031 | |
1032 static void bar_info_keyword_set(BarInfoData *bd, const gchar *keyword, gint active) | |
1033 { | |
1034 GList *list; | |
1035 gint found; | |
1036 | |
1037 if (!keyword) return; | |
1038 | |
1039 list = keyword_list_pull(bd->keyword_view); | |
427
134beb10d916
Accept keywords composed by two words ("Todo" = "A faire" in french).
zas_
parents:
318
diff
changeset
|
1040 found = keyword_list_find(list, keyword); |
9 | 1041 |
1042 if (active != found) | |
1043 { | |
1044 if (found) | |
1045 { | |
1046 GList *work = list; | |
1047 | |
1048 while (work) | |
1049 { | |
1050 gchar *key = work->data; | |
1051 work = work->next; | |
1052 | |
1053 if (key && keyword && strcmp(key, keyword) == 0) | |
1054 { | |
1055 list = g_list_remove(list, key); | |
1056 g_free(key); | |
1057 } | |
1058 } | |
1059 } | |
1060 else | |
1061 { | |
1062 list = g_list_append(list, g_strdup(keyword)); | |
1063 } | |
1064 | |
1065 keyword_list_push(bd->keyword_view, list); | |
1066 } | |
1067 | |
138 | 1068 string_list_free(list); |
9 | 1069 } |
1070 | |
1071 static void bar_info_keyword_toggle(GtkCellRendererToggle *toggle, const gchar *path, gpointer data) | |
1072 { | |
1073 BarInfoData *bd = data; | |
1074 GtkTreeModel *store; | |
1075 GtkTreeIter iter; | |
1076 GtkTreePath *tpath; | |
1077 gchar *key = NULL; | |
1078 gboolean active; | |
1079 | |
1080 store = gtk_tree_view_get_model(GTK_TREE_VIEW(bd->keyword_treeview)); | |
1081 | |
1082 tpath = gtk_tree_path_new_from_string(path); | |
1083 gtk_tree_model_get_iter(store, &iter, tpath); | |
1084 gtk_tree_path_free(tpath); | |
1085 | |
1086 gtk_tree_model_get(store, &iter, KEYWORD_COLUMN_TOGGLE, &active, | |
1087 KEYWORD_COLUMN_TEXT, &key, -1); | |
1088 active = (!active); | |
1089 gtk_list_store_set(GTK_LIST_STORE(store), &iter, KEYWORD_COLUMN_TOGGLE, active, -1); | |
1090 | |
1091 bar_info_keyword_set(bd, key, active); | |
1092 g_free(key); | |
1093 } | |
1094 | |
1095 static void bar_info_save(GtkWidget *button, gpointer data) | |
1096 { | |
1097 BarInfoData *bd = data; | |
1098 | |
1099 bar_info_save_update(bd, FALSE); | |
1100 bar_info_write(bd); | |
1101 } | |
1102 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1103 static void bar_info_set_selection(BarInfoData *bd, gint set_keywords, gint set_comment, gint add) |
9 | 1104 { |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1105 GList *keywords = NULL; |
9 | 1106 GList *list = NULL; |
1107 GList *work; | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1108 gchar *comment = NULL; |
9 | 1109 |
1110 if (!bd->list_func) return; | |
1111 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1112 if (set_keywords) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1113 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1114 keywords = keyword_list_pull(bd->keyword_view); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1115 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1116 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1117 if (set_comment) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1118 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1119 comment = comment_pull(bd->comment_view); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1120 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1121 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1122 if (add && !keywords && !comment) return; |
9 | 1123 |
1124 list = bd->list_func(bd->list_data); | |
1125 work = list; | |
1126 while (work) | |
1127 { | |
138 | 1128 FileData *fd = work->data; |
9 | 1129 work = work->next; |
1130 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1131 metadata_set_keywords(fd, keywords, comment, add); |
9 | 1132 } |
1133 | |
138 | 1134 filelist_free(list); |
1135 string_list_free(keywords); | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1136 g_free(comment); |
9 | 1137 } |
1138 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1139 static void bar_info_set_keywords_add(GtkWidget *button, gpointer data) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1140 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1141 BarInfoData *bd = data; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1142 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1143 bar_info_set_selection(bd, TRUE, FALSE, TRUE); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1144 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1145 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1146 static void bar_info_set_keywords_replace(GtkWidget *button, gpointer data) |
9 | 1147 { |
1148 BarInfoData *bd = data; | |
1149 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1150 bar_info_set_selection(bd, TRUE, FALSE, FALSE); |
9 | 1151 } |
1152 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1153 static void bar_info_set_comment_add(GtkWidget *button, gpointer data) |
9 | 1154 { |
1155 BarInfoData *bd = data; | |
1156 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1157 bar_info_set_selection(bd, FALSE, TRUE, TRUE); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1158 } |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1159 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1160 static void bar_info_set_comment_replace(GtkWidget *button, gpointer data) |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1161 { |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1162 BarInfoData *bd = data; |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1163 |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1164 bar_info_set_selection(bd, FALSE, TRUE, FALSE); |
9 | 1165 } |
1166 | |
1167 static void bar_info_changed(GtkTextBuffer *buffer, gpointer data) | |
1168 { | |
1169 BarInfoData *bd = data; | |
1170 | |
1171 bd->changed = TRUE; | |
1172 gtk_widget_set_sensitive(bd->button_save, TRUE); | |
1173 | |
1174 bar_info_save_update(bd, TRUE); | |
1175 } | |
1176 | |
1177 void bar_info_close(GtkWidget *bar) | |
1178 { | |
1179 BarInfoData *bd; | |
1180 | |
1181 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
1182 if (!bd) return; | |
1183 | |
1184 gtk_widget_destroy(bd->vbox); | |
1185 } | |
1186 | |
1187 static void bar_info_destroy(GtkWidget *widget, gpointer data) | |
1188 { | |
1189 BarInfoData *bd = data; | |
1190 | |
1191 if (bd->changed) bar_info_write(bd); | |
1192 bar_info_save_update(bd, FALSE); | |
1193 | |
1194 bar_list = g_list_remove(bar_list, bd); | |
1195 | |
138 | 1196 file_data_unref(bd->fd); |
9 | 1197 |
1198 g_free(bd); | |
1199 } | |
1200 | |
138 | 1201 GtkWidget *bar_info_new(FileData *fd, gint metadata_only, GtkWidget *bounding_widget) |
9 | 1202 { |
1203 BarInfoData *bd; | |
1204 GtkWidget *box; | |
1205 GtkWidget *hbox; | |
1206 GtkWidget *table; | |
1207 GtkWidget *scrolled; | |
1208 GtkTextBuffer *buffer; | |
1209 GtkWidget *label; | |
1210 GtkWidget *tbar; | |
1211 GtkListStore *store; | |
1212 GtkTreeViewColumn *column; | |
1213 GtkCellRenderer *renderer; | |
1214 | |
1215 bd = g_new0(BarInfoData, 1); | |
1216 | |
1217 bd->list_func = NULL; | |
1218 bd->list_data = NULL; | |
1219 | |
1220 bd->vbox = gtk_vbox_new(FALSE, PREF_PAD_GAP); | |
1221 g_object_set_data(G_OBJECT(bd->vbox), "bar_info_data", bd); | |
1222 g_signal_connect(G_OBJECT(bd->vbox), "destroy", | |
1223 G_CALLBACK(bar_info_destroy), bd); | |
1224 | |
1225 if (!metadata_only) | |
1226 { | |
1227 hbox = pref_box_new(bd->vbox, FALSE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_GAP); | |
1228 | |
1229 label = sizer_new(bd->vbox, bounding_widget, SIZER_POS_LEFT); | |
1230 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); | |
1231 gtk_widget_show(label); | |
1232 | |
1233 label = gtk_label_new(_("Keywords")); | |
1234 pref_label_bold(label, TRUE, FALSE); | |
1235 gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0); | |
1236 gtk_widget_show(label); | |
1237 } | |
1238 | |
1239 bd->group_box = pref_box_new(bd->vbox, TRUE, GTK_ORIENTATION_VERTICAL, PREF_PAD_GAP); | |
1240 | |
1241 if (!metadata_only) | |
1242 { | |
1243 GtkWidget *table; | |
1244 | |
1245 table = pref_table_new(bd->group_box, 2, 2, FALSE, FALSE); | |
1246 | |
1247 bd->label_file_name = table_add_line(table, 0, 0, _("Filename:"), NULL); | |
1248 bd->label_file_time = table_add_line(table, 0, 1, _("File date:"), NULL); | |
1249 } | |
1250 else | |
1251 { | |
1252 bd->label_file_name = NULL; | |
1253 bd->label_file_time = NULL; | |
1254 } | |
1255 | |
1256 table = gtk_table_new(3, 1, TRUE); | |
1257 gtk_table_set_row_spacings(GTK_TABLE(table), PREF_PAD_GAP); | |
1258 gtk_box_pack_start(GTK_BOX(bd->group_box), table, TRUE, TRUE, 0); | |
1259 gtk_widget_show(table); | |
1260 | |
1261 /* keyword entry */ | |
1262 | |
1263 box = gtk_vbox_new(FALSE, 0); | |
1264 gtk_table_attach(GTK_TABLE(table), box, 0, 1, 0, 2, | |
1265 GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); | |
1266 gtk_widget_show(box); | |
1267 | |
1268 label = pref_label_new(box, _("Keywords:")); | |
1269 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); | |
1270 pref_label_bold(label, TRUE, FALSE); | |
1271 | |
1272 hbox = pref_box_new(box, TRUE, GTK_ORIENTATION_HORIZONTAL, PREF_PAD_GAP); | |
1273 | |
1274 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1275 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
1276 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
1277 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1278 gtk_box_pack_start(GTK_BOX(hbox), scrolled, TRUE, TRUE, 0); | |
1279 gtk_widget_show(scrolled); | |
1280 | |
1281 bd->keyword_view = gtk_text_view_new(); | |
1282 gtk_container_add(GTK_CONTAINER(scrolled), bd->keyword_view); | |
1283 gtk_widget_show(bd->keyword_view); | |
1284 | |
1285 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(bd->keyword_view)); | |
1286 g_signal_connect(G_OBJECT(buffer), "changed", | |
1287 G_CALLBACK(bar_info_changed), bd); | |
1288 | |
1289 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1290 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
1291 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
1292 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1293 gtk_box_pack_start(GTK_BOX(hbox), scrolled, TRUE, TRUE, 0); | |
1294 gtk_widget_show(scrolled); | |
1295 | |
1296 store = gtk_list_store_new(2, G_TYPE_BOOLEAN, G_TYPE_STRING); | |
1297 bd->keyword_treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(store)); | |
1298 g_object_unref(store); | |
1299 | |
1300 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(bd->keyword_treeview), FALSE); | |
1301 | |
1302 if (metadata_only) | |
1303 { | |
1304 gtk_tree_view_set_search_column(GTK_TREE_VIEW(bd->keyword_treeview), KEYWORD_COLUMN_TEXT); | |
1305 } | |
1306 else | |
1307 { | |
1308 gtk_tree_view_set_enable_search(GTK_TREE_VIEW(bd->keyword_treeview), FALSE); | |
1309 } | |
1310 | |
1311 column = gtk_tree_view_column_new(); | |
1312 gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); | |
1313 | |
1314 renderer = gtk_cell_renderer_toggle_new(); | |
1315 gtk_tree_view_column_pack_start(column, renderer, FALSE); | |
1316 gtk_tree_view_column_add_attribute(column, renderer, "active", KEYWORD_COLUMN_TOGGLE); | |
1317 g_signal_connect(G_OBJECT(renderer), "toggled", | |
1318 G_CALLBACK(bar_info_keyword_toggle), bd); | |
1319 | |
1320 renderer = gtk_cell_renderer_text_new(); | |
1321 gtk_tree_view_column_pack_start(column, renderer, TRUE); | |
1322 gtk_tree_view_column_add_attribute(column, renderer, "text", KEYWORD_COLUMN_TEXT); | |
1323 | |
1324 gtk_tree_view_append_column(GTK_TREE_VIEW(bd->keyword_treeview), column); | |
1325 | |
1326 gtk_container_add(GTK_CONTAINER(scrolled), bd->keyword_treeview); | |
1327 gtk_widget_show(bd->keyword_treeview); | |
1328 | |
1329 /* comment entry */ | |
1330 | |
1331 box = gtk_vbox_new(FALSE, 0); | |
1332 gtk_table_attach(GTK_TABLE(table), box, 0, 1, 2, 3, | |
1333 GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0); | |
1334 gtk_widget_show(box); | |
1335 | |
1336 label = pref_label_new(box, _("Comment:")); | |
1337 gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); | |
1338 pref_label_bold(label, TRUE, FALSE); | |
1339 | |
1340 scrolled = gtk_scrolled_window_new(NULL, NULL); | |
1341 gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled), GTK_SHADOW_IN); | |
1342 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled), | |
1343 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); | |
1344 gtk_box_pack_start(GTK_BOX(box), scrolled, TRUE, TRUE, 0); | |
1345 gtk_widget_show(scrolled); | |
1346 | |
1347 bd->comment_view = gtk_text_view_new(); | |
1348 gtk_container_add(GTK_CONTAINER(scrolled), bd->comment_view); | |
1349 gtk_widget_show(bd->comment_view); | |
1350 | |
1351 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(bd->comment_view)); | |
1352 g_signal_connect(G_OBJECT(buffer), "changed", | |
1353 G_CALLBACK(bar_info_changed), bd); | |
1354 | |
1355 /* toolbar */ | |
1356 | |
1357 tbar = pref_toolbar_new(bd->group_box, GTK_TOOLBAR_ICONS); | |
1358 | |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
1359 pref_toolbar_button(tbar, GTK_STOCK_INDEX, NULL, FALSE, |
9 | 1360 _("Edit favorite keywords list."), |
1361 G_CALLBACK(bar_keyword_edit_cb), bd); | |
1362 pref_toolbar_spacer(tbar); | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1363 bd->button_set_keywords_add = pref_toolbar_button(tbar, GTK_STOCK_ADD, NULL, FALSE, |
9 | 1364 _("Add keywords to selected files"), |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1365 G_CALLBACK(bar_info_set_keywords_add), bd); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1366 bd->button_set_keywords_replace = pref_toolbar_button(tbar, GTK_STOCK_CONVERT, NULL, FALSE, |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1367 _("Add keywords to selected files, replacing existing ones"), |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1368 G_CALLBACK(bar_info_set_keywords_replace), bd); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1369 bd->button_set_comment_add = pref_toolbar_button(tbar, GTK_STOCK_DND_MULTIPLE, NULL, FALSE, |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1370 _("Add comment to selected files"), |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1371 G_CALLBACK(bar_info_set_comment_add), bd); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1372 bd->button_set_comment_replace = pref_toolbar_button(tbar, GTK_STOCK_DND, NULL, FALSE, |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1373 _("Add comment to selected files, replacing existing one"), |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1374 G_CALLBACK(bar_info_set_comment_replace), bd); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1375 |
9 | 1376 pref_toolbar_spacer(tbar); |
41
6281cc38e5ca
Wed Apr 27 15:17:57 2005 John Ellis <johne@verizon.net>
gqview
parents:
9
diff
changeset
|
1377 bd->button_save = pref_toolbar_button(tbar, GTK_STOCK_SAVE, NULL, FALSE, |
9 | 1378 _("Save comment now"), |
1379 G_CALLBACK(bar_info_save), bd); | |
1380 | |
1381 bd->save_timeout_id = -1; | |
1382 | |
138 | 1383 bd->fd = file_data_ref(fd); |
9 | 1384 bar_info_update(bd); |
1385 | |
1386 bar_info_selection(bd->vbox, 0); | |
1387 | |
1388 bar_list = g_list_append(bar_list, bd); | |
442 | 1389 |
9 | 1390 return bd->vbox; |
1391 } | |
1392 | |
1393 void bar_info_set_selection_func(GtkWidget *bar, GList *(*list_func)(gpointer data), gpointer data) | |
1394 { | |
1395 BarInfoData *bd; | |
1396 | |
1397 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
1398 if (!bd) return; | |
1399 | |
1400 bd->list_func = list_func; | |
1401 bd->list_data = data; | |
1402 } | |
1403 | |
1404 void bar_info_selection(GtkWidget *bar, gint count) | |
1405 { | |
1406 BarInfoData *bd; | |
1407 gint enable; | |
1408 | |
1409 bd = g_object_get_data(G_OBJECT(bar), "bar_info_data"); | |
1410 if (!bd) return; | |
1411 | |
1412 enable = (count > 0 && bd->list_func != NULL); | |
1413 | |
595
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1414 gtk_widget_set_sensitive(bd->button_set_keywords_add, enable); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1415 gtk_widget_set_sensitive(bd->button_set_keywords_replace, enable); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1416 gtk_widget_set_sensitive(bd->button_set_comment_add, enable); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1417 gtk_widget_set_sensitive(bd->button_set_comment_replace, enable); |
15766932414c
Allow the user to append or replace comments for a group of selected files.
zas_
parents:
594
diff
changeset
|
1418 |
9 | 1419 } |