Revert "FIXME: this can be rather slow and blocks until the size is known"
[geeqie.git] / src / rcfile.cc
1 /*
2  * Copyright (C) 2006 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include "main.h"
23 #include "rcfile.h"
24
25 #include "bar.h"
26 #include "bar-comment.h"
27 #include "bar-exif.h"
28 #include "bar-histogram.h"
29 #include "bar-keywords.h"
30 #include "bar-rating.h"
31 #include "bar-sort.h"
32 #include "editors.h"
33 #include "filefilter.h"
34 #include "pixbuf-renderer.h"
35 #include "secure-save.h"
36 #include "slideshow.h"
37 #include "ui-fileops.h"
38 #include "layout-util.h"
39 #include "bar.h"
40 #include "metadata.h"
41 #include "bar-gps.h"
42 #include "dupe.h"
43 #include "ui-utildlg.h"
44
45 /*
46  *-----------------------------------------------------------------------------
47  * line write/parse routines (public)
48  *-----------------------------------------------------------------------------
49  */
50
51 void write_indent(GString *str, gint indent)
52 {
53         g_string_append_printf(str, "\n%*s", indent * 4, "");
54 }
55
56 void write_char_option(GString *str, gint UNUSED(indent), const gchar *label, const gchar *text)
57 {
58         /* this is needed for overlay string, because g_markup_escape_text does not handle \n and such,
59            ideas for improvement are welcome
60         */
61         static const unsigned char no_quote_utf[] = {
62                 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,
63                 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
64                 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3,
65                 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
66                 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb,
67                 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
68                 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3,
69                 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
70                 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
71                 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
72                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
73                 '"',  0 /* '"' is handled in g_markup_escape_text */
74         };
75
76         gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf);
77         gchar *escval2 = g_markup_escape_text(escval1, -1);
78         g_string_append_printf(str, "%s = \"%s\" ", label, escval2);
79         g_free(escval2);
80         g_free(escval1);
81 }
82
83 /* dummy read for old/obsolete/futur/deprecated/unused options */
84 gboolean read_dummy_option(const gchar *option, const gchar *label, const gchar *message)
85 {
86         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
87         log_printf(_("Option %s ignored: %s\n"), option, message);
88         return TRUE;
89 }
90
91
92 gboolean read_char_option(const gchar *option, const gchar *label, const gchar *value, gchar **text)
93 {
94         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
95         if (!text) return FALSE;
96
97         g_free(*text);
98         *text = g_strcompress(value);
99         return TRUE;
100 }
101
102 /* Since gdk_color_to_string() is only available since gtk 2.12
103  * here is an equivalent stub function. */
104 static gchar *color_to_string(GdkColor *color)
105 {
106         return g_strdup_printf("#%04X%04X%04X", color->red, color->green, color->blue);
107 }
108
109 void write_color_option(GString *str, gint indent, const gchar *label, GdkColor *color)
110 {
111         if (color)
112                 {
113                 gchar *colorstring = color_to_string(color);
114
115                 write_char_option(str, indent, label, colorstring);
116                 g_free(colorstring);
117                 }
118         else
119                 write_char_option(str, indent, label, "");
120 }
121
122 gboolean read_color_option(const gchar *option, const gchar *label, const gchar *value, GdkColor *color)
123 {
124         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
125         if (!color) return FALSE;
126
127         if (!*value) return FALSE;
128         gdk_color_parse(value, color);
129         return TRUE;
130 }
131
132 void write_int_option(GString *str, gint UNUSED(indent), const gchar *label, gint n)
133 {
134         g_string_append_printf(str, "%s = \"%d\" ", label, n);
135 }
136
137 gboolean read_int_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
138 {
139         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
140         if (!n) return FALSE;
141
142         if (g_ascii_isdigit(value[0]) || (value[0] == '-' && g_ascii_isdigit(value[1])))
143                 {
144                 *n = strtol(value, NULL, 10);
145                 }
146         else
147                 {
148                 if (g_ascii_strcasecmp(value, "true") == 0)
149                         *n = 1;
150                 else
151                         *n = 0;
152                 }
153
154         return TRUE;
155 }
156
157 //void write_ushort_option(GString *str, gint UNUSED(indent), const gchar *label, guint16 n)
158 //{
159         //g_string_append_printf(str, "%s = \"%uh\" ", label, n);
160 //}
161
162 gboolean read_ushort_option(const gchar *option, const gchar *label, const gchar *value, guint16 *n)
163 {
164         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
165         if (!n) return FALSE;
166
167         if (g_ascii_isdigit(value[0]))
168                 {
169                 *n = strtoul(value, NULL, 10);
170                 }
171         else
172                 {
173                 if (g_ascii_strcasecmp(value, "true") == 0)
174                         *n = 1;
175                 else
176                         *n = 0;
177                 }
178
179         return TRUE;
180 }
181
182 void write_uint_option(GString *str, gint UNUSED(indent), const gchar *label, guint n)
183 {
184         g_string_append_printf(str, "%s = \"%u\" ", label, n);
185 }
186
187 gboolean read_uint_option(const gchar *option, const gchar *label, const gchar *value, guint *n)
188 {
189         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
190         if (!n) return FALSE;
191
192         if (g_ascii_isdigit(value[0]))
193                 {
194                 *n = strtoul(value, NULL, 10);
195                 }
196         else
197                 {
198                 if (g_ascii_strcasecmp(value, "true") == 0)
199                         *n = 1;
200                 else
201                         *n = 0;
202                 }
203
204         return TRUE;
205 }
206
207 gboolean read_uint_option_clamp(const gchar *option, const gchar *label, const gchar *value, guint *n, guint min, guint max)
208 {
209         gboolean ret;
210
211         ret = read_uint_option(option, label, value, n);
212         if (ret) *n = CLAMP(*n, min, max);
213
214         return ret;
215 }
216
217
218 gboolean read_int_option_clamp(const gchar *option, const gchar *label, const gchar *value, gint *n, gint min, gint max)
219 {
220         gboolean ret;
221
222         ret = read_int_option(option, label, value, n);
223         if (ret) *n = CLAMP(*n, min, max);
224
225         return ret;
226 }
227
228 void write_int_unit_option(GString *str, gint UNUSED(indent), const gchar *label, gint n, gint subunits)
229 {
230         gint l, r;
231
232         if (subunits > 0)
233                 {
234                 l = n / subunits;
235                 r = n % subunits;
236                 }
237         else
238                 {
239                 l = n;
240                 r = 0;
241                 }
242
243         g_string_append_printf(str, "%s = \"%d.%d\" ", label, l, r);
244 }
245
246 gboolean read_int_unit_option(const gchar *option, const gchar *label, const gchar *value, gint *n, gint subunits)
247 {
248         gint l, r;
249         gchar *ptr, *buf;
250
251         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
252         if (!n) return FALSE;
253
254         buf = g_strdup(value);
255         ptr = buf;
256         while (*ptr != '\0' && *ptr != '.') ptr++;
257         if (*ptr == '.')
258                 {
259                 *ptr = '\0';
260                 l = strtol(value, NULL, 10);
261                 *ptr = '.';
262                 ptr++;
263                 r = strtol(ptr, NULL, 10);
264                 }
265         else
266                 {
267                 l = strtol(value, NULL, 10);
268                 r = 0;
269                 }
270
271         *n = l * subunits + r;
272         g_free(buf);
273
274         return TRUE;
275 }
276
277 void write_bool_option(GString *str, gint UNUSED(indent), const gchar *label, gint n)
278 {
279         g_string_append_printf(str, "%s = \"%s\" ", label, n ? "true" : "false");
280 }
281
282 gboolean read_bool_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
283 {
284         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
285         if (!n) return FALSE;
286
287         if (g_ascii_strcasecmp(value, "true") == 0 || atoi(value) != 0)
288                 *n = TRUE;
289         else
290                 *n = FALSE;
291
292         return TRUE;
293 }
294
295 /*
296  *-----------------------------------------------------------------------------
297  * write functions for elements (private)
298  *-----------------------------------------------------------------------------
299  */
300
301 static void write_global_attributes(GString *outstr, gint indent)
302 {
303         /* General Options */
304         WRITE_NL(); WRITE_BOOL(*options, show_icon_names);
305         WRITE_NL(); WRITE_BOOL(*options, show_star_rating);
306         WRITE_NL(); WRITE_BOOL(*options, show_predefined_keyword_tree);
307         WRITE_SEPARATOR();
308
309         WRITE_NL(); WRITE_BOOL(*options, tree_descend_subdirs);
310         WRITE_NL(); WRITE_BOOL(*options, view_dir_list_single_click_enter);
311         WRITE_NL(); WRITE_BOOL(*options, circular_selection_lists);
312         WRITE_NL(); WRITE_BOOL(*options, lazy_image_sync);
313         WRITE_NL(); WRITE_BOOL(*options, update_on_time_change);
314         WRITE_SEPARATOR();
315
316         WRITE_NL(); WRITE_BOOL(*options, progressive_key_scrolling);
317         WRITE_NL(); WRITE_UINT(*options, keyboard_scroll_step);
318
319         WRITE_NL(); WRITE_UINT(*options, duplicates_similarity_threshold);
320         WRITE_NL(); WRITE_UINT(*options, duplicates_match);
321         WRITE_NL(); WRITE_UINT(*options, duplicates_select_type);
322         WRITE_NL(); WRITE_BOOL(*options, duplicates_thumbnails);
323         WRITE_NL(); WRITE_BOOL(*options, rot_invariant_sim);
324         WRITE_NL(); WRITE_BOOL(*options, sort_totals);
325         WRITE_SEPARATOR();
326
327         WRITE_NL(); WRITE_BOOL(*options, mousewheel_scrolls);
328         WRITE_NL(); WRITE_BOOL(*options, image_lm_click_nav);
329         WRITE_NL(); WRITE_BOOL(*options, image_l_click_archive);
330         WRITE_NL(); WRITE_BOOL(*options, image_l_click_video);
331         WRITE_NL(); WRITE_CHAR(*options, image_l_click_video_editor);
332         WRITE_NL(); WRITE_INT(*options, open_recent_list_maxsize);
333         WRITE_NL(); WRITE_INT(*options, recent_folder_image_list_maxsize);
334         WRITE_NL(); WRITE_INT(*options, dnd_icon_size);
335         WRITE_NL(); WRITE_UINT(*options, dnd_default_action);
336         WRITE_NL(); WRITE_BOOL(*options, place_dialogs_under_mouse);
337         WRITE_NL(); WRITE_INT(*options, clipboard_selection);
338
339         WRITE_NL(); WRITE_BOOL(*options, save_window_positions);
340         WRITE_NL(); WRITE_BOOL(*options, use_saved_window_positions_for_new_windows);
341         WRITE_NL(); WRITE_BOOL(*options, save_window_workspace);
342         WRITE_NL(); WRITE_BOOL(*options, tools_restore_state);
343         WRITE_NL(); WRITE_BOOL(*options, save_dialog_window_positions);
344         WRITE_NL(); WRITE_BOOL(*options, show_window_ids);
345         WRITE_NL(); WRITE_BOOL(*options, expand_menu_toolbar);
346
347         WRITE_NL(); WRITE_UINT(*options, log_window_lines);
348         WRITE_NL(); WRITE_BOOL(*options, log_window.timer_data);
349         WRITE_NL(); WRITE_CHAR(*options, log_window.action);
350
351         WRITE_NL(); WRITE_BOOL(*options, appimage_notifications);
352         WRITE_NL(); WRITE_BOOL(*options, marks_save);
353         WRITE_NL(); WRITE_CHAR(*options, help_search_engine);
354
355         WRITE_NL(); WRITE_BOOL(*options, external_preview.enable);
356         WRITE_NL(); WRITE_CHAR(*options, external_preview.select);
357         WRITE_NL(); WRITE_CHAR(*options, external_preview.extract);
358
359         WRITE_NL(); WRITE_BOOL(*options, with_rename);
360         WRITE_NL(); WRITE_BOOL(*options, collections_on_top);
361         WRITE_NL(); WRITE_BOOL(*options, hide_window_in_fullscreen);
362
363         /* File operations Options */
364         WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_in_place_rename);
365         WRITE_NL(); WRITE_BOOL(*options, file_ops.confirm_delete);
366         WRITE_NL(); WRITE_BOOL(*options, file_ops.confirm_move_to_trash);
367         WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_delete_key);
368         WRITE_NL(); WRITE_BOOL(*options, file_ops.use_system_trash);
369         WRITE_NL(); WRITE_BOOL(*options, file_ops.safe_delete_enable);
370         WRITE_NL(); WRITE_CHAR(*options, file_ops.safe_delete_path);
371         WRITE_NL(); WRITE_INT(*options, file_ops.safe_delete_folder_maxsize);
372         WRITE_NL(); WRITE_BOOL(*options, file_ops.no_trash);
373
374         /* Properties dialog Options */
375         WRITE_NL(); WRITE_CHAR(*options, properties.tabs_order);
376
377         /* Image Options */
378         WRITE_NL(); WRITE_UINT(*options, image.zoom_mode);
379
380         WRITE_SEPARATOR();
381         WRITE_NL(); WRITE_BOOL(*options, image.zoom_2pass);
382         WRITE_NL(); WRITE_BOOL(*options, image.zoom_to_fit_allow_expand);
383         WRITE_NL(); WRITE_UINT(*options, image.zoom_quality);
384         WRITE_NL(); WRITE_INT(*options, image.zoom_increment);
385         WRITE_NL(); WRITE_UINT(*options, image.zoom_style);
386         WRITE_NL(); WRITE_BOOL(*options, image.fit_window_to_image);
387         WRITE_NL(); WRITE_BOOL(*options, image.limit_window_size);
388         WRITE_NL(); WRITE_INT(*options, image.max_window_size);
389         WRITE_NL(); WRITE_BOOL(*options, image.limit_autofit_size);
390         WRITE_NL(); WRITE_INT(*options, image.max_autofit_size);
391         WRITE_NL(); WRITE_INT(*options, image.max_enlargement_size);
392         WRITE_NL(); WRITE_UINT(*options, image.scroll_reset_method);
393         WRITE_NL(); WRITE_INT(*options, image.tile_cache_max);
394         WRITE_NL(); WRITE_INT(*options, image.image_cache_max);
395         WRITE_NL(); WRITE_BOOL(*options, image.enable_read_ahead);
396         WRITE_NL(); WRITE_BOOL(*options, image.exif_rotate_enable);
397         WRITE_NL(); WRITE_BOOL(*options, image.use_custom_border_color);
398         WRITE_NL(); WRITE_BOOL(*options, image.use_custom_border_color_in_fullscreen);
399         WRITE_NL(); WRITE_COLOR(*options, image.border_color);
400         WRITE_NL(); WRITE_COLOR(*options, image.alpha_color_1);
401         WRITE_NL(); WRITE_COLOR(*options, image.alpha_color_2);
402         //~ WRITE_NL(); WRITE_BOOL(*options, image.use_clutter_renderer);
403         WRITE_NL(); WRITE_INT(*options, image.tile_size);
404
405         /* Thumbnails Options */
406         WRITE_NL(); WRITE_INT(*options, thumbnails.max_width);
407         WRITE_NL(); WRITE_INT(*options, thumbnails.max_height);
408         WRITE_NL(); WRITE_BOOL(*options, thumbnails.enable_caching);
409         WRITE_NL(); WRITE_BOOL(*options, thumbnails.cache_into_dirs);
410         WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_xvpics);
411         WRITE_NL(); WRITE_BOOL(*options, thumbnails.spec_standard);
412         WRITE_NL(); WRITE_UINT(*options, thumbnails.quality);
413         WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_exif);
414         WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_color_management);
415         WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_ft_metadata);
416         WRITE_NL(); WRITE_INT(*options, thumbnails.collection_preview);
417 //      WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_ft_metadata_small);
418
419         /* File sorting Options */
420         WRITE_NL(); WRITE_INT(*options, file_sort.method);
421         WRITE_NL(); WRITE_BOOL(*options, file_sort.ascending);
422         WRITE_NL(); WRITE_BOOL(*options, file_sort.case_sensitive);
423         WRITE_NL(); WRITE_BOOL(*options, file_sort.natural);
424
425         /* Fullscreen Options */
426         WRITE_NL(); WRITE_INT(*options, fullscreen.screen);
427         WRITE_NL(); WRITE_BOOL(*options, fullscreen.clean_flip);
428         WRITE_NL(); WRITE_BOOL(*options, fullscreen.disable_saver);
429         WRITE_NL(); WRITE_BOOL(*options, fullscreen.above);
430
431         WRITE_SEPARATOR();
432
433         /* Image Overlay Options */
434         WRITE_NL(); WRITE_CHAR(*options, image_overlay.template_string);
435
436         WRITE_NL(); WRITE_INT(*options, image_overlay.x);
437         WRITE_NL(); WRITE_INT(*options, image_overlay.y);
438         WRITE_NL(); WRITE_INT(*options, image_overlay.text_red);
439         WRITE_NL(); WRITE_INT(*options, image_overlay.text_green);
440         WRITE_NL(); WRITE_INT(*options, image_overlay.text_blue);
441         WRITE_NL(); WRITE_INT(*options, image_overlay.text_alpha);
442         WRITE_NL(); WRITE_INT(*options, image_overlay.background_red);
443         WRITE_NL(); WRITE_INT(*options, image_overlay.background_green);
444         WRITE_NL(); WRITE_INT(*options, image_overlay.background_blue);
445         WRITE_NL(); WRITE_INT(*options, image_overlay.background_alpha);
446         WRITE_NL(); WRITE_CHAR(*options, image_overlay.font);
447
448         /* Slideshow Options */
449         WRITE_NL(); WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION);
450         WRITE_NL(); WRITE_BOOL(*options, slideshow.random);
451         WRITE_NL(); WRITE_BOOL(*options, slideshow.repeat);
452
453         /* Collection Options */
454         WRITE_NL(); WRITE_BOOL(*options, collections.rectangular_selection);
455
456         /* Filtering Options */
457         WRITE_NL(); WRITE_BOOL(*options, file_filter.show_hidden_files);
458         WRITE_NL(); WRITE_BOOL(*options, file_filter.show_parent_directory);
459         WRITE_NL(); WRITE_BOOL(*options, file_filter.show_dot_directory);
460         WRITE_NL(); WRITE_BOOL(*options, file_filter.disable_file_extension_checks);
461         WRITE_NL(); WRITE_BOOL(*options, file_filter.disable);
462         WRITE_SEPARATOR();
463
464         /* Sidecars Options */
465         WRITE_NL(); WRITE_CHAR(*options, sidecar.ext);
466
467         /* Shell command */
468         WRITE_NL(); WRITE_CHAR(*options, shell.path);
469         WRITE_NL(); WRITE_CHAR(*options, shell.options);
470
471         /* Helpers */
472         WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_name);
473         WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_line);
474
475         /* Metadata Options */
476         WRITE_NL(); WRITE_BOOL(*options, metadata.enable_metadata_dirs);
477         WRITE_NL(); WRITE_BOOL(*options, metadata.save_in_image_file);
478         WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_IPTC);
479         WRITE_NL(); WRITE_BOOL(*options, metadata.warn_on_write_problems);
480         WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_format);
481         WRITE_NL(); WRITE_BOOL(*options, metadata.sync_grouped_files);
482         WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_write);
483         WRITE_NL(); WRITE_BOOL(*options, metadata.sidecar_extended_name);
484         WRITE_NL(); WRITE_INT(*options, metadata.confirm_timeout);
485         WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_after_timeout);
486         WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_image_change);
487         WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_dir_change);
488         WRITE_NL(); WRITE_BOOL(*options, metadata.keywords_case_sensitive);
489         WRITE_NL(); WRITE_BOOL(*options, metadata.write_orientation);
490         WRITE_NL(); WRITE_BOOL(*options, metadata.check_spelling);
491
492         WRITE_NL(); WRITE_INT(*options, stereo.mode);
493         WRITE_NL(); WRITE_INT(*options, stereo.fsmode);
494         WRITE_NL(); WRITE_BOOL(*options, stereo.enable_fsmode);
495         WRITE_NL(); WRITE_INT(*options, stereo.fixed_w);
496         WRITE_NL(); WRITE_INT(*options, stereo.fixed_h);
497         WRITE_NL(); WRITE_INT(*options, stereo.fixed_x1);
498         WRITE_NL(); WRITE_INT(*options, stereo.fixed_y1);
499         WRITE_NL(); WRITE_INT(*options, stereo.fixed_x2);
500         WRITE_NL(); WRITE_INT(*options, stereo.fixed_y2);
501
502         WRITE_NL(); WRITE_BOOL(*options, read_metadata_in_idle);
503
504         WRITE_NL(); WRITE_UINT(*options, star_rating.star);
505         WRITE_NL(); WRITE_UINT(*options, star_rating.rejected);
506
507         /* copy move rename */
508         WRITE_NL(); WRITE_INT(*options, cp_mv_rn.auto_start);
509         WRITE_NL(); WRITE_INT(*options, cp_mv_rn.auto_padding);
510         WRITE_NL(); WRITE_CHAR(*options, cp_mv_rn.auto_end);
511         WRITE_NL(); WRITE_INT(*options, cp_mv_rn.formatted_start);
512
513         WRITE_SEPARATOR();
514
515         /* Print Text */
516         WRITE_NL(); WRITE_CHAR(*options, printer.template_string);
517         WRITE_NL(); WRITE_CHAR(*options, printer.image_font);
518         WRITE_NL(); WRITE_CHAR(*options, printer.page_font);
519         WRITE_NL(); WRITE_CHAR(*options, printer.page_text);
520         WRITE_NL(); WRITE_INT(*options, printer.image_text_position);
521         WRITE_NL(); WRITE_INT(*options, printer.page_text_position);
522         WRITE_NL(); WRITE_BOOL(*options, printer.show_image_text);
523         WRITE_NL(); WRITE_BOOL(*options, printer.show_page_text);
524         WRITE_SEPARATOR();
525
526         /* Threads */
527         WRITE_NL(); WRITE_INT(*options, threads.duplicates);
528         WRITE_SEPARATOR();
529
530         /* user-definable mouse buttons */
531         WRITE_NL(); WRITE_CHAR(*options, mouse_button_8);
532         WRITE_NL(); WRITE_CHAR(*options, mouse_button_9);
533         WRITE_SEPARATOR();
534
535         /* GPU - see main.cc */
536         WRITE_NL(); WRITE_BOOL(*options, override_disable_gpu);
537         WRITE_SEPARATOR();
538 }
539
540 static void write_color_profile(GString *outstr, gint indent)
541 {
542         gint i;
543 #ifndef HAVE_LCMS
544         g_string_append_printf(outstr, "<!-- NOTICE: %s was not built with support for color profiles,\n"
545                                 "                color profile options will have no effect.\n-->\n", GQ_APPNAME);
546 #endif
547
548         WRITE_NL(); WRITE_STRING("<color_profiles ");
549         WRITE_CHAR(options->color_profile, screen_file);
550         WRITE_BOOL(options->color_profile, enabled);
551         WRITE_BOOL(options->color_profile, use_image);
552         WRITE_INT(options->color_profile, input_type);
553         WRITE_BOOL(options->color_profile, use_x11_screen_profile);
554         WRITE_INT(options->color_profile, render_intent);
555         WRITE_STRING(">");
556
557         indent++;
558         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
559                 {
560                 WRITE_NL(); WRITE_STRING("<profile ");
561                 write_char_option(outstr, indent, "input_file", options->color_profile.input_file[i]);
562                 write_char_option(outstr, indent, "input_name", options->color_profile.input_name[i]);
563                 WRITE_STRING("/>");
564                 }
565         indent--;
566         WRITE_NL(); WRITE_STRING("</color_profiles>");
567 }
568
569 static void write_marks_tooltips(GString *outstr, gint indent)
570 {
571         gint i;
572
573         WRITE_NL(); WRITE_STRING("<marks_tooltips>");
574         indent++;
575         for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
576                 {
577                 WRITE_NL();
578                 write_char_option(outstr, indent, "<tooltip text", options->marks_tooltips[i]);
579                 WRITE_STRING("/>");
580                 }
581         indent--;
582         WRITE_NL(); WRITE_STRING("</marks_tooltips>");
583 }
584
585 static void write_class_filter(GString *outstr, gint indent)
586 {
587         gint i;
588
589         WRITE_NL(); WRITE_STRING("<class_filter>");
590         indent++;
591         for (i = 0; i < FILE_FORMAT_CLASSES; i++)
592                 {
593                 WRITE_NL(); WRITE_STRING("<filter_type ");
594                 write_char_option(outstr, indent, "filter", format_class_list[i]);
595                 write_bool_option(outstr, indent, "enabled", options->class_filter[i]);
596                 WRITE_STRING("/>");
597                 }
598         indent--;
599         WRITE_NL(); WRITE_STRING("</class_filter>");
600 }
601
602 static void write_disabled_plugins(GString *outstr, gint indent)
603 {
604         GtkTreeIter iter;
605         gboolean valid;
606         gboolean disabled;
607         gchar *desktop_path;
608
609         WRITE_NL(); WRITE_STRING("<disabled_plugins>");
610         indent++;
611
612         if (desktop_file_list)
613                 {
614                 valid = gtk_tree_model_get_iter_first(GTK_TREE_MODEL(desktop_file_list), &iter);
615                 while (valid)
616                         {
617                         gtk_tree_model_get(GTK_TREE_MODEL(desktop_file_list), &iter, DESKTOP_FILE_COLUMN_DISABLED, &disabled, -1);
618                         gtk_tree_model_get(GTK_TREE_MODEL(desktop_file_list), &iter, DESKTOP_FILE_COLUMN_PATH, &desktop_path, -1);
619
620                         if (disabled)
621                                 {
622                                 WRITE_NL();
623                                 write_char_option(outstr, indent, "<plugin path", desktop_path);
624                                 WRITE_STRING("/>");
625                                 }
626                         g_free(desktop_path);
627                         valid = gtk_tree_model_iter_next(GTK_TREE_MODEL(desktop_file_list), &iter);
628                         }
629                 }
630
631         indent--;
632         WRITE_NL(); WRITE_STRING("</disabled_plugins>");
633 }
634
635 /*
636  *-----------------------------------------------------------------------------
637  * save configuration (public)
638  *-----------------------------------------------------------------------------
639  */
640
641 gboolean save_config_to_file(const gchar *utf8_path, ConfOptions *options, LayoutWindow *lw)
642 {
643         SecureSaveInfo *ssi;
644         gchar *rc_pathl;
645         GString *outstr;
646         gint indent = 0;
647         GList *work;
648
649         rc_pathl = path_from_utf8(utf8_path);
650         ssi = secure_open(rc_pathl);
651         g_free(rc_pathl);
652         if (!ssi)
653                 {
654                 log_printf(_("error saving config file: %s\n"), utf8_path);
655                 return FALSE;
656                 }
657
658         outstr = g_string_new("");
659         g_string_append_printf(outstr, "<!--\n");
660         g_string_append_printf(outstr, "######################################################################\n");
661         g_string_append_printf(outstr, "# %30s config file        version %-10s #\n", GQ_APPNAME, VERSION);
662         g_string_append_printf(outstr, "######################################################################\n");
663         WRITE_SEPARATOR();
664
665         WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n");
666         WRITE_STRING("#    but user comments and formatting will be lost.\n");
667         WRITE_SEPARATOR();
668         WRITE_STRING("-->\n");
669         WRITE_SEPARATOR();
670
671         WRITE_STRING("<gq>\n");
672         indent++;
673
674         if (!lw)
675                 {
676                 WRITE_NL(); WRITE_STRING("<global\n");
677                 indent++;
678                 write_global_attributes(outstr, indent + 1);
679                 indent--;
680                 WRITE_STRING(">\n");
681
682                 indent++;
683
684                 write_color_profile(outstr, indent);
685
686                 WRITE_SEPARATOR();
687                 filter_write_list(outstr, indent);
688
689                 WRITE_SEPARATOR();
690                 write_marks_tooltips(outstr, indent);
691
692                 WRITE_SEPARATOR();
693                 write_disabled_plugins(outstr, indent);
694
695                 WRITE_SEPARATOR();
696                 write_class_filter(outstr, indent);
697
698                 WRITE_SEPARATOR();
699                 keyword_tree_write_config(outstr, indent);
700                 indent--;
701                 WRITE_NL(); WRITE_STRING("</global>\n");
702                 }
703         WRITE_SEPARATOR();
704
705         /* Layout Options */
706         if (!lw)
707                 {
708                 /* If not save_window_positions, do not include a <layout> section */
709                 if (options->save_window_positions)
710                         {
711                         work = layout_window_list;
712                         while (work)
713                                 {
714                                 LayoutWindow *lw = static_cast<LayoutWindow *>(work->data);
715                                 layout_write_config(lw, outstr, indent);
716                                 work = work->next;
717                                 }
718                         }
719                 }
720         else
721                 {
722                 layout_write_config(lw, outstr, indent);
723                 }
724
725         indent--;
726         WRITE_NL(); WRITE_STRING("</gq>\n");
727         WRITE_SEPARATOR();
728
729         secure_fputs(ssi, outstr->str);
730         g_string_free(outstr, TRUE);
731
732         if (secure_close(ssi))
733                 {
734                 log_printf(_("error saving config file: %s\nerror: %s\n"), utf8_path,
735                            secsave_strerror(secsave_errno));
736                 return FALSE;
737                 }
738
739         return TRUE;
740 }
741
742 gboolean save_default_layout_options_to_file(const gchar *utf8_path, ConfOptions *UNUSED(options), LayoutWindow *lw)
743 {
744         SecureSaveInfo *ssi;
745         gchar *rc_pathl;
746         GString *outstr;
747         gint indent = 0;
748
749         rc_pathl = path_from_utf8(utf8_path);
750         ssi = secure_open(rc_pathl);
751         g_free(rc_pathl);
752         if (!ssi)
753                 {
754                 log_printf(_("error saving default layout file: %s\n"), utf8_path);
755                 return FALSE;
756                 }
757
758         outstr = g_string_new("");
759         g_string_append_printf(outstr, "<!--\n");
760         g_string_append_printf(outstr, "######################################################################\n");
761         g_string_append_printf(outstr, "# %8s default layout file         version %-10s #\n", GQ_APPNAME, VERSION);
762         g_string_append_printf(outstr, "######################################################################\n");
763         WRITE_SEPARATOR();
764
765         WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n");
766         WRITE_STRING("#    but user comments and formatting will be lost.\n");
767         WRITE_SEPARATOR();
768         WRITE_STRING("-->\n");
769         WRITE_SEPARATOR();
770
771         WRITE_STRING("<gq>\n");
772         indent++;
773
774         layout_write_config(lw, outstr, indent);
775
776         indent--;
777         WRITE_NL(); WRITE_STRING("</gq>\n");
778         WRITE_SEPARATOR();
779
780         secure_fputs(ssi, outstr->str);
781         g_string_free(outstr, TRUE);
782
783         if (secure_close(ssi))
784                 {
785                 log_printf(_("error saving config file: %s\nerror: %s\n"), utf8_path,
786                            secsave_strerror(secsave_errno));
787                 return FALSE;
788                 }
789
790         return TRUE;
791 }
792
793 /*
794  *-----------------------------------------------------------------------------
795  * loading attributes for elements (private)
796  *-----------------------------------------------------------------------------
797  */
798
799
800 static gboolean load_global_params(const gchar **attribute_names, const gchar **attribute_values)
801 {
802         while (*attribute_names)
803                 {
804                 const gchar *option = *attribute_names++;
805                 const gchar *value = *attribute_values++;
806
807                 /* General options */
808                 if (READ_BOOL(*options, show_icon_names)) continue;
809                 if (READ_BOOL(*options, show_star_rating)) continue;
810                 if (READ_BOOL(*options, show_predefined_keyword_tree)) continue;
811
812                 if (READ_BOOL(*options, tree_descend_subdirs)) continue;
813                 if (READ_BOOL(*options, view_dir_list_single_click_enter)) continue;
814                 if (READ_BOOL(*options, circular_selection_lists)) continue;
815                 if (READ_BOOL(*options, lazy_image_sync)) continue;
816                 if (READ_BOOL(*options, update_on_time_change)) continue;
817
818                 if (READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100)) continue;
819                 if (READ_UINT_CLAMP(*options, duplicates_match, 0, DUPE_MATCH_ALL)) continue;
820                 if (READ_UINT_CLAMP(*options, duplicates_select_type, 0, DUPE_SELECT_GROUP2)) continue;
821                 if (READ_BOOL(*options, duplicates_thumbnails)) continue;
822                 if (READ_BOOL(*options, rot_invariant_sim)) continue;
823                 if (READ_BOOL(*options, sort_totals)) continue;
824
825                 if (READ_BOOL(*options, progressive_key_scrolling)) continue;
826                 if (READ_UINT_CLAMP(*options, keyboard_scroll_step, 1, 32)) continue;
827
828                 if (READ_BOOL(*options, mousewheel_scrolls)) continue;
829                 if (READ_BOOL(*options, image_lm_click_nav)) continue;
830                 if (READ_BOOL(*options, image_l_click_archive)) continue;
831                 if (READ_BOOL(*options, image_l_click_video)) continue;
832                 if (READ_CHAR(*options, image_l_click_video_editor)) continue;
833
834                 if (READ_INT(*options, open_recent_list_maxsize)) continue;
835                 if (READ_INT(*options, recent_folder_image_list_maxsize)) continue;
836                 if (READ_INT(*options, dnd_icon_size)) continue;
837                 if (READ_UINT_ENUM(*options, dnd_default_action)) continue;
838                 if (READ_BOOL(*options, place_dialogs_under_mouse)) continue;
839                 if (READ_INT(*options, clipboard_selection)) continue;
840
841                 if (READ_BOOL(*options, save_window_positions)) continue;
842                 if (READ_BOOL(*options, use_saved_window_positions_for_new_windows)) continue;
843                 if (READ_BOOL(*options, save_window_workspace)) continue;
844                 if (READ_BOOL(*options, tools_restore_state)) continue;
845                 if (READ_BOOL(*options, save_dialog_window_positions)) continue;
846                 if (READ_BOOL(*options, show_window_ids)) continue;
847                 if (READ_BOOL(*options, expand_menu_toolbar)) continue;
848
849                 if (READ_INT(*options, log_window_lines)) continue;
850                 if (READ_BOOL(*options, log_window.timer_data)) continue;
851                 if (READ_CHAR(*options, log_window.action)) continue;
852
853                 if (READ_BOOL(*options, appimage_notifications)) continue;
854                 if (READ_BOOL(*options, marks_save)) continue;
855                 if (READ_CHAR(*options, help_search_engine)) continue;
856
857                 if (READ_BOOL(*options, external_preview.enable)) continue;
858                 if (READ_CHAR(*options, external_preview.select)) continue;
859                 if (READ_CHAR(*options, external_preview.extract)) continue;
860
861                 if (READ_BOOL(*options, collections_on_top)) continue;
862                 if (READ_BOOL(*options, hide_window_in_fullscreen)) continue;
863
864                 /* Properties dialog options */
865                 if (READ_CHAR(*options, properties.tabs_order)) continue;
866
867                 if (READ_BOOL(*options, with_rename)) continue;
868
869                 /* Image options */
870                 if (READ_UINT_ENUM_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE)) continue;
871                 if (READ_UINT_ENUM_CLAMP(*options, image.zoom_style, 0, ZOOM_ARITHMETIC)) continue;
872                 if (READ_BOOL(*options, image.zoom_2pass)) continue;
873                 if (READ_BOOL(*options, image.zoom_to_fit_allow_expand)) continue;
874                 if (READ_BOOL(*options, image.fit_window_to_image)) continue;
875                 if (READ_BOOL(*options, image.limit_window_size)) continue;
876                 if (READ_INT(*options, image.max_window_size)) continue;
877                 if (READ_BOOL(*options, image.limit_autofit_size)) continue;
878                 if (READ_INT(*options, image.max_autofit_size)) continue;
879                 if (READ_INT(*options, image.max_enlargement_size)) continue;
880                 if (READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1)) continue;
881                 if (READ_INT(*options, image.tile_cache_max)) continue;
882                 if (READ_INT(*options, image.image_cache_max)) continue;
883                 if (READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_BILINEAR)) continue;
884                 if (READ_INT(*options, image.zoom_increment)) continue;
885                 if (READ_BOOL(*options, image.enable_read_ahead)) continue;
886                 if (READ_BOOL(*options, image.exif_rotate_enable)) continue;
887                 if (READ_BOOL(*options, image.use_custom_border_color)) continue;
888                 if (READ_BOOL(*options, image.use_custom_border_color_in_fullscreen)) continue;
889                 if (READ_COLOR(*options, image.border_color)) continue;
890                 if (READ_COLOR(*options, image.alpha_color_1)) continue;
891                 if (READ_COLOR(*options, image.alpha_color_2)) continue;
892                 //~ if (READ_BOOL(*options, image.use_clutter_renderer)) continue;
893                 if (READ_INT(*options, image.tile_size)) continue;
894
895                 /* Thumbnails options */
896                 if (READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512)) continue;
897                 if (READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512)) continue;
898
899                 if (READ_BOOL(*options, thumbnails.enable_caching)) continue;
900                 if (READ_BOOL(*options, thumbnails.cache_into_dirs)) continue;
901                 if (READ_BOOL(*options, thumbnails.use_xvpics)) continue;
902                 if (READ_BOOL(*options, thumbnails.spec_standard)) continue;
903                 if (READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_BILINEAR)) continue;
904                 if (READ_BOOL(*options, thumbnails.use_exif)) continue;
905                 if (READ_BOOL(*options, thumbnails.use_color_management)) continue;
906                 if (READ_INT(*options, thumbnails.collection_preview)) continue;
907                 if (READ_BOOL(*options, thumbnails.use_ft_metadata)) continue;
908 //              if (READ_BOOL(*options, thumbnails.use_ft_metadata_small)) continue;
909
910                 /* File sorting options */
911                 if (READ_UINT_ENUM(*options, file_sort.method)) continue;
912                 if (READ_BOOL(*options, file_sort.ascending)) continue;
913                 if (READ_BOOL(*options, file_sort.case_sensitive)) continue;
914                 if (READ_BOOL(*options, file_sort.natural)) continue;
915
916                 /* File operations *options */
917                 if (READ_BOOL(*options, file_ops.enable_in_place_rename)) continue;
918                 if (READ_BOOL(*options, file_ops.confirm_delete)) continue;
919                 if (READ_BOOL(*options, file_ops.confirm_move_to_trash)) continue;
920                 if (READ_BOOL(*options, file_ops.enable_delete_key)) continue;
921                 if (READ_BOOL(*options, file_ops.use_system_trash)) continue;
922                 if (READ_BOOL(*options, file_ops.safe_delete_enable)) continue;
923                 if (READ_CHAR(*options, file_ops.safe_delete_path)) continue;
924                 if (READ_INT(*options, file_ops.safe_delete_folder_maxsize)) continue;
925                 if (READ_BOOL(*options, file_ops.no_trash)) continue;
926
927                 /* Fullscreen options */
928                 if (READ_INT(*options, fullscreen.screen)) continue;
929                 if (READ_BOOL(*options, fullscreen.clean_flip)) continue;
930                 if (READ_BOOL(*options, fullscreen.disable_saver)) continue;
931                 if (READ_BOOL(*options, fullscreen.above)) continue;
932
933                 /* Image overlay */
934                 if (READ_CHAR(*options, image_overlay.template_string)) continue;
935                 if (READ_INT(*options, image_overlay.x)) continue;
936                 if (READ_INT(*options, image_overlay.y)) continue;
937                 if (READ_USHORT(*options, image_overlay.text_red)) continue;
938                 if (READ_USHORT(*options, image_overlay.text_green)) continue;
939                 if (READ_USHORT(*options, image_overlay.text_blue)) continue;
940                 if (READ_USHORT(*options, image_overlay.text_alpha)) continue;
941                 if (READ_USHORT(*options, image_overlay.background_red)) continue;
942                 if (READ_USHORT(*options, image_overlay.background_green)) continue;
943                 if (READ_USHORT(*options, image_overlay.background_blue)) continue;
944                 if (READ_USHORT(*options, image_overlay.background_alpha)) continue;
945                 if (READ_CHAR(*options, image_overlay.font)) continue;
946
947                 /* Slideshow options */
948                 if (READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION)) continue;
949                 if (READ_BOOL(*options, slideshow.random)) continue;
950                 if (READ_BOOL(*options, slideshow.repeat)) continue;
951
952                 /* Collection options */
953                 if (READ_BOOL(*options, collections.rectangular_selection)) continue;
954
955                 /* Filtering options */
956                 if (READ_BOOL(*options, file_filter.show_hidden_files)) continue;
957                 if (READ_BOOL(*options, file_filter.show_parent_directory)) continue;
958                 if (READ_BOOL(*options, file_filter.show_dot_directory)) continue;
959                 if (READ_BOOL(*options, file_filter.disable_file_extension_checks)) continue;
960                 if (READ_BOOL(*options, file_filter.disable)) continue;
961                 if (READ_CHAR(*options, sidecar.ext)) continue;
962
963                 /* Color Profiles */
964
965                 /* Shell command */
966                 if (READ_CHAR(*options, shell.path)) continue;
967                 if (READ_CHAR(*options, shell.options)) continue;
968
969                 /* Helpers */
970                 if (READ_CHAR(*options, helpers.html_browser.command_name)) continue;
971                 if (READ_CHAR(*options, helpers.html_browser.command_line)) continue;
972
973                 /* Metadata */
974                 if (READ_BOOL(*options, metadata.enable_metadata_dirs)) continue;
975                 if (READ_BOOL(*options, metadata.save_in_image_file)) continue;
976                 if (READ_BOOL(*options, metadata.save_legacy_IPTC)) continue;
977                 if (READ_BOOL(*options, metadata.warn_on_write_problems)) continue;
978                 if (READ_BOOL(*options, metadata.save_legacy_format)) continue;
979                 if (READ_BOOL(*options, metadata.sync_grouped_files)) continue;
980                 if (READ_BOOL(*options, metadata.confirm_write)) continue;
981                 if (READ_BOOL(*options, metadata.sidecar_extended_name)) continue;
982                 if (READ_BOOL(*options, metadata.confirm_after_timeout)) continue;
983                 if (READ_INT(*options, metadata.confirm_timeout)) continue;
984                 if (READ_BOOL(*options, metadata.confirm_on_image_change)) continue;
985                 if (READ_BOOL(*options, metadata.confirm_on_dir_change)) continue;
986                 if (READ_BOOL(*options, metadata.keywords_case_sensitive)) continue;
987                 if (READ_BOOL(*options, metadata.write_orientation)) continue;
988                 if (READ_BOOL(*options, metadata.check_spelling)) continue;
989
990                 if (READ_INT(*options, stereo.mode)) continue;
991                 if (READ_INT(*options, stereo.fsmode)) continue;
992                 if (READ_BOOL(*options, stereo.enable_fsmode)) continue;
993                 if (READ_INT(*options, stereo.fixed_w)) continue;
994                 if (READ_INT(*options, stereo.fixed_h)) continue;
995                 if (READ_INT(*options, stereo.fixed_x1)) continue;
996                 if (READ_INT(*options, stereo.fixed_y1)) continue;
997                 if (READ_INT(*options, stereo.fixed_x2)) continue;
998                 if (READ_INT(*options, stereo.fixed_y2)) continue;
999
1000                 if (READ_BOOL(*options, read_metadata_in_idle)) continue;
1001
1002                 if (READ_UINT(*options, star_rating.star)) continue;
1003                 if (READ_UINT(*options, star_rating.rejected)) continue;
1004
1005                 /* copy move rename */
1006                 if (READ_INT(*options, cp_mv_rn.auto_start))  continue;
1007                 if (READ_INT(*options, cp_mv_rn.auto_padding)) continue;
1008                 if (READ_CHAR(*options, cp_mv_rn.auto_end)) continue;
1009                 if (READ_INT(*options, cp_mv_rn.formatted_start)) continue;
1010
1011                 /* Printer text */
1012                 if (READ_CHAR(*options, printer.template_string)) continue;
1013                 if (READ_CHAR(*options, printer.image_font)) continue;
1014                 if (READ_CHAR(*options, printer.page_font)) continue;
1015                 if (READ_CHAR(*options, printer.page_text)) continue;
1016                 if (READ_INT(*options, printer.image_text_position)) continue;
1017                 if (READ_INT(*options, printer.page_text_position)) continue;
1018                 if (READ_BOOL(*options, printer.show_image_text)) continue;
1019                 if (READ_BOOL(*options, printer.show_page_text)) continue;
1020
1021                 /* Threads */
1022                 if (READ_INT(*options, threads.duplicates)) continue;
1023
1024                 /* user-definable mouse buttons */
1025                 if (READ_CHAR(*options, mouse_button_8)) continue;
1026                 if (READ_CHAR(*options, mouse_button_9)) continue;
1027
1028                 /* GPU - see main.cc */
1029                 if (READ_BOOL(*options, override_disable_gpu)) continue;
1030
1031                 /* Dummy options */
1032                 if (READ_DUMMY(*options, image.dither_quality, "deprecated since 2012-08-13")) continue;
1033
1034                 /* Unknown options */
1035                 log_printf("unknown attribute %s = %s\n", option, value);
1036                 }
1037
1038         return TRUE;
1039 }
1040
1041 static void options_load_color_profiles(GQParserData *UNUSED(parser_data), GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1042 {
1043         while (*attribute_names)
1044                 {
1045                 const gchar *option = *attribute_names++;
1046                 const gchar *value = *attribute_values++;
1047
1048                 if (READ_BOOL(options->color_profile, enabled)) continue;
1049                 if (READ_BOOL(options->color_profile, use_image)) continue;
1050                 if (READ_INT(options->color_profile, input_type)) continue;
1051                 if (READ_CHAR(options->color_profile, screen_file)) continue;
1052                 if (READ_BOOL(options->color_profile, use_x11_screen_profile)) continue;
1053                 if (READ_INT(options->color_profile, render_intent)) continue;
1054
1055                 log_printf("unknown attribute %s = %s\n", option, value);
1056                 }
1057
1058 }
1059
1060 static void options_load_profile(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1061 {
1062         gint i = GPOINTER_TO_INT(data);
1063         if (i < 0 || i >= COLOR_PROFILE_INPUTS) return;
1064         while (*attribute_names)
1065                 {
1066                 const gchar *option = *attribute_names++;
1067                 const gchar *value = *attribute_values++;
1068
1069                 if (READ_CHAR_FULL("input_file", options->color_profile.input_file[i])) continue;
1070                 if (READ_CHAR_FULL("input_name", options->color_profile.input_name[i])) continue;
1071
1072                 log_printf("unknown attribute %s = %s\n", option, value);
1073                 }
1074         i++;
1075         options_parse_func_set_data(parser_data, GINT_TO_POINTER(i));
1076
1077 }
1078
1079 static void options_load_marks_tooltips(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1080 {
1081         gint i = GPOINTER_TO_INT(data);
1082         if (i < 0 || i >= FILEDATA_MARKS_SIZE) return;
1083         while (*attribute_names)
1084                 {
1085                 const gchar *option = *attribute_names++;
1086                 const gchar *value = *attribute_values++;
1087                 if (READ_CHAR_FULL("text",  options->marks_tooltips[i])) continue;
1088
1089                 log_printf("unknown attribute %s = %s\n", option, value);
1090                 }
1091         i++;
1092         options_parse_func_set_data(parser_data, GINT_TO_POINTER(i));
1093
1094 }
1095
1096 static void options_load_disabled_plugins(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1097 {
1098         gint i = GPOINTER_TO_INT(data);
1099         struct {
1100                 gchar *path;
1101         } tmp;
1102
1103         while (*attribute_names)
1104                 {
1105                 const gchar *option = *attribute_names++;
1106                 const gchar *value = *attribute_values++;
1107                 tmp.path = NULL;
1108                 if (READ_CHAR_FULL("path", tmp.path))
1109                         {
1110                         options->disabled_plugins = g_list_append(options->disabled_plugins, g_strdup(tmp.path));
1111                         continue;
1112                         }
1113
1114                 log_printf("unknown attribute %s = %s\n", option, value);
1115                 }
1116         i++;
1117         options_parse_func_set_data(parser_data, GINT_TO_POINTER(i));
1118 }
1119
1120 /*
1121  *-----------------------------------------------------------------------------
1122  * xml file structure (private)
1123  *-----------------------------------------------------------------------------
1124  */
1125 struct _GQParserData
1126 {
1127         GList *parse_func_stack;
1128         gboolean startup; /* reading config for the first time - add commandline and defaults */
1129 };
1130
1131 static const gchar *options_get_id(const gchar **attribute_names, const gchar **attribute_values)
1132 {
1133         while (*attribute_names)
1134                 {
1135                 const gchar *option = *attribute_names++;
1136                 const gchar *value = *attribute_values++;
1137
1138                 if (strcmp(option, "id") == 0) return value;
1139
1140                 }
1141         return NULL;
1142 }
1143
1144
1145 void options_parse_leaf(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **UNUSED(attribute_names), const gchar **UNUSED(attribute_values), gpointer UNUSED(data), GError **UNUSED(error))
1146 {
1147         log_printf("unexpected: %s\n", element_name);
1148         options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1149 }
1150
1151 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)
1152 {
1153         if (g_ascii_strcasecmp(element_name, "profile") == 0)
1154                 {
1155                 options_load_profile(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1156                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1157                 }
1158         else
1159                 {
1160                 log_printf("unexpected in <profile>: <%s>\n", element_name);
1161                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1162                 }
1163 }
1164
1165 static void options_parse_marks_tooltips(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
1166 {
1167         if (g_ascii_strcasecmp(element_name, "tooltip") == 0)
1168                 {
1169                 options_load_marks_tooltips(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1170                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1171                 }
1172         else
1173                 {
1174                 log_printf("unexpected in <profile>: <%s>\n", element_name);
1175                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1176                 }
1177 }
1178
1179 static void class_filter_load_filter_type(const gchar **attribute_names, const gchar **attribute_values)
1180 {
1181         // This is called with all attributes for a given XML element.  So for
1182         // a sample input of:
1183         // <filter_type filter = "RAW Image" enabled = "true" />
1184         // attribute_names will be {"filter", "enabled"} and attribute_values
1185         // will be {"RAW Image", "true"}.
1186         // For a sample input of:
1187         // <filter_type enabled = "true" filter = "RAW Image" />
1188         // attribute_names will be {"enabled", "filter"} and attribute_values
1189         // will be {"true", "RAW Image"}.
1190
1191         const gchar *enabled_name = NULL;
1192         const gchar *enabled_value = NULL;
1193         int format_class_index = -1;
1194
1195         // In this loop, we iterate through matching attribute/value pairs in
1196         // tandem, looking for a "filter" value and an "enabled" value.
1197         while (*attribute_names)
1198                 {
1199                 const gchar *option = *attribute_names++;
1200                 const gchar *value = *attribute_values++;
1201
1202                 // If the name is "filter" and the value is in our
1203                 // format_class_list, then stash the format class index.
1204                 if (g_strcmp0("filter", option) == 0)
1205                         {
1206                         for (int i = 0; i < FILE_FORMAT_CLASSES; i++)
1207                                 {
1208                                 if (g_strcmp0(format_class_list[i], value) == 0)
1209                                         {
1210                                         format_class_index = i;
1211                                         break;
1212                                         }
1213                                 }
1214                         continue;
1215                         }
1216
1217                 if (g_strcmp0("enabled", option) == 0)
1218                         {
1219                         enabled_name = option;
1220                         enabled_value = value;
1221                         continue;
1222                         }
1223
1224                 log_printf("unknown attribute %s = %s\n", option, value);
1225                 }
1226
1227         if (enabled_name == NULL || enabled_value == NULL || format_class_index < 0)
1228                 {
1229                 log_printf("Failed to parse <filter_type> config element\n");
1230                 return;
1231                 }
1232
1233         if (!read_bool_option(enabled_name, "enabled", enabled_value,
1234                                                   &(options->class_filter[format_class_index])))
1235                 {
1236                 log_printf("Failed to load <filter_type> config element with "
1237                            "class index %d\n", format_class_index);
1238                 }
1239 }
1240
1241 static void options_parse_class_filter(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1242 {
1243         if (g_ascii_strcasecmp(element_name, "filter_type") == 0)
1244                 {
1245                 class_filter_load_filter_type(attribute_names, attribute_values);
1246                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1247                 }
1248         else
1249                 {
1250                 log_printf("unexpected in <profile>: <%s>\n", element_name);
1251                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1252                 }
1253 }
1254
1255 static void options_parse_disabled_plugins(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
1256 {
1257         if (g_ascii_strcasecmp(element_name, "plugin") == 0)
1258                 {
1259                 options_load_disabled_plugins(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1260                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1261                 }
1262         else
1263                 {
1264                 log_printf("unexpected in <profile>: <%s>\n", element_name);
1265                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1266                 }
1267 }
1268
1269 static void options_parse_filter(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1270 {
1271         if (g_ascii_strcasecmp(element_name, "file_type") == 0)
1272                 {
1273                 filter_load_file_type(attribute_names, attribute_values);
1274                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1275                 }
1276         else
1277                 {
1278                 log_printf("unexpected in <filter>: <%s>\n", element_name);
1279                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1280                 }
1281 }
1282
1283 static void options_parse_filter_end(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), gpointer UNUSED(data), GError **UNUSED(error))
1284 {
1285         if (parser_data->startup) filter_add_defaults();
1286         filter_rebuild();
1287 }
1288
1289 static void options_parse_keyword_end(GQParserData *UNUSED(parser_data), GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), gpointer data, GError **UNUSED(error))
1290 {
1291         GtkTreeIter *iter_ptr = static_cast<GtkTreeIter *>(data);
1292         gtk_tree_iter_free(iter_ptr);
1293 }
1294
1295
1296 static void options_parse_keyword(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1297 {
1298         GtkTreeIter *iter_ptr = static_cast<GtkTreeIter *>(data);
1299         if (g_ascii_strcasecmp(element_name, "keyword") == 0)
1300                 {
1301                 GtkTreeIter *child = keyword_add_from_config(keyword_tree, iter_ptr, attribute_names, attribute_values);
1302                 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, child);
1303                 }
1304         else
1305                 {
1306                 log_printf("unexpected in <keyword>: <%s>\n", element_name);
1307                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1308                 }
1309 }
1310
1311
1312
1313 static void options_parse_keyword_tree(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1314 {
1315         if (g_ascii_strcasecmp(element_name, "keyword") == 0)
1316                 {
1317                 GtkTreeIter *iter_ptr = keyword_add_from_config(keyword_tree, NULL, attribute_names, attribute_values);
1318                 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, iter_ptr);
1319                 }
1320         else
1321                 {
1322                 log_printf("unexpected in <keyword_tree>: <%s>\n", element_name);
1323                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1324                 }
1325 }
1326
1327
1328 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)
1329 {
1330         if (g_ascii_strcasecmp(element_name, "color_profiles") == 0)
1331                 {
1332                 options_load_color_profiles(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1333                 options_parse_func_push(parser_data, options_parse_color_profiles, NULL, GINT_TO_POINTER(0));
1334                 }
1335         else if (g_ascii_strcasecmp(element_name, "filter") == 0)
1336                 {
1337                 options_parse_func_push(parser_data, options_parse_filter, options_parse_filter_end, NULL);
1338                 }
1339         else if (g_ascii_strcasecmp(element_name, "marks_tooltips") == 0)
1340                 {
1341                 options_load_marks_tooltips(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1342                 options_parse_func_push(parser_data, options_parse_marks_tooltips, NULL, NULL);
1343                 }
1344         else if (g_ascii_strcasecmp(element_name, "class_filter") == 0)
1345                 {
1346                 options_parse_func_push(parser_data, options_parse_class_filter, NULL, NULL);
1347                 }
1348         else if (g_ascii_strcasecmp(element_name, "keyword_tree") == 0)
1349                 {
1350                 if (!keyword_tree) keyword_tree_new();
1351                 options_parse_func_push(parser_data, options_parse_keyword_tree, NULL, NULL);
1352                 }
1353         else if (g_ascii_strcasecmp(element_name, "disabled_plugins") == 0)
1354                 {
1355                 options_load_disabled_plugins(parser_data, context, element_name, attribute_names, attribute_values, data, error);
1356                 options_parse_func_push(parser_data, options_parse_disabled_plugins, NULL, NULL);
1357                 }
1358         else
1359                 {
1360                 log_printf("unexpected in <global>: <%s>\n", element_name);
1361                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1362                 }
1363 }
1364
1365 static void options_parse_global_end(GQParserData *UNUSED(parser_data), GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), gpointer UNUSED(data), GError **UNUSED(error))
1366 {
1367 #ifndef HAVE_EXIV2
1368         /* some options do not work without exiv2 */
1369         options->metadata.save_in_image_file = FALSE;
1370         options->metadata.save_legacy_format = TRUE;
1371         options->metadata.write_orientation = FALSE;
1372         DEBUG_1("compiled without Exiv2 - disabling XMP write support");
1373 #endif
1374 }
1375
1376 static void options_parse_pane_exif(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1377 {
1378         GtkWidget *pane = static_cast<GtkWidget *>(data);
1379         if (g_ascii_strcasecmp(element_name, "entry") == 0)
1380                 {
1381                 bar_pane_exif_entry_add_from_config(pane, attribute_names, attribute_values);
1382                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1383                 }
1384         else
1385                 {
1386                 log_printf("unexpected in <pane_exif>: <%s>\n", element_name);
1387                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1388                 }
1389 }
1390
1391 static void options_parse_pane_keywords(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1392 {
1393         GtkWidget *pane = static_cast<GtkWidget *>(data);
1394
1395         if (g_ascii_strcasecmp(element_name, "expanded") == 0)
1396                 {
1397                 bar_pane_keywords_entry_add_from_config(pane, attribute_names, attribute_values);
1398                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1399                 }
1400         else
1401                 {
1402                 log_printf("unexpected in <pane_keywords>: <%s>\n", element_name);
1403                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1404                 }
1405 }
1406
1407 static void options_parse_bar(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1408 {
1409         GtkWidget *bar = static_cast<GtkWidget *>(data);
1410         if (g_ascii_strcasecmp(element_name, "pane_comment") == 0)
1411                 {
1412                 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_COMMENT, options_get_id(attribute_names, attribute_values));
1413                 if (pane)
1414                         {
1415                         bar_pane_comment_update_from_config(pane, attribute_names, attribute_values);
1416                         }
1417                 else
1418                         {
1419                         pane = bar_pane_comment_new_from_config(attribute_names, attribute_values);
1420                         bar_add(bar, pane);
1421                         }
1422                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1423                 }
1424 #ifdef HAVE_LIBCHAMPLAIN
1425 #ifdef HAVE_LIBCHAMPLAIN_GTK
1426         else if (g_ascii_strcasecmp(element_name, "pane_gps") == 0)
1427                 {
1428                 /* Use this flag to determine if --disable-clutter has been issued */
1429                 if (!options->disable_gpu)
1430                         {
1431                         GtkWidget *pane = bar_find_pane_by_id(bar, PANE_GPS, options_get_id(attribute_names, attribute_values));
1432                         if (pane)
1433                                 {
1434                                 bar_pane_gps_update_from_config(pane, attribute_names, attribute_values);
1435                                 }
1436                         else
1437                                 {
1438                                 pane = bar_pane_gps_new_from_config(attribute_names, attribute_values);
1439                                 bar_add(bar, pane);
1440                                 }
1441                         options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1442                         }
1443                 }
1444 #endif
1445 #endif
1446         else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0)
1447                 {
1448                 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_EXIF, options_get_id(attribute_names, attribute_values));
1449                 if (pane)
1450                         {
1451                         bar_pane_exif_update_from_config(pane, attribute_names, attribute_values);
1452                         }
1453                 else
1454                         {
1455                         pane = bar_pane_exif_new_from_config(attribute_names, attribute_values);
1456                         bar_add(bar, pane);
1457                         }
1458                 options_parse_func_push(parser_data, options_parse_pane_exif, NULL, pane);
1459                 }
1460         else if (g_ascii_strcasecmp(element_name, "pane_histogram") == 0)
1461                 {
1462                 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_HISTOGRAM, options_get_id(attribute_names, attribute_values));
1463                 if (pane)
1464                         {
1465                         bar_pane_histogram_update_from_config(pane, attribute_names, attribute_values);
1466                         }
1467                 else
1468                         {
1469                         pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values);
1470                         bar_add(bar, pane);
1471                         }
1472                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1473                 }
1474         else if (g_ascii_strcasecmp(element_name, "pane_rating") == 0)
1475                 {
1476                 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_RATING, options_get_id(attribute_names, attribute_values));
1477                 if (pane)
1478                         {
1479                         bar_pane_rating_update_from_config(pane, attribute_names, attribute_values);
1480                         }
1481                 else
1482                         {
1483                         pane = bar_pane_rating_new_from_config(attribute_names, attribute_values);
1484                         bar_add(bar, pane);
1485                         }
1486                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1487                 }
1488         else if (g_ascii_strcasecmp(element_name, "pane_keywords") == 0)
1489                 {
1490                 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_KEYWORDS, options_get_id(attribute_names, attribute_values));
1491                 if (pane)
1492                         {
1493                         bar_pane_keywords_update_from_config(pane, attribute_names, attribute_values);
1494                         }
1495                 else
1496                         {
1497                         pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values);
1498                         bar_add(bar, pane);
1499                         }
1500                 options_parse_func_push(parser_data, options_parse_pane_keywords, NULL, pane);
1501                 }
1502         else if (g_ascii_strcasecmp(element_name, "clear") == 0)
1503                 {
1504                 bar_clear(bar);
1505                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1506                 }
1507         else
1508                 {
1509                 log_printf("unexpected in <bar>: <%s>\n", element_name);
1510                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1511                 }
1512 }
1513
1514 static void options_parse_toolbar(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1515 {
1516         LayoutWindow *lw = static_cast<LayoutWindow *>(data);
1517         if (g_ascii_strcasecmp(element_name, "toolitem") == 0)
1518                 {
1519                 layout_toolbar_add_from_config(lw, TOOLBAR_MAIN, attribute_names, attribute_values);
1520                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1521                 }
1522         else if (g_ascii_strcasecmp(element_name, "clear") == 0)
1523                 {
1524                 layout_toolbar_clear(lw, TOOLBAR_MAIN);
1525                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1526                 }
1527         else
1528                 {
1529                 log_printf("unexpected in <toolbar>: <%s>\n", element_name);
1530                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1531                 }
1532 }
1533
1534 static void options_parse_statusbar(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1535 {
1536         LayoutWindow *lw = static_cast<LayoutWindow *>(data);
1537         if (g_ascii_strcasecmp(element_name, "toolitem") == 0)
1538                 {
1539                 layout_toolbar_add_from_config(lw, TOOLBAR_STATUS, attribute_names, attribute_values);
1540                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1541                 }
1542         else if (g_ascii_strcasecmp(element_name, "clear") == 0)
1543                 {
1544                 layout_toolbar_clear(lw, TOOLBAR_STATUS);
1545                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1546                 }
1547         else
1548                 {
1549                 log_printf("unexpected in <statusbar>: <%s>\n", element_name);
1550                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1551                 }
1552 }
1553
1554 static void options_parse_dialogs(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1555 {
1556         if (g_ascii_strcasecmp(element_name, "window") == 0)
1557                 {
1558                 generic_dialog_windows_load_config(attribute_names, attribute_values);
1559                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1560                 }
1561         else
1562                 {
1563                 log_printf("unexpected in <dialogs>: <%s>\n", element_name);
1564                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1565                 }
1566 }
1567
1568 static void options_parse_layout(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **UNUSED(error))
1569 {
1570         LayoutWindow *lw = static_cast<LayoutWindow *>(data);
1571         if (g_ascii_strcasecmp(element_name, "bar") == 0)
1572                 {
1573                 if (!lw->bar)
1574                         {
1575                         GtkWidget *bar = bar_new_from_config(lw, attribute_names, attribute_values);
1576                         layout_bar_set(lw, bar);
1577                         }
1578                 else
1579                         {
1580                         bar_update_from_config(lw->bar, attribute_names, attribute_values, lw, FALSE);
1581                         }
1582
1583                 options_parse_func_push(parser_data, options_parse_bar, NULL, lw->bar);
1584                 }
1585         else if (g_ascii_strcasecmp(element_name, "bar_sort") == 0)
1586                 {
1587                 bar_sort_cold_start(lw, attribute_names, attribute_values);
1588                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1589                 }
1590         else if (g_ascii_strcasecmp(element_name, "toolbar") == 0)
1591                 {
1592                 options_parse_func_push(parser_data, options_parse_toolbar, NULL, lw);
1593                 }
1594         else if (g_ascii_strcasecmp(element_name, "statusbar") == 0)
1595                 {
1596                 options_parse_func_push(parser_data, options_parse_statusbar, NULL, lw);
1597                 }
1598         else if (g_ascii_strcasecmp(element_name, "dialogs") == 0)
1599                 {
1600                 options_parse_func_push(parser_data, options_parse_dialogs, NULL, NULL);
1601                 }
1602         else
1603                 {
1604                 log_printf("unexpected in <layout>: <%s>\n", element_name);
1605                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1606                 }
1607 }
1608
1609 static void options_parse_layout_end(GQParserData *UNUSED(parser_data), GMarkupParseContext *UNUSED(context), const gchar *UNUSED(element_name), gpointer data, GError **UNUSED(error))
1610 {
1611         LayoutWindow *lw = static_cast<LayoutWindow *>(data);
1612         //~ LayoutWindow *lw = (LayoutWindow *)data;
1613         //~ LayoutWindow *lw = data;
1614         layout_util_sync(lw);
1615 }
1616
1617 static void options_parse_toplevel(GQParserData *parser_data, GMarkupParseContext *UNUSED(context), const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer UNUSED(data), GError **UNUSED(error))
1618 {
1619         if (g_ascii_strcasecmp(element_name, "gq") == 0)
1620                 {
1621                 /* optional top-level node */
1622                 options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL);
1623                 return;
1624                 }
1625         if (g_ascii_strcasecmp(element_name, "global") == 0)
1626                 {
1627                 load_global_params(attribute_names, attribute_values);
1628                 options_parse_func_push(parser_data, options_parse_global, options_parse_global_end, NULL);
1629                 return;
1630                 }
1631
1632         if (g_ascii_strcasecmp(element_name, "layout") == 0)
1633                 {
1634                 LayoutWindow *lw;
1635                 lw = layout_find_by_layout_id(options_get_id(attribute_names, attribute_values));
1636                 if (lw)
1637                         {
1638                         layout_update_from_config(lw, attribute_names, attribute_values);
1639                         }
1640                 else
1641                         {
1642                         lw = layout_new_from_config(attribute_names, attribute_values, parser_data->startup);
1643                         }
1644                 options_parse_func_push(parser_data, options_parse_layout, options_parse_layout_end, lw);
1645                 }
1646         else
1647                 {
1648                 log_printf("unexpected in <toplevel>: <%s>\n", element_name);
1649                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
1650                 }
1651 }
1652
1653
1654
1655
1656
1657 /*
1658  *-----------------------------------------------------------------------------
1659  * parser
1660  *-----------------------------------------------------------------------------
1661  */
1662
1663
1664 struct _GQParserFuncData
1665 {
1666         GQParserStartFunc start_func;
1667         GQParserEndFunc end_func;
1668         gpointer data;
1669 };
1670
1671 void options_parse_func_push(GQParserData *parser_data, GQParserStartFunc start_func, GQParserEndFunc end_func, gpointer data)
1672 {
1673         GQParserFuncData *func_data = g_new0(GQParserFuncData, 1);
1674         func_data->start_func = start_func;
1675         func_data->end_func = end_func;
1676         func_data->data = data;
1677
1678         parser_data->parse_func_stack = g_list_prepend(parser_data->parse_func_stack, func_data);
1679 }
1680
1681 void options_parse_func_pop(GQParserData *parser_data)
1682 {
1683         g_free(parser_data->parse_func_stack->data);
1684         parser_data->parse_func_stack = g_list_delete_link(parser_data->parse_func_stack, parser_data->parse_func_stack);
1685 }
1686
1687 void options_parse_func_set_data(GQParserData *parser_data, gpointer data)
1688 {
1689         GQParserFuncData *func = static_cast<GQParserFuncData *>(parser_data->parse_func_stack->data);
1690         func->data = data;
1691 }
1692
1693
1694 static void start_element(GMarkupParseContext *context,
1695                           const gchar *element_name,
1696                           const gchar **attribute_names,
1697                           const gchar **attribute_values,
1698                           gpointer user_data,
1699                           GError **error)
1700 {
1701         GQParserData *parser_data = static_cast<GQParserData *>(user_data);
1702         GQParserFuncData *func = static_cast<GQParserFuncData *>(parser_data->parse_func_stack->data);
1703         DEBUG_2("start %s", element_name);
1704
1705         if (func->start_func)
1706                 func->start_func(parser_data, context, element_name, attribute_names, attribute_values, func->data, error);
1707 }
1708
1709 static void end_element(GMarkupParseContext *context,
1710                           const gchar *element_name,
1711                           gpointer user_data,
1712                           GError **error)
1713 {
1714         GQParserData *parser_data = static_cast<GQParserData *>(user_data);
1715         GQParserFuncData *func = static_cast<GQParserFuncData *>(parser_data->parse_func_stack->data);
1716         DEBUG_2("end %s", element_name);
1717
1718         if (func->end_func)
1719                 func->end_func(parser_data, context, element_name, func->data, error);
1720
1721         options_parse_func_pop(parser_data);
1722 }
1723
1724 static GMarkupParser parser = {
1725         start_element,
1726         end_element,
1727         NULL,
1728         NULL,
1729         NULL
1730 };
1731
1732 /*
1733  *-----------------------------------------------------------------------------
1734  * load configuration (public)
1735  *-----------------------------------------------------------------------------
1736  */
1737
1738 gboolean load_config_from_buf(const gchar *buf, gsize size, gboolean startup)
1739 {
1740         GMarkupParseContext *context;
1741         gboolean ret = TRUE;
1742         GQParserData *parser_data;
1743
1744         parser_data = g_new0(GQParserData, 1);
1745
1746         parser_data->startup = startup;
1747         options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL);
1748
1749         context = g_markup_parse_context_new(&parser, GMarkupParseFlags(0), parser_data, NULL);
1750
1751         if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE)
1752                 {
1753                 ret = FALSE;
1754                 DEBUG_1("Parse failed");
1755                 }
1756
1757         g_free(parser_data);
1758
1759         g_markup_parse_context_free(context);
1760         return ret;
1761 }
1762
1763 gboolean load_config_from_file(const gchar *utf8_path, gboolean startup)
1764 {
1765         gsize size;
1766         gchar *buf;
1767         gboolean ret = TRUE;
1768
1769         if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE)
1770                 {
1771                 return FALSE;
1772                 }
1773         ret = load_config_from_buf(buf, size, startup);
1774         g_free(buf);
1775         return ret;
1776 }
1777
1778
1779
1780 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */