completely separated global and layout window options
[geeqie.git] / src / rcfile.c
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 The Geeqie Team
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 #include <glib/gstdio.h>
14 #include <errno.h>
15
16 #include "main.h"
17 #include "rcfile.h"
18
19 #include "bar.h"
20 #include "bar_comment.h"
21 #include "bar_exif.h"
22 #include "bar_histogram.h"
23 #include "bar_keywords.h"
24 #include "bar_sort.h"
25 #include "editors.h"
26 #include "filefilter.h"
27 #include "misc.h"
28 #include "pixbuf-renderer.h"
29 #include "secure_save.h"
30 #include "slideshow.h"
31 #include "ui_fileops.h"
32 #include "layout.h"
33 #include "layout_util.h"
34 #include "bar.h"
35 #include "metadata.h"
36
37
38 /*
39  *-----------------------------------------------------------------------------
40  * line write/parse routines (public)
41  *-----------------------------------------------------------------------------
42  */
43
44 void write_indent(GString *str, gint indent)
45 {
46         g_string_append_printf(str, "%*s", indent * 4, "");
47 }
48
49 void write_char_option(GString *str, gint indent, const gchar *label, const gchar *text)
50 {
51         /* this is needed for overlay string, because g_markup_escape_text does not handle \n and such, 
52            ideas for improvement are welcome
53         */
54         static const unsigned char no_quote_utf[] = {
55                 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,
56                 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
57                 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3,
58                 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
59                 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb,
60                 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
61                 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3,
62                 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
63                 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
64                 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
65                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
66                 '"',  0 /* '"' is handled in g_markup_escape_text */
67         };
68
69         gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf); 
70         gchar *escval2 = g_markup_escape_text(escval1, -1);
71         write_indent(str, indent);
72         g_string_append_printf(str, "%s = \"%s\"\n", label, escval2);
73         g_free(escval2);
74         g_free(escval1);
75 }
76
77 gboolean read_char_option(const gchar *option, const gchar *label, const gchar *value, gchar **text)
78 {
79         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
80         if (!text) return FALSE;
81
82         g_free(*text);
83         *text = g_strcompress(value);
84         return TRUE;
85 }
86
87 /* Since gdk_color_to_string() is only available since gtk 2.12
88  * here is an equivalent stub function. */
89 static gchar *color_to_string(GdkColor *color)
90 {
91         return g_strdup_printf("#%04X%04X%04X", color->red, color->green, color->blue);
92 }
93
94 void write_color_option(GString *str, gint indent, gchar *label, GdkColor *color)
95 {
96         if (color)
97                 {
98                 gchar *colorstring = color_to_string(color);
99
100                 write_char_option(str, indent, label, colorstring);
101                 g_free(colorstring);
102                 }
103         else
104                 write_char_option(str, indent, label, "");
105 }
106
107 gboolean read_color_option(const gchar *option, const gchar *label, const gchar *value, GdkColor *color)
108 {
109         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
110         if (!color) return FALSE;
111
112         if (!*value) return FALSE;
113         gdk_color_parse(value, color);
114         return TRUE;
115 }
116
117 void write_int_option(GString *str, gint indent, const gchar *label, gint n)
118 {
119         write_indent(str, indent);
120         g_string_append_printf(str, "%s = \"%d\"\n", label, n);
121 }
122
123 gboolean read_int_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
124 {
125         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
126         if (!n) return FALSE;
127
128         if (g_ascii_isdigit(value[0]) || (value[0] == '-' && g_ascii_isdigit(value[1])))
129                 {
130                 *n = strtol(value, NULL, 10);
131                 }
132         else
133                 {
134                 if (g_ascii_strcasecmp(value, "true") == 0)
135                         *n = 1;
136                 else
137                         *n = 0;
138                 }
139
140         return TRUE;
141 }
142
143 void write_uint_option(GString *str, gint indent, const gchar *label, guint n)
144 {
145         write_indent(str, indent);
146         g_string_append_printf(str, "%s = \"%u\"\n", label, n);
147 }
148
149 gboolean read_uint_option(const gchar *option, const gchar *label, const gchar *value, guint *n)
150 {
151         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
152         if (!n) return FALSE;
153
154         if (g_ascii_isdigit(value[0]))
155                 {
156                 *n = strtoul(value, NULL, 10);
157                 }
158         else
159                 {
160                 if (g_ascii_strcasecmp(value, "true") == 0)
161                         *n = 1;
162                 else
163                         *n = 0;
164                 }
165         
166         return TRUE;
167 }
168
169 gboolean read_uint_option_clamp(const gchar *option, const gchar *label, const gchar *value, guint *n, guint min, guint max)
170 {
171         gboolean ret;
172
173         ret = read_uint_option(option, label, value, n);
174         if (ret) *n = CLAMP(*n, min, max);
175
176         return ret;
177 }
178
179
180 gboolean read_int_option_clamp(const gchar *option, const gchar *label, const gchar *value, gint *n, gint min, gint max)
181 {
182         gboolean ret;
183
184         ret = read_int_option(option, label, value, n);
185         if (ret) *n = CLAMP(*n, min, max);
186
187         return ret;
188 }
189
190 void write_int_unit_option(GString *str, gint indent, gchar *label, gint n, gint subunits)
191 {
192         gint l, r;
193
194         if (subunits > 0)
195                 {
196                 l = n / subunits;
197                 r = n % subunits;
198                 }
199         else
200                 {
201                 l = n;
202                 r = 0;
203                 }
204
205         write_indent(str, indent);
206         g_string_append_printf(str, "%s = \"%d.%d\"\n", label, l, r);
207 }
208
209 gboolean read_int_unit_option(const gchar *option, const gchar *label, const gchar *value, gint *n, gint subunits)
210 {
211         gint l, r;
212         gchar *ptr, *buf;
213
214         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
215         if (!n) return FALSE;
216
217         buf = g_strdup(value);
218         ptr = buf;
219         while (*ptr != '\0' && *ptr != '.') ptr++;
220         if (*ptr == '.')
221                 {
222                 *ptr = '\0';
223                 l = strtol(value, NULL, 10);
224                 *ptr = '.';
225                 ptr++;
226                 r = strtol(ptr, NULL, 10);
227                 }
228         else
229                 {
230                 l = strtol(value, NULL, 10);
231                 r = 0;
232                 }
233
234         *n = l * subunits + r;
235         g_free(buf);
236         
237         return TRUE;
238 }
239
240 void write_bool_option(GString *str, gint indent, gchar *label, gint n)
241 {
242         write_indent(str, indent);
243         g_string_append_printf(str, "%s = \"%s\"\n", label, n ? "true" : "false");
244 }
245
246 gboolean read_bool_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
247 {
248         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
249         if (!n) return FALSE;
250
251         if (g_ascii_strcasecmp(value, "true") == 0 || atoi(value) != 0)
252                 *n = TRUE;
253         else
254                 *n = FALSE;
255
256         return TRUE;
257 }
258
259 /*
260  *-----------------------------------------------------------------------------
261  * write fuctions for elements (private)
262  *-----------------------------------------------------------------------------
263  */
264
265 static void write_global_attributes(GString *outstr, gint indent)
266 {
267 //      WRITE_SUBTITLE("General Options");
268
269         WRITE_BOOL(*options, show_icon_names);
270         WRITE_BOOL(*options, show_copy_path);
271         WRITE_SEPARATOR();
272
273         WRITE_BOOL(*options, tree_descend_subdirs);
274         WRITE_BOOL(*options, lazy_image_sync);
275         WRITE_BOOL(*options, update_on_time_change);
276         WRITE_SEPARATOR();
277
278         WRITE_BOOL(*options, progressive_key_scrolling);
279
280         WRITE_UINT(*options, duplicates_similarity_threshold);
281         WRITE_SEPARATOR();
282
283         WRITE_BOOL(*options, mousewheel_scrolls);
284         WRITE_INT(*options, open_recent_list_maxsize);
285         WRITE_INT(*options, dnd_icon_size);
286         WRITE_BOOL(*options, place_dialogs_under_mouse);
287
288         WRITE_BOOL(*options, save_window_positions);
289         WRITE_BOOL(*options, tools_restore_state);
290
291 //      WRITE_SUBTITLE("Startup Options");
292
293         WRITE_BOOL(*options, startup.restore_path);
294         WRITE_BOOL(*options, startup.use_last_path);
295         WRITE_CHAR(*options, startup.path);
296
297
298 //      WRITE_SUBTITLE("File operations Options");
299
300         WRITE_BOOL(*options, file_ops.enable_in_place_rename);
301         WRITE_BOOL(*options, file_ops.confirm_delete);
302         WRITE_BOOL(*options, file_ops.enable_delete_key);
303         WRITE_BOOL(*options, file_ops.safe_delete_enable);
304         WRITE_CHAR(*options, file_ops.safe_delete_path);
305         WRITE_INT(*options, file_ops.safe_delete_folder_maxsize);
306
307
308
309
310 //      WRITE_SUBTITLE("Properties dialog Options");
311         WRITE_CHAR(*options, properties.tabs_order);
312
313 //      WRITE_SUBTITLE("Image Options");
314
315         WRITE_UINT(*options, image.zoom_mode);
316
317 //      g_string_append_printf(outstr, "# image.zoom_mode possible values are:\n"
318 //                          "#   original\n"
319 //                          "#   fit\n"
320 //                          "#   dont_change\n");
321 //      g_string_append_printf(outstr, "image.zoom_mode: ");
322 //      switch (options->image.zoom_mode)
323 //      {
324 //      case ZOOM_RESET_ORIGINAL: g_string_append_printf(outstr, "original\n"); break;
325 //      case ZOOM_RESET_FIT_WINDOW: g_string_append_printf(outstr, "fit\n"); break;
326 //      case ZOOM_RESET_NONE: g_string_append_printf(outstr, "dont_change\n"); break;
327 //      }
328         WRITE_SEPARATOR();
329         WRITE_BOOL(*options, image.zoom_2pass);
330         WRITE_BOOL(*options, image.zoom_to_fit_allow_expand);
331         WRITE_UINT(*options, image.zoom_quality);
332         WRITE_INT(*options, image.zoom_increment);
333         WRITE_BOOL(*options, image.fit_window_to_image);
334         WRITE_BOOL(*options, image.limit_window_size);
335         WRITE_INT(*options, image.max_window_size);
336         WRITE_BOOL(*options, image.limit_autofit_size);
337         WRITE_INT(*options, image.max_autofit_size);
338         WRITE_UINT(*options, image.scroll_reset_method);
339         WRITE_INT(*options, image.tile_cache_max);
340         WRITE_INT(*options, image.image_cache_max);
341         WRITE_UINT(*options, image.dither_quality);
342         WRITE_BOOL(*options, image.enable_read_ahead);
343         WRITE_BOOL(*options, image.exif_rotate_enable);
344         WRITE_BOOL(*options, image.use_custom_border_color);
345         WRITE_COLOR(*options, image.border_color);
346         WRITE_INT(*options, image.read_buffer_size);
347         WRITE_INT(*options, image.idle_read_loop_count);
348
349 //      WRITE_SUBTITLE("Thumbnails Options");
350
351         WRITE_INT(*options, thumbnails.max_width);
352         WRITE_INT(*options, thumbnails.max_height);
353         WRITE_BOOL(*options, thumbnails.enable_caching);
354         WRITE_BOOL(*options, thumbnails.cache_into_dirs);
355         WRITE_BOOL(*options, thumbnails.fast);
356         WRITE_BOOL(*options, thumbnails.use_xvpics);
357         WRITE_BOOL(*options, thumbnails.spec_standard);
358         WRITE_UINT(*options, thumbnails.quality);
359         WRITE_BOOL(*options, thumbnails.use_exif);
360
361
362 //      WRITE_SUBTITLE("File sorting Options");
363
364         WRITE_INT(*options, file_sort.method);
365         WRITE_BOOL(*options, file_sort.ascending);
366         WRITE_BOOL(*options, file_sort.case_sensitive);
367
368
369 //      WRITE_SUBTITLE("Fullscreen Options");
370
371         WRITE_INT(*options, fullscreen.screen);
372         WRITE_BOOL(*options, fullscreen.clean_flip);
373         WRITE_BOOL(*options, fullscreen.disable_saver);
374         WRITE_BOOL(*options, fullscreen.above);
375
376         WRITE_SEPARATOR();
377
378 //      WRITE_SUBTITLE("Image Overlay Options");
379         WRITE_CHAR(*options, image_overlay.template_string);
380
381 //      g_string_append_printf(outstr, "# these are relative positions:\n");
382 //      g_string_append_printf(outstr, "# x >= 0: |x| pixels from left border\n");
383 //      g_string_append_printf(outstr, "# x < 0 : |x| pixels from right border\n");
384 //      g_string_append_printf(outstr, "# y >= 0: |y| pixels from top border\n");
385 //      g_string_append_printf(outstr, "# y < 0 : |y| pixels from bottom border\n");
386         WRITE_INT(*options, image_overlay.x);
387         WRITE_INT(*options, image_overlay.y);
388
389
390 //      WRITE_SUBTITLE("Slideshow Options");
391
392         WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION);
393         WRITE_BOOL(*options, slideshow.random);
394         WRITE_BOOL(*options, slideshow.repeat);
395
396
397 //      WRITE_SUBTITLE("Collection Options");
398
399         WRITE_BOOL(*options, collections.rectangular_selection);
400
401
402 //      WRITE_SUBTITLE("Filtering Options");
403
404         WRITE_BOOL(*options, file_filter.show_hidden_files);
405         WRITE_BOOL(*options, file_filter.show_dot_directory);
406         WRITE_BOOL(*options, file_filter.disable);
407         WRITE_SEPARATOR();
408
409
410 //      WRITE_SUBTITLE("Sidecars Options");
411
412         WRITE_CHAR(*options, sidecar.ext);
413
414
415
416 //      WRITE_SUBTITLE("Shell command");
417         WRITE_CHAR(*options, shell.path);
418         WRITE_CHAR(*options, shell.options);
419
420
421 //      WRITE_SUBTITLE("Helpers");
422 //      g_string_append_printf(outstr, "# Html browser\n");
423 //      g_string_append_printf(outstr, "# command_name is: the binary's name to look for in the path\n");
424 //      g_string_append_printf(outstr, "# If command_name is empty, the program will try various common html browsers\n");
425 //      g_string_append_printf(outstr, "# command_line is:\n");
426 //      g_string_append_printf(outstr, "# \"\" (empty string)  = execute binary with html file path as command line\n");
427 //      g_string_append_printf(outstr, "# \"string\"           = execute string and use results for command line\n");
428 //      g_string_append_printf(outstr, "# \"!string\"          = use text following ! as command line, replacing optional %%s with html file path\n");
429         WRITE_CHAR(*options, helpers.html_browser.command_name);
430         WRITE_CHAR(*options, helpers.html_browser.command_line);
431
432 /* FIXME:
433         WRITE_SUBTITLE("Exif Options");
434         g_string_append_printf(outstr, "# Display: 0: never\n"
435                             "#          1: if set\n"
436                             "#          2: always\n\n");
437         for (i = 0; ExifUIList[i].key; i++)
438                 {
439                 g_string_append_printf(outstr, "exif.display.");
440                 write_int_option(outstr, 2, (gchar *)ExifUIList[i].key, ExifUIList[i].current);
441                 }
442 */
443
444 //      WRITE_SUBTITLE("Metadata Options");
445         WRITE_BOOL(*options, metadata.enable_metadata_dirs);
446         WRITE_BOOL(*options, metadata.save_in_image_file); 
447         WRITE_BOOL(*options, metadata.save_legacy_IPTC);
448         WRITE_BOOL(*options, metadata.warn_on_write_problems);
449         WRITE_BOOL(*options, metadata.save_legacy_format);
450         WRITE_BOOL(*options, metadata.sync_grouped_files);
451         WRITE_BOOL(*options, metadata.confirm_write);
452         WRITE_INT(*options, metadata.confirm_timeout);
453         WRITE_BOOL(*options, metadata.confirm_after_timeout);
454         WRITE_BOOL(*options, metadata.confirm_on_image_change);
455         WRITE_BOOL(*options, metadata.confirm_on_dir_change);
456
457 }
458
459 static void write_color_profile(GString *outstr, gint indent)
460 {
461         gint i;
462 #ifndef HAVE_LCMS
463         g_string_append_printf(outstr, "<!-- NOTICE: %s was not built with support for color profiles,\n"
464                             "         color profile options will have no effect.\n-->\n", GQ_APPNAME);
465 #endif
466
467         WRITE_STRING("<color_profiles\n");
468         indent++;
469         WRITE_INT(options->color_profile, screen_type);
470         WRITE_CHAR(options->color_profile, screen_file);
471         WRITE_BOOL(options->color_profile, enabled);
472         WRITE_BOOL(options->color_profile, use_image);
473         WRITE_INT(options->color_profile, input_type);
474         indent--;
475         WRITE_STRING(">\n");
476
477         indent++;
478         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
479                 {
480                 WRITE_STRING("<profile\n");
481                 indent++;
482                 write_char_option(outstr, indent, "input_file", options->color_profile.input_file[i]);
483                 write_char_option(outstr, indent, "input_name", options->color_profile.input_name[i]);
484                 indent--;
485                 WRITE_STRING("/>\n");
486                 }
487         indent--;
488         WRITE_STRING("</color_profiles>\n");
489 }
490
491
492 /*
493  *-----------------------------------------------------------------------------
494  * save configuration (public)
495  *-----------------------------------------------------------------------------
496  */
497
498 gboolean save_options_to(const gchar *utf8_path, ConfOptions *options)
499 {
500         SecureSaveInfo *ssi;
501         gchar *rc_pathl;
502         GString *outstr;
503         gint indent = 0;
504         GList *work;
505         
506         rc_pathl = path_from_utf8(utf8_path);
507         ssi = secure_open(rc_pathl);
508         g_free(rc_pathl);
509         if (!ssi)
510                 {
511                 log_printf(_("error saving config file: %s\n"), utf8_path);
512                 return FALSE;
513                 }
514
515         outstr = g_string_new("");
516         g_string_append_printf(outstr, "<!--\n");
517         g_string_append_printf(outstr, "######################################################################\n");
518         g_string_append_printf(outstr, "# %30s config file      version %-10s #\n", GQ_APPNAME, VERSION);
519         g_string_append_printf(outstr, "######################################################################\n");
520         WRITE_SEPARATOR();
521
522         WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n");
523         WRITE_STRING("#       but user comments and formatting will be lost.\n");
524         WRITE_SEPARATOR();
525         WRITE_STRING("-->\n");
526         WRITE_SEPARATOR();
527         WRITE_STRING("<global\n");
528         write_global_attributes(outstr, indent + 1);
529         WRITE_STRING(">\n");
530
531         indent++;
532
533         write_color_profile(outstr, indent);
534
535         WRITE_SEPARATOR();
536         filter_write_list(outstr, indent);
537
538         WRITE_SEPARATOR();
539         keyword_tree_write_config(outstr, indent);
540         indent--;
541         WRITE_STRING("</global>\n");
542
543         WRITE_SEPARATOR();
544         WRITE_SUBTITLE("Layout Options");
545
546         work = layout_window_list;
547         while (work)
548                 {
549                 LayoutWindow *lw = work->data;
550                 layout_write_config(lw, outstr, indent);
551                 work = work->next;
552
553                 }
554
555
556
557         secure_fputs(ssi, outstr->str);
558         g_string_free(outstr, TRUE);
559
560         if (secure_close(ssi))
561                 {
562                 log_printf(_("error saving config file: %s\nerror: %s\n"), utf8_path,
563                            secsave_strerror(secsave_errno));
564                 return FALSE;
565                 }
566
567         return TRUE;
568 }
569
570 /*
571  *-----------------------------------------------------------------------------
572  * loading attributes for elements (private)
573  *-----------------------------------------------------------------------------
574  */
575
576
577 static gboolean load_global_params(const gchar **attribute_names, const gchar **attribute_values)
578 {
579         while (*attribute_names)
580                 {
581                 const gchar *option = *attribute_names++;
582                 const gchar *value = *attribute_values++;
583
584
585                 /* general options */
586                 if (READ_BOOL(*options, show_icon_names)) continue;
587                 if (READ_BOOL(*options, show_copy_path)) continue;
588
589                 if (READ_BOOL(*options, tree_descend_subdirs)) continue;
590                 if (READ_BOOL(*options, lazy_image_sync)) continue;
591                 if (READ_BOOL(*options, update_on_time_change)) continue;
592
593                 if (READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100)) continue;
594
595                 if (READ_BOOL(*options, progressive_key_scrolling)) continue;
596
597                 if (READ_BOOL(*options, mousewheel_scrolls)) continue;
598
599                 if (READ_INT(*options, open_recent_list_maxsize)) continue;
600                 if (READ_INT(*options, dnd_icon_size)) continue;
601                 if (READ_BOOL(*options, place_dialogs_under_mouse)) continue;
602
603                 if (READ_BOOL(*options, save_window_positions)) continue;
604                 if (READ_BOOL(*options, tools_restore_state)) continue;
605
606                 /* startup options */
607                 
608                 if (READ_BOOL(*options, startup.restore_path)) continue;
609
610                 if (READ_BOOL(*options, startup.use_last_path)) continue;
611
612                 if (READ_CHAR(*options, startup.path)) continue;
613         
614
615                 /* properties dialog options */
616                 if (READ_CHAR(*options, properties.tabs_order)) continue;
617
618                 /* image options */
619                 if (READ_UINT_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE)) continue;
620                 if (READ_BOOL(*options, image.zoom_2pass)) continue;
621                 if (READ_BOOL(*options, image.zoom_to_fit_allow_expand)) continue;
622                 if (READ_BOOL(*options, image.fit_window_to_image)) continue;
623                 if (READ_BOOL(*options, image.limit_window_size)) continue;
624                 if (READ_INT(*options, image.max_window_size)) continue;
625                 if (READ_BOOL(*options, image.limit_autofit_size)) continue;
626                 if (READ_INT(*options, image.max_autofit_size)) continue;
627                 if (READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1)) continue;
628                 if (READ_INT(*options, image.tile_cache_max)) continue;
629                 if (READ_INT(*options, image.image_cache_max)) continue;
630                 if (READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue;
631                 if (READ_UINT_CLAMP(*options, image.dither_quality, GDK_RGB_DITHER_NONE, GDK_RGB_DITHER_MAX)) continue;
632                 if (READ_INT(*options, image.zoom_increment)) continue;
633                 if (READ_BOOL(*options, image.enable_read_ahead)) continue;
634                 if (READ_BOOL(*options, image.exif_rotate_enable)) continue;
635                 if (READ_BOOL(*options, image.use_custom_border_color)) continue;
636                 if (READ_COLOR(*options, image.border_color)) continue;
637                 if (READ_INT_CLAMP(*options, image.read_buffer_size, IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX)) continue;
638                 if (READ_INT_CLAMP(*options, image.idle_read_loop_count, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX)) continue;
639
640
641                 /* thumbnails options */
642                 if (READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512)) continue;
643                 if (READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512)) continue;
644
645                 if (READ_BOOL(*options, thumbnails.enable_caching)) continue;
646                 if (READ_BOOL(*options, thumbnails.cache_into_dirs)) continue;
647                 if (READ_BOOL(*options, thumbnails.fast)) continue;
648                 if (READ_BOOL(*options, thumbnails.use_xvpics)) continue;
649                 if (READ_BOOL(*options, thumbnails.spec_standard)) continue;
650                 if (READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue;
651                 if (READ_BOOL(*options, thumbnails.use_exif)) continue;
652
653                 /* file sorting options */
654                 if (READ_UINT(*options, file_sort.method)) continue;
655                 if (READ_BOOL(*options, file_sort.ascending)) continue;
656                 if (READ_BOOL(*options, file_sort.case_sensitive)) continue;
657
658                 /* file operations *options */
659                 if (READ_BOOL(*options, file_ops.enable_in_place_rename)) continue;
660                 if (READ_BOOL(*options, file_ops.confirm_delete)) continue;
661                 if (READ_BOOL(*options, file_ops.enable_delete_key)) continue;
662                 if (READ_BOOL(*options, file_ops.safe_delete_enable)) continue;
663                 if (READ_CHAR(*options, file_ops.safe_delete_path)) continue;
664                 if (READ_INT(*options, file_ops.safe_delete_folder_maxsize)) continue;
665
666                 /* fullscreen options */
667                 if (READ_INT(*options, fullscreen.screen)) continue;
668                 if (READ_BOOL(*options, fullscreen.clean_flip)) continue;
669                 if (READ_BOOL(*options, fullscreen.disable_saver)) continue;
670                 if (READ_BOOL(*options, fullscreen.above)) continue;
671
672                 /* image overlay */
673                 if (READ_CHAR(*options, image_overlay.template_string)) continue;
674                 if (READ_INT(*options, image_overlay.x)) continue;
675                 if (READ_INT(*options, image_overlay.y)) continue;
676
677
678                 /* slideshow options */
679                 if (READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION)) continue;
680                 if (READ_BOOL(*options, slideshow.random)) continue;
681                 if (READ_BOOL(*options, slideshow.repeat)) continue;
682
683                 /* collection options */
684
685                 if (READ_BOOL(*options, collections.rectangular_selection)) continue;
686
687                 /* filtering options */
688
689                 if (READ_BOOL(*options, file_filter.show_hidden_files)) continue;
690                 if (READ_BOOL(*options, file_filter.show_dot_directory)) continue;
691                 if (READ_BOOL(*options, file_filter.disable)) continue;
692                 if (READ_CHAR(*options, sidecar.ext)) continue;
693
694                 /* Color Profiles */
695
696                 /* Shell command */
697                 if (READ_CHAR(*options, shell.path)) continue;
698                 if (READ_CHAR(*options, shell.options)) continue;
699
700                 /* Helpers */
701                 if (READ_CHAR(*options, helpers.html_browser.command_name)) continue;
702                 if (READ_CHAR(*options, helpers.html_browser.command_line)) continue;
703                 /* Exif */
704 /*
705                 if (0 == g_ascii_strncasecmp(option, "exif.display.", 13))
706                         {
707                         for (i = 0; ExifUIList[i].key; i++)
708                                 if (0 == g_ascii_strcasecmp(option + 13, ExifUIList[i].key))
709                                         ExifUIList[i].current = strtol(value, NULL, 10);
710                         continue;
711                         }
712 */
713                 /* metadata */          
714                 if (READ_BOOL(*options, metadata.enable_metadata_dirs)) continue;
715                 if (READ_BOOL(*options, metadata.save_in_image_file)) continue;
716                 if (READ_BOOL(*options, metadata.save_legacy_IPTC)) continue;
717                 if (READ_BOOL(*options, metadata.warn_on_write_problems)) continue;
718                 if (READ_BOOL(*options, metadata.save_legacy_format)) continue;
719                 if (READ_BOOL(*options, metadata.sync_grouped_files)) continue;
720                 if (READ_BOOL(*options, metadata.confirm_write)) continue;
721                 if (READ_BOOL(*options, metadata.confirm_after_timeout)) continue;
722                 if (READ_INT(*options, metadata.confirm_timeout)) continue;
723                 if (READ_BOOL(*options, metadata.confirm_on_image_change)) continue;
724                 if (READ_BOOL(*options, metadata.confirm_on_dir_change)) continue;
725
726                 DEBUG_1("unknown attribute %s = %s", option, value);
727                 }
728
729         return TRUE;
730 }
731
732 static void options_load_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
733 {
734         while (*attribute_names)
735                 {
736                 const gchar *option = *attribute_names++;
737                 const gchar *value = *attribute_values++;
738
739
740                 if (READ_BOOL(options->color_profile, enabled)) continue;
741                 if (READ_BOOL(options->color_profile, use_image)) continue;
742                 if (READ_INT(options->color_profile, input_type)) continue;
743                 if (READ_INT(options->color_profile, screen_type)) continue;
744                 if (READ_CHAR(options->color_profile, screen_file)) continue;
745
746                 DEBUG_1("unknown attribute %s = %s", option, value);
747                 }
748
749 }
750
751 static void options_load_profile(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
752 {
753         gint i = GPOINTER_TO_INT(data);
754         if (i < 0 || i >= COLOR_PROFILE_INPUTS) return;
755         while (*attribute_names)
756                 {
757                 const gchar *option = *attribute_names++;
758                 const gchar *value = *attribute_values++;
759
760                 if (READ_CHAR_FULL("input_file", options->color_profile.input_file[i])) continue;
761                 if (READ_CHAR_FULL("input_name", options->color_profile.input_name[i])) continue;
762                 
763
764                 DEBUG_1("unknown attribute %s = %s", option, value);
765                 }
766         i++;
767         options_parse_func_set_data(parser_data, GINT_TO_POINTER(i));
768
769 }
770
771
772
773 /*
774  *-----------------------------------------------------------------------------
775  * xml file structure (private)
776  *-----------------------------------------------------------------------------
777  */
778 struct _GQParserData
779 {
780         GList *parse_func_stack;
781         gboolean startup; /* reading config for the first time - add commandline and call init_after_global_options() */
782         gboolean global_found;
783 };
784
785
786 void options_parse_leaf(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
787 {
788         DEBUG_1("unexpected: %s", element_name);
789         options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
790 }
791
792 static void options_parse_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
793 {
794         if (g_ascii_strcasecmp(element_name, "profile") == 0)
795                 {
796                 options_load_profile(parser_data, context, element_name, attribute_names, attribute_values, data, error);
797                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
798                 }
799         else
800                 {
801                 DEBUG_1("unexpected profile: %s", element_name);
802                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
803                 }
804 }
805
806 static void options_parse_filter(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
807 {
808         if (g_ascii_strcasecmp(element_name, "file_type") == 0)
809                 {
810                 filter_load_file_type(attribute_names, attribute_values);
811                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
812                 }
813         else
814                 {
815                 DEBUG_1("unexpected filter: %s", element_name);
816                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
817                 }
818 }
819
820 static void options_parse_filter_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error)
821 {
822         if (!parser_data->startup) filter_rebuild(); 
823         /* else this is called in init_after_global_options */
824 }
825
826 static void options_parse_keyword_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error)
827 {
828         GtkTreeIter *iter_ptr = data;
829         gtk_tree_iter_free(iter_ptr);
830 }
831
832
833 static void options_parse_keyword(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
834 {
835         GtkTreeIter *iter_ptr = data;
836         if (g_ascii_strcasecmp(element_name, "keyword") == 0)
837                 {
838                 GtkTreeIter *child = keyword_add_from_config(keyword_tree, iter_ptr, attribute_names, attribute_values);
839                 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, child);
840                 }
841         else
842                 {
843                 DEBUG_1("unexpected in <keyword>: <%s>", element_name);
844                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
845                 }
846 }
847
848
849
850 static void options_parse_keyword_tree(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
851 {
852         if (g_ascii_strcasecmp(element_name, "keyword") == 0)
853                 {
854                 GtkTreeIter *iter_ptr = keyword_add_from_config(keyword_tree, NULL, attribute_names, attribute_values);
855                 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, iter_ptr);
856                 }
857         else
858                 {
859                 DEBUG_1("unexpected in <keyword_tree>: <%s>", element_name);
860                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
861                 }
862 }
863
864
865 static void options_parse_global(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
866 {
867         if (g_ascii_strcasecmp(element_name, "color_profiles") == 0)
868                 {
869                 options_load_color_profiles(parser_data, context, element_name, attribute_names, attribute_values, data, error);
870                 options_parse_func_push(parser_data, options_parse_color_profiles, NULL, GINT_TO_POINTER(0));
871                 }
872         else if (g_ascii_strcasecmp(element_name, "filter") == 0)
873                 {
874                 options_parse_func_push(parser_data, options_parse_filter, options_parse_filter_end, NULL);
875                 }
876         else if (g_ascii_strcasecmp(element_name, "keyword_tree") == 0)
877                 {
878                 if (!keyword_tree) keyword_tree_new();
879                 options_parse_func_push(parser_data, options_parse_keyword_tree, NULL, NULL);
880                 }
881         else
882                 {
883                 DEBUG_1("unexpected global: %s", element_name);
884                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
885                 }
886 }
887
888 static void options_parse_pane_exif(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
889 {
890         GtkWidget *pane = data;
891         if (g_ascii_strcasecmp(element_name, "entry") == 0)
892                 {
893                 bar_pane_exif_entry_add_from_config(pane, attribute_names, attribute_values);
894                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
895                 }
896         else
897                 {
898                 DEBUG_1("unexpected in <pane_exif>: <%s>", element_name);
899                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
900                 }
901 }
902
903 static void options_parse_bar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
904 {
905         GtkWidget *bar = data;
906         if (g_ascii_strcasecmp(element_name, "pane_comment") == 0)
907                 {
908                 GtkWidget *pane = bar_pane_comment_new_from_config(attribute_names, attribute_values);
909                 bar_add(bar, pane);
910                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
911                 }
912         else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0)
913                 {
914                 GtkWidget *pane = bar_pane_exif_new_from_config(attribute_names, attribute_values);
915                 bar_add(bar, pane);
916                 options_parse_func_push(parser_data, options_parse_pane_exif, NULL, pane);
917                 }
918         else if (g_ascii_strcasecmp(element_name, "pane_histogram") == 0)
919                 {
920                 GtkWidget *pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values);
921                 bar_add(bar, pane);
922                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
923                 }
924         else if (g_ascii_strcasecmp(element_name, "pane_keywords") == 0)
925                 {
926                 GtkWidget *pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values);
927                 bar_add(bar, pane);
928                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
929                 }
930         else
931                 {
932                 DEBUG_1("unexpected in <bar>: <%s>", element_name);
933                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
934                 }
935 }
936
937 static void options_parse_toolbar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
938 {
939         LayoutWindow *lw = data;
940         if (g_ascii_strcasecmp(element_name, "toolitem") == 0)
941                 {
942                 layout_toolbar_add_from_config(lw, attribute_names, attribute_values);
943                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
944                 }
945         else
946                 {
947                 DEBUG_1("unexpected in <toolbar>: <%s>", element_name);
948                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
949                 }
950 }
951
952 static void options_parse_layout(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
953 {
954         LayoutWindow *lw = data;
955         if (g_ascii_strcasecmp(element_name, "bar") == 0)
956                 {
957                 GtkWidget *bar = bar_new_from_config(lw, attribute_names, attribute_values);
958                 layout_bar_set(lw, bar);
959                 options_parse_func_push(parser_data, options_parse_bar, NULL, lw->bar);
960                 }
961         else if (g_ascii_strcasecmp(element_name, "bar_sort") == 0)
962                 {
963                 GtkWidget *bar = bar_sort_new_from_config(lw, attribute_names, attribute_values);
964                 layout_bar_sort_set(lw, bar);
965                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
966                 }
967         else if (g_ascii_strcasecmp(element_name, "toolbar") == 0)
968                 {
969                 layout_toolbar_clear(lw);
970                 options_parse_func_push(parser_data, options_parse_toolbar, NULL, lw);
971                 }
972         else
973                 {
974                 DEBUG_1("unexpected in <layout>: <%s>", element_name);
975                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
976                 }
977 }
978
979 static void options_parse_layout_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error)
980 {
981         LayoutWindow *lw = data;
982         layout_util_sync(lw);
983 }
984
985 static void options_parse_toplevel(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
986 {
987         if (g_ascii_strcasecmp(element_name, "global") == 0)
988                 {
989                 load_global_params(attribute_names, attribute_values);
990                 options_parse_func_push(parser_data, options_parse_global, NULL, NULL);
991                 return;
992                 }
993         
994         if (parser_data->startup && !parser_data->global_found)
995                 {
996                 DEBUG_1(" global end");
997                 parser_data->global_found = TRUE;
998                 init_after_global_options();
999                 }
1000         
1001         if (g_ascii_strcasecmp(element_name, "layout") == 0)
1002                 {
1003                 LayoutWindow *lw;
1004                 lw = layout_new_from_config(attribute_names, attribute_values, parser_data->startup);
1005                 options_parse_func_push(parser_data, options_parse_layout, options_parse_layout_end, lw);
1006                 }
1007         else
1008                 {
1009                 DEBUG_1("unexpected in <toplevel>: <%s>", element_name);
1010                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1011                 }
1012 }
1013
1014
1015
1016
1017
1018 /*
1019  *-----------------------------------------------------------------------------
1020  * parser
1021  *-----------------------------------------------------------------------------
1022  */
1023
1024
1025 struct _GQParserFuncData
1026 {
1027         GQParserStartFunc start_func;
1028         GQParserEndFunc end_func;
1029 //      GQParserTextFunc text_func;
1030         gpointer data;
1031 };
1032
1033 void options_parse_func_push(GQParserData *parser_data, GQParserStartFunc start_func, GQParserEndFunc end_func, gpointer data)
1034 {
1035         GQParserFuncData *func_data = g_new0(GQParserFuncData, 1);
1036         func_data->start_func = start_func;
1037         func_data->end_func = end_func;
1038         func_data->data = data;
1039         
1040         parser_data->parse_func_stack = g_list_prepend(parser_data->parse_func_stack, func_data);
1041 }
1042
1043 void options_parse_func_pop(GQParserData *parser_data)
1044 {
1045         g_free(parser_data->parse_func_stack->data);
1046         parser_data->parse_func_stack = g_list_delete_link(parser_data->parse_func_stack, parser_data->parse_func_stack);
1047 }
1048
1049 void options_parse_func_set_data(GQParserData *parser_data, gpointer data)
1050 {
1051         GQParserFuncData *func = parser_data->parse_func_stack->data;
1052         func->data = data;
1053 }
1054
1055
1056 static void start_element(GMarkupParseContext *context,
1057                           const gchar *element_name,
1058                           const gchar **attribute_names,
1059                           const gchar **attribute_values,
1060                           gpointer user_data,
1061                           GError **error) 
1062 {
1063         GQParserData *parser_data = user_data;
1064         GQParserFuncData *func = parser_data->parse_func_stack->data; 
1065         DEBUG_1("start %s", element_name);
1066         
1067         if (func->start_func)
1068                 func->start_func(parser_data, context, element_name, attribute_names, attribute_values, func->data, error);
1069 }
1070
1071 static void end_element(GMarkupParseContext *context,
1072                           const gchar *element_name,
1073                           gpointer user_data,
1074                           GError **error) 
1075 {
1076         GQParserData *parser_data = user_data;
1077         GQParserFuncData *func = parser_data->parse_func_stack->data; 
1078         DEBUG_1("end %s", element_name);
1079
1080         if (func->end_func)
1081                 func->end_func(parser_data, context, element_name, func->data, error);
1082
1083         options_parse_func_pop(parser_data);
1084 }
1085
1086 static GMarkupParser parser = {
1087         start_element,
1088         end_element,
1089         NULL,
1090         NULL,
1091         NULL
1092 };
1093
1094 /*
1095  *-----------------------------------------------------------------------------
1096  * load configuration (public)
1097  *-----------------------------------------------------------------------------
1098  */
1099
1100 gboolean load_options_from(const gchar *utf8_path, ConfOptions *options, gboolean startup)
1101 {
1102         gsize size;
1103         gchar *buf;
1104         GMarkupParseContext *context;
1105         gboolean ret = TRUE;
1106         GQParserData *parser_data;
1107
1108         if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE) 
1109                 {
1110                 return FALSE;
1111                 }
1112         
1113         parser_data = g_new0(GQParserData, 1);
1114         
1115         parser_data->startup = startup;
1116         options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL);
1117         
1118         context = g_markup_parse_context_new(&parser, 0, parser_data, NULL);
1119
1120         if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE)
1121                 {
1122                 ret = FALSE;
1123                 DEBUG_1("Parse failed");
1124                 }
1125                 
1126         g_free(parser_data);
1127
1128         g_free(buf);
1129         g_markup_parse_context_free(context);
1130         return ret;
1131 }
1132         
1133
1134
1135 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */