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