X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=blobdiff_plain;f=src%2Frcfile.c;h=52aa2b9022dce442c3ca1a31b0c6c050b3a8eb42;hp=6afadddb9ff4fe7175807091e934dbc7adf51f7e;hb=36d2e8e15cf7e6e230664cea85a6ddf492f766fe;hpb=9e9712735fb1522f4f081a9e38c38c4d91a09c51 diff --git a/src/rcfile.c b/src/rcfile.c index 6afadddb..52aa2b90 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -1,13 +1,22 @@ /* - * Geeqie - * (C) 2006 John Ellis - * Copyright (C) 2008 - 2009 The Geeqie Team + * Copyright (C) 2006 John Ellis + * Copyright (C) 2008 - 2016 The Geeqie Team * * Author: John Ellis * - * This software is released under the GNU General Public License (GNU GPL). - * Please read the included file COPYING for more information. - * This software comes with no warranty of any kind, use at your own risk! + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -21,6 +30,7 @@ #include "bar_exif.h" #include "bar_histogram.h" #include "bar_keywords.h" +#include "bar_sort.h" #include "editors.h" #include "filefilter.h" #include "misc.h" @@ -31,6 +41,9 @@ #include "layout.h" #include "layout_util.h" #include "bar.h" +#include "metadata.h" +#include "bar_gps.h" +#include "dupe.h" /* @@ -41,24 +54,52 @@ void write_indent(GString *str, gint indent) { - g_string_append_printf(str, "%*s", indent * 4, ""); + g_string_append_printf(str, "\n%*s", indent * 4, ""); } void write_char_option(GString *str, gint indent, const gchar *label, const gchar *text) { - gchar *escval = g_markup_escape_text(text ? text : "", -1); - write_indent(str, indent); - g_string_append_printf(str, "%s = \"%s\"\n", label, escval); - g_free(escval); + /* this is needed for overlay string, because g_markup_escape_text does not handle \n and such, + ideas for improvement are welcome + */ + static const unsigned char no_quote_utf[] = { + 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, + 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, + 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, + 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, + 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, + 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, + 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, + 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, + 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, + 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, + 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, + '"', 0 /* '"' is handled in g_markup_escape_text */ + }; + + gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf); + gchar *escval2 = g_markup_escape_text(escval1, -1); + g_string_append_printf(str, "%s = \"%s\" ", label, escval2); + g_free(escval2); + g_free(escval1); +} + +/* dummy read for old/obsolete/futur/deprecated/unused options */ +gboolean read_dummy_option(const gchar *option, const gchar *label, const gchar *message) +{ + if (g_ascii_strcasecmp(option, label) != 0) return FALSE; + log_printf(_("Option %s ignored: %s\n"), option, message); + return TRUE; } + gboolean read_char_option(const gchar *option, const gchar *label, const gchar *value, gchar **text) { if (g_ascii_strcasecmp(option, label) != 0) return FALSE; if (!text) return FALSE; g_free(*text); - *text = g_strdup(value); + *text = g_strcompress(value); return TRUE; } @@ -94,8 +135,7 @@ gboolean read_color_option(const gchar *option, const gchar *label, const gchar void write_int_option(GString *str, gint indent, const gchar *label, gint n) { - write_indent(str, indent); - g_string_append_printf(str, "%s = \"%d\"\n", label, n); + g_string_append_printf(str, "%s = \"%d\" ", label, n); } gboolean read_int_option(const gchar *option, const gchar *label, const gchar *value, gint *n) @@ -118,10 +158,34 @@ gboolean read_int_option(const gchar *option, const gchar *label, const gchar *v return TRUE; } +void write_ushort_option(GString *str, gint indent, const gchar *label, guint16 n) +{ + g_string_append_printf(str, "%s = \"%uh\" ", label, n); +} + +gboolean read_ushort_option(const gchar *option, const gchar *label, const gchar *value, guint16 *n) +{ + if (g_ascii_strcasecmp(option, label) != 0) return FALSE; + if (!n) return FALSE; + + if (g_ascii_isdigit(value[0])) + { + *n = strtoul(value, NULL, 10); + } + else + { + if (g_ascii_strcasecmp(value, "true") == 0) + *n = 1; + else + *n = 0; + } + + return TRUE; +} + void write_uint_option(GString *str, gint indent, const gchar *label, guint n) { - write_indent(str, indent); - g_string_append_printf(str, "%s = \"%u\"\n", label, n); + g_string_append_printf(str, "%s = \"%u\" ", label, n); } gboolean read_uint_option(const gchar *option, const gchar *label, const gchar *value, guint *n) @@ -140,7 +204,7 @@ gboolean read_uint_option(const gchar *option, const gchar *label, const gchar * else *n = 0; } - + return TRUE; } @@ -180,8 +244,7 @@ void write_int_unit_option(GString *str, gint indent, gchar *label, gint n, gint r = 0; } - write_indent(str, indent); - g_string_append_printf(str, "%s = \"%d.%d\"\n", label, l, r); + g_string_append_printf(str, "%s = \"%d.%d\" ", label, l, r); } gboolean read_int_unit_option(const gchar *option, const gchar *label, const gchar *value, gint *n, gint subunits) @@ -211,14 +274,13 @@ gboolean read_int_unit_option(const gchar *option, const gchar *label, const gch *n = l * subunits + r; g_free(buf); - + return TRUE; } void write_bool_option(GString *str, gint indent, gchar *label, gint n) { - write_indent(str, indent); - g_string_append_printf(str, "%s = \"%s\"\n", label, n ? "true" : "false"); + g_string_append_printf(str, "%s = \"%s\" ", label, n ? "true" : "false"); } gboolean read_bool_option(const gchar *option, const gchar *label, const gchar *value, gint *n) @@ -242,201 +304,164 @@ gboolean read_bool_option(const gchar *option, const gchar *label, const gchar * static void write_global_attributes(GString *outstr, gint indent) { -// WRITE_SUBTITLE("General Options"); - - WRITE_BOOL(*options, show_icon_names); - WRITE_BOOL(*options, show_copy_path); + /* General Options */ + WRITE_NL(); WRITE_BOOL(*options, show_icon_names); WRITE_SEPARATOR(); - WRITE_BOOL(*options, tree_descend_subdirs); - WRITE_BOOL(*options, lazy_image_sync); - WRITE_BOOL(*options, update_on_time_change); + WRITE_NL(); WRITE_BOOL(*options, tree_descend_subdirs); + WRITE_NL(); WRITE_BOOL(*options, view_dir_list_single_click_enter); + WRITE_NL(); WRITE_BOOL(*options, lazy_image_sync); + WRITE_NL(); WRITE_BOOL(*options, update_on_time_change); WRITE_SEPARATOR(); - WRITE_BOOL(*options, progressive_key_scrolling); + WRITE_NL(); WRITE_BOOL(*options, progressive_key_scrolling); + WRITE_NL(); WRITE_UINT(*options, keyboard_scroll_step); - WRITE_UINT(*options, duplicates_similarity_threshold); + WRITE_NL(); WRITE_UINT(*options, duplicates_similarity_threshold); + WRITE_NL(); WRITE_UINT(*options, duplicates_match); + WRITE_NL(); WRITE_UINT(*options, duplicates_select_type); + WRITE_NL(); WRITE_BOOL(*options, duplicates_thumbnails); + WRITE_NL(); WRITE_BOOL(*options, rot_invariant_sim); WRITE_SEPARATOR(); - WRITE_BOOL(*options, mousewheel_scrolls); - WRITE_INT(*options, open_recent_list_maxsize); - WRITE_INT(*options, dnd_icon_size); - WRITE_BOOL(*options, place_dialogs_under_mouse); - - -// WRITE_SUBTITLE("Startup Options"); - - WRITE_BOOL(*options, startup.restore_path); - WRITE_BOOL(*options, startup.use_last_path); - WRITE_CHAR(*options, startup.path); - - -// WRITE_SUBTITLE("File operations Options"); - - WRITE_BOOL(*options, file_ops.enable_in_place_rename); - WRITE_BOOL(*options, file_ops.confirm_delete); - WRITE_BOOL(*options, file_ops.enable_delete_key); - WRITE_BOOL(*options, file_ops.safe_delete_enable); - WRITE_CHAR(*options, file_ops.safe_delete_path); - WRITE_INT(*options, file_ops.safe_delete_folder_maxsize); - + WRITE_NL(); WRITE_BOOL(*options, mousewheel_scrolls); + WRITE_NL(); WRITE_BOOL(*options, image_lm_click_nav); + WRITE_NL(); WRITE_INT(*options, open_recent_list_maxsize); + WRITE_NL(); WRITE_INT(*options, dnd_icon_size); + WRITE_NL(); WRITE_BOOL(*options, place_dialogs_under_mouse); + WRITE_NL(); WRITE_BOOL(*options, save_window_positions); + WRITE_NL(); WRITE_BOOL(*options, use_saved_window_positions_for_new_windows); + WRITE_NL(); WRITE_BOOL(*options, tools_restore_state); + /* File operations Options */ + WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_in_place_rename); + WRITE_NL(); WRITE_BOOL(*options, file_ops.confirm_delete); + WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_delete_key); + WRITE_NL(); WRITE_BOOL(*options, file_ops.safe_delete_enable); + WRITE_NL(); WRITE_CHAR(*options, file_ops.safe_delete_path); + WRITE_NL(); WRITE_INT(*options, file_ops.safe_delete_folder_maxsize); -// WRITE_SUBTITLE("Properties dialog Options"); - WRITE_CHAR(*options, properties.tabs_order); + /* Properties dialog Options */ + WRITE_NL(); WRITE_CHAR(*options, properties.tabs_order); -// WRITE_SUBTITLE("Image Options"); + /* Image Options */ + WRITE_NL(); WRITE_UINT(*options, image.zoom_mode); - WRITE_UINT(*options, image.zoom_mode); - -// g_string_append_printf(outstr, "# image.zoom_mode possible values are:\n" -// "# original\n" -// "# fit\n" -// "# dont_change\n"); -// g_string_append_printf(outstr, "image.zoom_mode: "); -// switch (options->image.zoom_mode) -// { -// case ZOOM_RESET_ORIGINAL: g_string_append_printf(outstr, "original\n"); break; -// case ZOOM_RESET_FIT_WINDOW: g_string_append_printf(outstr, "fit\n"); break; -// case ZOOM_RESET_NONE: g_string_append_printf(outstr, "dont_change\n"); break; -// } - WRITE_SEPARATOR(); - WRITE_BOOL(*options, image.zoom_2pass); - WRITE_BOOL(*options, image.zoom_to_fit_allow_expand); - WRITE_UINT(*options, image.zoom_quality); - WRITE_INT(*options, image.zoom_increment); - WRITE_BOOL(*options, image.fit_window_to_image); - WRITE_BOOL(*options, image.limit_window_size); - WRITE_INT(*options, image.max_window_size); - WRITE_BOOL(*options, image.limit_autofit_size); - WRITE_INT(*options, image.max_autofit_size); - WRITE_UINT(*options, image.scroll_reset_method); - WRITE_INT(*options, image.tile_cache_max); - WRITE_INT(*options, image.image_cache_max); - WRITE_UINT(*options, image.dither_quality); - WRITE_BOOL(*options, image.enable_read_ahead); - WRITE_BOOL(*options, image.exif_rotate_enable); - WRITE_BOOL(*options, image.use_custom_border_color); - WRITE_COLOR(*options, image.border_color); - WRITE_INT(*options, image.read_buffer_size); - WRITE_INT(*options, image.idle_read_loop_count); - -// WRITE_SUBTITLE("Thumbnails Options"); - - WRITE_INT(*options, thumbnails.max_width); - WRITE_INT(*options, thumbnails.max_height); - WRITE_BOOL(*options, thumbnails.enable_caching); - WRITE_BOOL(*options, thumbnails.cache_into_dirs); - WRITE_BOOL(*options, thumbnails.fast); - WRITE_BOOL(*options, thumbnails.use_xvpics); - WRITE_BOOL(*options, thumbnails.spec_standard); - WRITE_UINT(*options, thumbnails.quality); - WRITE_BOOL(*options, thumbnails.use_exif); - - -// WRITE_SUBTITLE("File sorting Options"); - - WRITE_INT(*options, file_sort.method); - WRITE_BOOL(*options, file_sort.ascending); - WRITE_BOOL(*options, file_sort.case_sensitive); - - -// WRITE_SUBTITLE("Fullscreen Options"); - - WRITE_INT(*options, fullscreen.screen); - WRITE_BOOL(*options, fullscreen.clean_flip); - WRITE_BOOL(*options, fullscreen.disable_saver); - WRITE_BOOL(*options, fullscreen.above); - - -// WRITE_SUBTITLE("Histogram Options"); - WRITE_UINT(*options, histogram.last_channel_mode); - WRITE_UINT(*options, histogram.last_log_mode); - - -// WRITE_SUBTITLE("Image Overlay Options"); - WRITE_UINT(*options, image_overlay.common.state); - WRITE_BOOL(*options, image_overlay.common.show_at_startup); - WRITE_CHAR(*options, image_overlay.common.template_string); WRITE_SEPARATOR(); + WRITE_NL(); WRITE_BOOL(*options, image.zoom_2pass); + WRITE_NL(); WRITE_BOOL(*options, image.zoom_to_fit_allow_expand); + WRITE_NL(); WRITE_UINT(*options, image.zoom_quality); + WRITE_NL(); WRITE_INT(*options, image.zoom_increment); + WRITE_NL(); WRITE_BOOL(*options, image.fit_window_to_image); + WRITE_NL(); WRITE_BOOL(*options, image.limit_window_size); + WRITE_NL(); WRITE_INT(*options, image.max_window_size); + WRITE_NL(); WRITE_BOOL(*options, image.limit_autofit_size); + WRITE_NL(); WRITE_INT(*options, image.max_autofit_size); + WRITE_NL(); WRITE_INT(*options, image.max_enlargement_size); + WRITE_NL(); WRITE_UINT(*options, image.scroll_reset_method); + WRITE_NL(); WRITE_INT(*options, image.tile_cache_max); + WRITE_NL(); WRITE_INT(*options, image.image_cache_max); + WRITE_NL(); WRITE_BOOL(*options, image.enable_read_ahead); + WRITE_NL(); WRITE_BOOL(*options, image.exif_rotate_enable); + WRITE_NL(); WRITE_BOOL(*options, image.use_custom_border_color); + WRITE_NL(); WRITE_BOOL(*options, image.use_custom_border_color_in_fullscreen); + WRITE_NL(); WRITE_COLOR(*options, image.border_color); + WRITE_NL(); WRITE_COLOR(*options, image.alpha_color_1); + WRITE_NL(); WRITE_COLOR(*options, image.alpha_color_2); + WRITE_NL(); WRITE_BOOL(*options, image.use_clutter_renderer); + + /* Thumbnails Options */ + WRITE_NL(); WRITE_INT(*options, thumbnails.max_width); + WRITE_NL(); WRITE_INT(*options, thumbnails.max_height); + WRITE_NL(); WRITE_BOOL(*options, thumbnails.enable_caching); + WRITE_NL(); WRITE_BOOL(*options, thumbnails.cache_into_dirs); + WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_xvpics); + WRITE_NL(); WRITE_BOOL(*options, thumbnails.spec_standard); + WRITE_NL(); WRITE_UINT(*options, thumbnails.quality); + WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_exif); + + /* File sorting Options */ + WRITE_NL(); WRITE_INT(*options, file_sort.method); + WRITE_NL(); WRITE_BOOL(*options, file_sort.ascending); + WRITE_NL(); WRITE_BOOL(*options, file_sort.case_sensitive); + WRITE_NL(); WRITE_BOOL(*options, file_sort.natural); + + /* Fullscreen Options */ + WRITE_NL(); WRITE_INT(*options, fullscreen.screen); + WRITE_NL(); WRITE_BOOL(*options, fullscreen.clean_flip); + WRITE_NL(); WRITE_BOOL(*options, fullscreen.disable_saver); + WRITE_NL(); WRITE_BOOL(*options, fullscreen.above); -// g_string_append_printf(outstr, "# these are relative positions:\n"); -// g_string_append_printf(outstr, "# x >= 0: |x| pixels from left border\n"); -// g_string_append_printf(outstr, "# x < 0 : |x| pixels from right border\n"); -// g_string_append_printf(outstr, "# y >= 0: |y| pixels from top border\n"); -// g_string_append_printf(outstr, "# y < 0 : |y| pixels from bottom border\n"); - WRITE_INT(*options, image_overlay.common.x); - WRITE_INT(*options, image_overlay.common.y); - - -// WRITE_SUBTITLE("Slideshow Options"); - - WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION); - WRITE_BOOL(*options, slideshow.random); - WRITE_BOOL(*options, slideshow.repeat); - - -// WRITE_SUBTITLE("Collection Options"); - - WRITE_BOOL(*options, collections.rectangular_selection); - - -// WRITE_SUBTITLE("Filtering Options"); - - WRITE_BOOL(*options, file_filter.show_hidden_files); - WRITE_BOOL(*options, file_filter.show_dot_directory); - WRITE_BOOL(*options, file_filter.disable); WRITE_SEPARATOR(); + /* Image Overlay Options */ + WRITE_NL(); WRITE_CHAR(*options, image_overlay.template_string); + + WRITE_NL(); WRITE_INT(*options, image_overlay.x); + WRITE_NL(); WRITE_INT(*options, image_overlay.y); + WRITE_NL(); WRITE_INT(*options, image_overlay.text_red); + WRITE_NL(); WRITE_INT(*options, image_overlay.text_green); + WRITE_NL(); WRITE_INT(*options, image_overlay.text_blue); + WRITE_NL(); WRITE_INT(*options, image_overlay.text_alpha); + WRITE_NL(); WRITE_INT(*options, image_overlay.background_red); + WRITE_NL(); WRITE_INT(*options, image_overlay.background_green); + WRITE_NL(); WRITE_INT(*options, image_overlay.background_blue); + WRITE_NL(); WRITE_INT(*options, image_overlay.background_alpha); + WRITE_NL(); WRITE_CHAR(*options, image_overlay.font); + + /* Slideshow Options */ + WRITE_NL(); WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION); + WRITE_NL(); WRITE_BOOL(*options, slideshow.random); + WRITE_NL(); WRITE_BOOL(*options, slideshow.repeat); + + /* Collection Options */ + WRITE_NL(); WRITE_BOOL(*options, collections.rectangular_selection); + + /* Filtering Options */ + WRITE_NL(); WRITE_BOOL(*options, file_filter.show_hidden_files); + WRITE_NL(); WRITE_BOOL(*options, file_filter.show_parent_directory); + WRITE_NL(); WRITE_BOOL(*options, file_filter.show_dot_directory); + WRITE_NL(); WRITE_BOOL(*options, file_filter.disable_file_extension_checks); + WRITE_NL(); WRITE_BOOL(*options, file_filter.disable); + WRITE_SEPARATOR(); -// WRITE_SUBTITLE("Sidecars Options"); - - WRITE_CHAR(*options, sidecar.ext); - - - -// WRITE_SUBTITLE("Shell command"); - WRITE_CHAR(*options, shell.path); - WRITE_CHAR(*options, shell.options); - - -// WRITE_SUBTITLE("Helpers"); -// g_string_append_printf(outstr, "# Html browser\n"); -// g_string_append_printf(outstr, "# command_name is: the binary's name to look for in the path\n"); -// g_string_append_printf(outstr, "# If command_name is empty, the program will try various common html browsers\n"); -// g_string_append_printf(outstr, "# command_line is:\n"); -// g_string_append_printf(outstr, "# \"\" (empty string) = execute binary with html file path as command line\n"); -// g_string_append_printf(outstr, "# \"string\" = execute string and use results for command line\n"); -// g_string_append_printf(outstr, "# \"!string\" = use text following ! as command line, replacing optional %%s with html file path\n"); - WRITE_CHAR(*options, helpers.html_browser.command_name); - WRITE_CHAR(*options, helpers.html_browser.command_line); - -/* FIXME: - WRITE_SUBTITLE("Exif Options"); - g_string_append_printf(outstr, "# Display: 0: never\n" - "# 1: if set\n" - "# 2: always\n\n"); - for (i = 0; ExifUIList[i].key; i++) - { - g_string_append_printf(outstr, "exif.display."); - write_int_option(outstr, 2, (gchar *)ExifUIList[i].key, ExifUIList[i].current); - } -*/ - -// WRITE_SUBTITLE("Metadata Options"); - WRITE_BOOL(*options, metadata.enable_metadata_dirs); - WRITE_BOOL(*options, metadata.save_in_image_file); - WRITE_BOOL(*options, metadata.save_legacy_IPTC); - WRITE_BOOL(*options, metadata.warn_on_write_problems); - WRITE_BOOL(*options, metadata.save_legacy_format); - WRITE_BOOL(*options, metadata.sync_grouped_files); - WRITE_BOOL(*options, metadata.confirm_write); - WRITE_INT(*options, metadata.confirm_timeout); - WRITE_BOOL(*options, metadata.confirm_after_timeout); - WRITE_BOOL(*options, metadata.confirm_on_image_change); - WRITE_BOOL(*options, metadata.confirm_on_dir_change); - + /* Sidecars Options */ + WRITE_NL(); WRITE_CHAR(*options, sidecar.ext); + + /* Shell command */ + WRITE_NL(); WRITE_CHAR(*options, shell.path); + WRITE_NL(); WRITE_CHAR(*options, shell.options); + + /* Helpers */ + WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_name); + WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_line); + + /* Metadata Options */ + WRITE_NL(); WRITE_BOOL(*options, metadata.enable_metadata_dirs); + WRITE_NL(); WRITE_BOOL(*options, metadata.save_in_image_file); + WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_IPTC); + WRITE_NL(); WRITE_BOOL(*options, metadata.warn_on_write_problems); + WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_format); + WRITE_NL(); WRITE_BOOL(*options, metadata.sync_grouped_files); + WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_write); + WRITE_NL(); WRITE_BOOL(*options, metadata.sidecar_extended_name); + WRITE_NL(); WRITE_INT(*options, metadata.confirm_timeout); + WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_after_timeout); + WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_image_change); + WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_dir_change); + WRITE_NL(); WRITE_BOOL(*options, metadata.keywords_case_sensitive); + WRITE_NL(); WRITE_BOOL(*options, metadata.write_orientation); + + WRITE_NL(); WRITE_INT(*options, stereo.mode); + WRITE_NL(); WRITE_INT(*options, stereo.fsmode); + WRITE_NL(); WRITE_BOOL(*options, stereo.enable_fsmode); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_w); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_h); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_x1); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_y1); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_x2); + WRITE_NL(); WRITE_INT(*options, stereo.fixed_y2); } static void write_color_profile(GString *outstr, gint indent) @@ -447,33 +472,25 @@ static void write_color_profile(GString *outstr, gint indent) " color profile options will have no effect.\n-->\n", GQ_APPNAME); #endif - write_indent(outstr, indent); - g_string_append_printf(outstr, "color_profile, screen_type); + WRITE_NL(); WRITE_STRING("color_profile, screen_file); WRITE_BOOL(options->color_profile, enabled); WRITE_BOOL(options->color_profile, use_image); WRITE_INT(options->color_profile, input_type); - indent--; - write_indent(outstr, indent); - g_string_append_printf(outstr, ">\n"); + WRITE_BOOL(options->color_profile, use_x11_screen_profile); + WRITE_INT(options->color_profile, render_intent); + WRITE_STRING(">"); indent++; for (i = 0; i < COLOR_PROFILE_INPUTS; i++) { - write_indent(outstr, indent); - g_string_append_printf(outstr, "color_profile.input_file[i]); write_char_option(outstr, indent, "input_name", options->color_profile.input_name[i]); - indent--; - write_indent(outstr, indent); - g_string_append_printf(outstr, "/>\n"); + WRITE_STRING("/>"); } indent--; - write_indent(outstr, indent); - g_string_append_printf(outstr, "\n"); + WRITE_NL(); WRITE_STRING(""); } @@ -483,14 +500,14 @@ static void write_color_profile(GString *outstr, gint indent) *----------------------------------------------------------------------------- */ -gboolean save_options_to(const gchar *utf8_path, ConfOptions *options) +gboolean save_config_to_file(const gchar *utf8_path, ConfOptions *options) { SecureSaveInfo *ssi; gchar *rc_pathl; GString *outstr; gint indent = 0; GList *work; - + rc_pathl = path_from_utf8(utf8_path); ssi = secure_open(rc_pathl); g_free(rc_pathl); @@ -507,16 +524,22 @@ gboolean save_options_to(const gchar *utf8_path, ConfOptions *options) g_string_append_printf(outstr, "######################################################################\n"); WRITE_SEPARATOR(); - g_string_append_printf(outstr, "# Note: This file is autogenerated. Options can be changed here,\n"); - g_string_append_printf(outstr, "# but user comments and formatting will be lost.\n"); + WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n"); + WRITE_STRING("# but user comments and formatting will be lost.\n"); WRITE_SEPARATOR(); - g_string_append_printf(outstr, "-->\n"); + WRITE_STRING("-->\n"); WRITE_SEPARATOR(); - g_string_append_printf(outstr, "\n"); + indent++; + + WRITE_NL(); WRITE_STRING("\n"); + indent++; - write_global_attributes(outstr, indent); - write_indent(outstr, indent); - g_string_append_printf(outstr, ">\n"); write_color_profile(outstr, indent); @@ -524,29 +547,24 @@ gboolean save_options_to(const gchar *utf8_path, ConfOptions *options) filter_write_list(outstr, indent); WRITE_SEPARATOR(); - WRITE_SUBTITLE("Layout Options - defaults"); - write_indent(outstr, indent); - g_string_append_printf(outstr, "layout, outstr, indent + 1); - write_indent(outstr, indent); - g_string_append_printf(outstr, "/>\n"); - + keyword_tree_write_config(outstr, indent); indent--; - g_string_append_printf(outstr, "\n"); + WRITE_NL(); WRITE_STRING("\n"); WRITE_SEPARATOR(); - WRITE_SUBTITLE("Layout Options"); + /* Layout Options */ work = layout_window_list; while (work) { LayoutWindow *lw = work->data; layout_write_config(lw, outstr, indent); work = work->next; - } - + indent--; + WRITE_NL(); WRITE_STRING("\n"); + WRITE_SEPARATOR(); secure_fputs(ssi, outstr->str); g_string_free(outstr, TRUE); @@ -575,153 +593,163 @@ static gboolean load_global_params(const gchar **attribute_names, const gchar ** const gchar *option = *attribute_names++; const gchar *value = *attribute_values++; - - /* general options */ - READ_BOOL(*options, show_icon_names); - READ_BOOL(*options, show_copy_path); - - READ_BOOL(*options, tree_descend_subdirs); - READ_BOOL(*options, lazy_image_sync); - READ_BOOL(*options, update_on_time_change); - - READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100); - - READ_BOOL(*options, progressive_key_scrolling); - - READ_BOOL(*options, mousewheel_scrolls); - - READ_INT(*options, open_recent_list_maxsize); - READ_INT(*options, dnd_icon_size); - READ_BOOL(*options, place_dialogs_under_mouse); - - /* startup options */ - - READ_BOOL(*options, startup.restore_path); - - READ_BOOL(*options, startup.use_last_path); - - READ_CHAR(*options, startup.path); - - - /* properties dialog options */ - READ_CHAR(*options, properties.tabs_order); - - /* image options */ - READ_UINT_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE); - READ_BOOL(*options, image.zoom_2pass); - READ_BOOL(*options, image.zoom_to_fit_allow_expand); - READ_BOOL(*options, image.fit_window_to_image); - READ_BOOL(*options, image.limit_window_size); - READ_INT(*options, image.max_window_size); - READ_BOOL(*options, image.limit_autofit_size); - READ_INT(*options, image.max_autofit_size); - READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1); - READ_INT(*options, image.tile_cache_max); - READ_INT(*options, image.image_cache_max); - READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER); - READ_UINT_CLAMP(*options, image.dither_quality, GDK_RGB_DITHER_NONE, GDK_RGB_DITHER_MAX); - READ_INT(*options, image.zoom_increment); - READ_BOOL(*options, image.enable_read_ahead); - READ_BOOL(*options, image.exif_rotate_enable); - READ_BOOL(*options, image.use_custom_border_color); - READ_COLOR(*options, image.border_color); - READ_INT_CLAMP(*options, image.read_buffer_size, IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX); - READ_INT_CLAMP(*options, image.idle_read_loop_count, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX); - - - /* thumbnails options */ - READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512); - READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512); - - READ_BOOL(*options, thumbnails.enable_caching); - READ_BOOL(*options, thumbnails.cache_into_dirs); - READ_BOOL(*options, thumbnails.fast); - READ_BOOL(*options, thumbnails.use_xvpics); - READ_BOOL(*options, thumbnails.spec_standard); - READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER); - READ_BOOL(*options, thumbnails.use_exif); - - /* file sorting options */ - READ_UINT(*options, file_sort.method); - READ_BOOL(*options, file_sort.ascending); - READ_BOOL(*options, file_sort.case_sensitive); - - /* file operations *options */ - READ_BOOL(*options, file_ops.enable_in_place_rename); - READ_BOOL(*options, file_ops.confirm_delete); - READ_BOOL(*options, file_ops.enable_delete_key); - READ_BOOL(*options, file_ops.safe_delete_enable); - READ_CHAR(*options, file_ops.safe_delete_path); - READ_INT(*options, file_ops.safe_delete_folder_maxsize); - - /* fullscreen options */ - READ_INT(*options, fullscreen.screen); - READ_BOOL(*options, fullscreen.clean_flip); - READ_BOOL(*options, fullscreen.disable_saver); - READ_BOOL(*options, fullscreen.above); - - /* histogram */ - READ_UINT(*options, histogram.last_channel_mode); - READ_UINT(*options, histogram.last_log_mode); - - /* image overlay */ - READ_UINT(*options, image_overlay.common.state); - READ_BOOL(*options, image_overlay.common.show_at_startup); - READ_CHAR(*options, image_overlay.common.template_string); - - READ_INT(*options, image_overlay.common.x); - READ_INT(*options, image_overlay.common.y); - - - /* slideshow options */ - READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION); - READ_BOOL(*options, slideshow.random); - READ_BOOL(*options, slideshow.repeat); - - /* collection options */ - - READ_BOOL(*options, collections.rectangular_selection); - - /* filtering options */ - - READ_BOOL(*options, file_filter.show_hidden_files); - READ_BOOL(*options, file_filter.show_dot_directory); - READ_BOOL(*options, file_filter.disable); - READ_CHAR(*options, sidecar.ext); + /* General options */ + if (READ_BOOL(*options, show_icon_names)) continue; + + if (READ_BOOL(*options, tree_descend_subdirs)) continue; + if (READ_BOOL(*options, view_dir_list_single_click_enter)) continue; + if (READ_BOOL(*options, lazy_image_sync)) continue; + if (READ_BOOL(*options, update_on_time_change)) continue; + + if (READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100)) continue; + if (READ_UINT_CLAMP(*options, duplicates_match, 0, DUPE_MATCH_NAME_CI)) continue; + if (READ_UINT_CLAMP(*options, duplicates_select_type, 0, DUPE_SELECT_GROUP2)) continue; + if (READ_BOOL(*options, duplicates_thumbnails)) continue; + if (READ_BOOL(*options, rot_invariant_sim)) continue; + + if (READ_BOOL(*options, progressive_key_scrolling)) continue; + if (READ_UINT_CLAMP(*options, keyboard_scroll_step, 1, 32)) continue; + + if (READ_BOOL(*options, mousewheel_scrolls)) continue; + if (READ_BOOL(*options, image_lm_click_nav)) continue; + + if (READ_INT(*options, open_recent_list_maxsize)) continue; + if (READ_INT(*options, dnd_icon_size)) continue; + if (READ_BOOL(*options, place_dialogs_under_mouse)) continue; + + if (READ_BOOL(*options, save_window_positions)) continue; + if (READ_BOOL(*options, use_saved_window_positions_for_new_windows)) continue; + if (READ_BOOL(*options, tools_restore_state)) continue; + + /* Properties dialog options */ + if (READ_CHAR(*options, properties.tabs_order)) continue; + + /* Image options */ + if (READ_UINT_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE)) continue; + if (READ_BOOL(*options, image.zoom_2pass)) continue; + if (READ_BOOL(*options, image.zoom_to_fit_allow_expand)) continue; + if (READ_BOOL(*options, image.fit_window_to_image)) continue; + if (READ_BOOL(*options, image.limit_window_size)) continue; + if (READ_INT(*options, image.max_window_size)) continue; + if (READ_BOOL(*options, image.limit_autofit_size)) continue; + if (READ_INT(*options, image.max_autofit_size)) continue; + if (READ_INT(*options, image.max_enlargement_size)) continue; + if (READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1)) continue; + if (READ_INT(*options, image.tile_cache_max)) continue; + if (READ_INT(*options, image.image_cache_max)) continue; + if (READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue; + if (READ_INT(*options, image.zoom_increment)) continue; + if (READ_BOOL(*options, image.enable_read_ahead)) continue; + if (READ_BOOL(*options, image.exif_rotate_enable)) continue; + if (READ_BOOL(*options, image.use_custom_border_color)) continue; + if (READ_BOOL(*options, image.use_custom_border_color_in_fullscreen)) continue; + if (READ_COLOR(*options, image.border_color)) continue; + if (READ_COLOR(*options, image.alpha_color_1)) continue; + if (READ_COLOR(*options, image.alpha_color_2)) continue; + if (READ_BOOL(*options, image.use_clutter_renderer)) continue; + + /* Thumbnails options */ + if (READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512)) continue; + if (READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512)) continue; + + if (READ_BOOL(*options, thumbnails.enable_caching)) continue; + if (READ_BOOL(*options, thumbnails.cache_into_dirs)) continue; + if (READ_BOOL(*options, thumbnails.use_xvpics)) continue; + if (READ_BOOL(*options, thumbnails.spec_standard)) continue; + if (READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue; + if (READ_BOOL(*options, thumbnails.use_exif)) continue; + + /* File sorting options */ + if (READ_UINT(*options, file_sort.method)) continue; + if (READ_BOOL(*options, file_sort.ascending)) continue; + if (READ_BOOL(*options, file_sort.case_sensitive)) continue; + if (READ_BOOL(*options, file_sort.natural)) continue; + + /* File operations *options */ + if (READ_BOOL(*options, file_ops.enable_in_place_rename)) continue; + if (READ_BOOL(*options, file_ops.confirm_delete)) continue; + if (READ_BOOL(*options, file_ops.enable_delete_key)) continue; + if (READ_BOOL(*options, file_ops.safe_delete_enable)) continue; + if (READ_CHAR(*options, file_ops.safe_delete_path)) continue; + if (READ_INT(*options, file_ops.safe_delete_folder_maxsize)) continue; + + /* Fullscreen options */ + if (READ_INT(*options, fullscreen.screen)) continue; + if (READ_BOOL(*options, fullscreen.clean_flip)) continue; + if (READ_BOOL(*options, fullscreen.disable_saver)) continue; + if (READ_BOOL(*options, fullscreen.above)) continue; + + /* Image overlay */ + if (READ_CHAR(*options, image_overlay.template_string)) continue; + if (READ_INT(*options, image_overlay.x)) continue; + if (READ_INT(*options, image_overlay.y)) continue; + if (READ_USHORT(*options, image_overlay.text_red)) continue; + if (READ_USHORT(*options, image_overlay.text_green)) continue; + if (READ_USHORT(*options, image_overlay.text_blue)) continue; + if (READ_USHORT(*options, image_overlay.text_alpha)) continue; + if (READ_USHORT(*options, image_overlay.background_red)) continue; + if (READ_USHORT(*options, image_overlay.background_green)) continue; + if (READ_USHORT(*options, image_overlay.background_blue)) continue; + if (READ_USHORT(*options, image_overlay.background_alpha)) continue; + if (READ_CHAR(*options, image_overlay.font)) continue; + + /* Slideshow options */ + if (READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION)) continue; + if (READ_BOOL(*options, slideshow.random)) continue; + if (READ_BOOL(*options, slideshow.repeat)) continue; + + /* Collection options */ + if (READ_BOOL(*options, collections.rectangular_selection)) continue; + + /* Filtering options */ + if (READ_BOOL(*options, file_filter.show_hidden_files)) continue; + if (READ_BOOL(*options, file_filter.show_parent_directory)) continue; + if (READ_BOOL(*options, file_filter.show_dot_directory)) continue; + if (READ_BOOL(*options, file_filter.disable_file_extension_checks)) continue; + if (READ_BOOL(*options, file_filter.disable)) continue; + if (READ_CHAR(*options, sidecar.ext)) continue; /* Color Profiles */ /* Shell command */ - READ_CHAR(*options, shell.path); - READ_CHAR(*options, shell.options); + if (READ_CHAR(*options, shell.path)) continue; + if (READ_CHAR(*options, shell.options)) continue; /* Helpers */ - READ_CHAR(*options, helpers.html_browser.command_name); - READ_CHAR(*options, helpers.html_browser.command_line); - /* Exif */ -/* - if (0 == g_ascii_strncasecmp(option, "exif.display.", 13)) - { - for (i = 0; ExifUIList[i].key; i++) - if (0 == g_ascii_strcasecmp(option + 13, ExifUIList[i].key)) - ExifUIList[i].current = strtol(value, NULL, 10); - continue; - } -*/ - /* metadata */ - READ_BOOL(*options, metadata.enable_metadata_dirs); - READ_BOOL(*options, metadata.save_in_image_file); - READ_BOOL(*options, metadata.save_legacy_IPTC); - READ_BOOL(*options, metadata.warn_on_write_problems); - READ_BOOL(*options, metadata.save_legacy_format); - READ_BOOL(*options, metadata.sync_grouped_files); - READ_BOOL(*options, metadata.confirm_write); - READ_BOOL(*options, metadata.confirm_after_timeout); - READ_INT(*options, metadata.confirm_timeout); - READ_BOOL(*options, metadata.confirm_on_image_change); - READ_BOOL(*options, metadata.confirm_on_dir_change); - - DEBUG_1("unknown attribute %s = %s", option, value); + if (READ_CHAR(*options, helpers.html_browser.command_name)) continue; + if (READ_CHAR(*options, helpers.html_browser.command_line)) continue; + + /* Metadata */ + if (READ_BOOL(*options, metadata.enable_metadata_dirs)) continue; + if (READ_BOOL(*options, metadata.save_in_image_file)) continue; + if (READ_BOOL(*options, metadata.save_legacy_IPTC)) continue; + if (READ_BOOL(*options, metadata.warn_on_write_problems)) continue; + if (READ_BOOL(*options, metadata.save_legacy_format)) continue; + if (READ_BOOL(*options, metadata.sync_grouped_files)) continue; + if (READ_BOOL(*options, metadata.confirm_write)) continue; + if (READ_BOOL(*options, metadata.sidecar_extended_name)) continue; + if (READ_BOOL(*options, metadata.confirm_after_timeout)) continue; + if (READ_INT(*options, metadata.confirm_timeout)) continue; + if (READ_BOOL(*options, metadata.confirm_on_image_change)) continue; + if (READ_BOOL(*options, metadata.confirm_on_dir_change)) continue; + if (READ_BOOL(*options, metadata.keywords_case_sensitive)) continue; + if (READ_BOOL(*options, metadata.write_orientation)) continue; + + if (READ_INT(*options, stereo.mode)) continue; + if (READ_INT(*options, stereo.fsmode)) continue; + if (READ_BOOL(*options, stereo.enable_fsmode)) continue; + if (READ_INT(*options, stereo.fixed_w)) continue; + if (READ_INT(*options, stereo.fixed_h)) continue; + if (READ_INT(*options, stereo.fixed_x1)) continue; + if (READ_INT(*options, stereo.fixed_y1)) continue; + if (READ_INT(*options, stereo.fixed_x2)) continue; + if (READ_INT(*options, stereo.fixed_y2)) continue; + + /* Dummy options */ + if (READ_DUMMY(*options, image.dither_quality, "deprecated since 2012-08-13")) continue; + + /* Unknown options */ + log_printf("unknown attribute %s = %s\n", option, value); } return TRUE; @@ -734,14 +762,14 @@ static void options_load_color_profiles(GQParserData *parser_data, GMarkupParseC const gchar *option = *attribute_names++; const gchar *value = *attribute_values++; + if (READ_BOOL(options->color_profile, enabled)) continue; + if (READ_BOOL(options->color_profile, use_image)) continue; + if (READ_INT(options->color_profile, input_type)) continue; + if (READ_CHAR(options->color_profile, screen_file)) continue; + if (READ_BOOL(options->color_profile, use_x11_screen_profile)) continue; + if (READ_INT(options->color_profile, render_intent)) continue; - READ_BOOL(options->color_profile, enabled); - READ_BOOL(options->color_profile, use_image); - READ_INT(options->color_profile, input_type); - READ_INT(options->color_profile, screen_type); - READ_CHAR(options->color_profile, screen_file); - - DEBUG_1("unknown attribute %s = %s", option, value); + log_printf("unknown attribute %s = %s\n", option, value); } } @@ -755,11 +783,10 @@ static void options_load_profile(GQParserData *parser_data, GMarkupParseContext const gchar *option = *attribute_names++; const gchar *value = *attribute_values++; - READ_CHAR_FULL("input_file", options->color_profile.input_file[i]); - READ_CHAR_FULL("input_name", options->color_profile.input_name[i]); - + if (READ_CHAR_FULL("input_file", options->color_profile.input_file[i])) continue; + if (READ_CHAR_FULL("input_name", options->color_profile.input_name[i])) continue; - DEBUG_1("unknown attribute %s = %s", option, value); + log_printf("unknown attribute %s = %s\n", option, value); } i++; options_parse_func_set_data(parser_data, GINT_TO_POINTER(i)); @@ -773,11 +800,29 @@ static void options_load_profile(GQParserData *parser_data, GMarkupParseContext * xml file structure (private) *----------------------------------------------------------------------------- */ +struct _GQParserData +{ + GList *parse_func_stack; + gboolean startup; /* reading config for the first time - add commandline and defaults */ +}; + +static const gchar *options_get_id(const gchar **attribute_names, const gchar **attribute_values) +{ + while (*attribute_names) + { + const gchar *option = *attribute_names++; + const gchar *value = *attribute_values++; + + if (strcmp(option, "id") == 0) return value; + + } + return NULL; +} 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) { - DEBUG_1("unexpected: %s", element_name); + log_printf("unexpected: %s\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } @@ -790,7 +835,7 @@ static void options_parse_color_profiles(GQParserData *parser_data, GMarkupParse } else { - DEBUG_1("unexpected profile: %s", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } @@ -804,18 +849,56 @@ static void options_parse_filter(GQParserData *parser_data, GMarkupParseContext } else { - DEBUG_1("unexpected filter: %s", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } static void options_parse_filter_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) { - DEBUG_1(" filter end"); - filter_add_defaults(); + if (parser_data->startup) filter_add_defaults(); filter_rebuild(); } +static void options_parse_keyword_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) +{ + GtkTreeIter *iter_ptr = data; + gtk_tree_iter_free(iter_ptr); +} + + +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) +{ + GtkTreeIter *iter_ptr = data; + if (g_ascii_strcasecmp(element_name, "keyword") == 0) + { + GtkTreeIter *child = keyword_add_from_config(keyword_tree, iter_ptr, attribute_names, attribute_values); + options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, child); + } + else + { + log_printf("unexpected in : <%s>\n", element_name); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } +} + + + +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) +{ + if (g_ascii_strcasecmp(element_name, "keyword") == 0) + { + GtkTreeIter *iter_ptr = keyword_add_from_config(keyword_tree, NULL, attribute_names, attribute_values); + options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, iter_ptr); + } + else + { + log_printf("unexpected in : <%s>\n", element_name); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } +} + + 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) { if (g_ascii_strcasecmp(element_name, "color_profiles") == 0) @@ -827,22 +910,58 @@ static void options_parse_global(GQParserData *parser_data, GMarkupParseContext { options_parse_func_push(parser_data, options_parse_filter, options_parse_filter_end, NULL); } - else if (g_ascii_strcasecmp(element_name, "layout") == 0) + else if (g_ascii_strcasecmp(element_name, "keyword_tree") == 0) { - layout_load_attributes(&options->layout, attribute_names, attribute_values); - options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + if (!keyword_tree) keyword_tree_new(); + options_parse_func_push(parser_data, options_parse_keyword_tree, NULL, NULL); } else { - DEBUG_1("unexpected global: %s", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } static void options_parse_global_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) { - DEBUG_1(" global end"); - init_after_global_options(); +#ifndef HAVE_EXIV2 + /* some options do not work without exiv2 */ + options->metadata.save_in_image_file = FALSE; + options->metadata.save_legacy_format = TRUE; + options->metadata.write_orientation = FALSE; + DEBUG_1("compiled without Exiv2 - disabling XMP write support"); +#endif +} + +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) +{ + GtkWidget *pane = data; + if (g_ascii_strcasecmp(element_name, "entry") == 0) + { + bar_pane_exif_entry_add_from_config(pane, attribute_names, attribute_values); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } + else + { + log_printf("unexpected in : <%s>\n", element_name); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } +} + +static void options_parse_pane_keywords(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) +{ + GtkWidget *pane = data; + + if (g_ascii_strcasecmp(element_name, "expanded") == 0) + { + bar_pane_keywords_entry_add_from_config(pane, attribute_names, attribute_values); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } + else + { + log_printf("unexpected in : <%s>\n", element_name); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } } 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) @@ -850,68 +969,180 @@ static void options_parse_bar(GQParserData *parser_data, GMarkupParseContext *co GtkWidget *bar = data; if (g_ascii_strcasecmp(element_name, "pane_comment") == 0) { - GtkWidget *pane = bar_pane_comment_new_from_config(attribute_names, attribute_values); - bar_add(bar, pane); + GtkWidget *pane = bar_find_pane_by_id(bar, PANE_COMMENT, options_get_id(attribute_names, attribute_values)); + if (pane) + { + bar_pane_comment_update_from_config(pane, attribute_names, attribute_values); + } + else + { + pane = bar_pane_comment_new_from_config(attribute_names, attribute_values); + bar_add(bar, pane); + } options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } - else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0) +#ifdef HAVE_LIBCHAMPLAIN +#ifdef HAVE_LIBCHAMPLAIN_GTK + else if (g_ascii_strcasecmp(element_name, "pane_gps") == 0) { - GtkWidget *pane = bar_pane_exif_new_from_config(attribute_names, attribute_values); - bar_add(bar, pane); + GtkWidget *pane = bar_find_pane_by_id(bar, PANE_GPS, options_get_id(attribute_names, attribute_values)); + if (pane) + { + bar_pane_gps_update_from_config(pane, attribute_names, attribute_values); + } + else + { + pane = bar_pane_gps_new_from_config(attribute_names, attribute_values); + bar_add(bar, pane); + } options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } +#endif +#endif + else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0) + { + GtkWidget *pane = bar_find_pane_by_id(bar, PANE_EXIF, options_get_id(attribute_names, attribute_values)); + if (pane) + { + bar_pane_exif_update_from_config(pane, attribute_names, attribute_values); + } + else + { + pane = bar_pane_exif_new_from_config(attribute_names, attribute_values); + bar_add(bar, pane); + } + options_parse_func_push(parser_data, options_parse_pane_exif, NULL, pane); + } else if (g_ascii_strcasecmp(element_name, "pane_histogram") == 0) { - GtkWidget *pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values); - bar_add(bar, pane); + GtkWidget *pane = bar_find_pane_by_id(bar, PANE_HISTOGRAM, options_get_id(attribute_names, attribute_values)); + if (pane) + { + bar_pane_histogram_update_from_config(pane, attribute_names, attribute_values); + } + else + { + pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values); + bar_add(bar, pane); + } options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } else if (g_ascii_strcasecmp(element_name, "pane_keywords") == 0) { - GtkWidget *pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values); - bar_add(bar, pane); + GtkWidget *pane = bar_find_pane_by_id(bar, PANE_KEYWORDS, options_get_id(attribute_names, attribute_values)); + if (pane) + { + bar_pane_keywords_update_from_config(pane, attribute_names, attribute_values); + } + else + { + pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values); + bar_add(bar, pane); + } + options_parse_func_push(parser_data, options_parse_pane_keywords, NULL, pane); + } + else if (g_ascii_strcasecmp(element_name, "clear") == 0) + { + bar_clear(bar); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } else { - DEBUG_1("unexpected in : <%s>", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } +/* Just a dummy function to parse out old leftovers + * + * This function can be cleaned somedays. + */ +static void options_parse_toolbar_and_statusbar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) +{ + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); +} + 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) { LayoutWindow *lw = data; if (g_ascii_strcasecmp(element_name, "bar") == 0) { - if (lw->bar) - layout_bar_close(lw); - layout_bar_new(lw, FALSE); + if (!lw->bar) + { + GtkWidget *bar = bar_new_from_config(lw, attribute_names, attribute_values); + layout_bar_set(lw, bar); + } + else + { + bar_update_from_config(lw->bar, attribute_names, attribute_values); + } + options_parse_func_push(parser_data, options_parse_bar, NULL, lw->bar); } +#if 0 +/* FIXME: The sort manager and desktop files are set up in the idle loop. + * Setup is not yet completed when the layout is first displayed. + */ + else if (g_ascii_strcasecmp(element_name, "bar_sort") == 0) + { + GtkWidget *bar = bar_sort_new_from_config(lw, attribute_names, attribute_values); + layout_bar_sort_set(lw, bar); + options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); + } +#endif + else if (g_ascii_strcasecmp(element_name, "toolbar") == 0) + { + options_parse_func_push(parser_data, options_parse_toolbar_and_statusbar, NULL, NULL); + } + else if (g_ascii_strcasecmp(element_name, "statusbar") == 0) + { + options_parse_func_push(parser_data, options_parse_toolbar_and_statusbar, NULL, NULL); + } else { - DEBUG_1("unexpected in : <%s>", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } +static void options_parse_layout_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) +{ + LayoutWindow *lw = data; + layout_util_sync(lw); +} + 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) { + if (g_ascii_strcasecmp(element_name, "gq") == 0) + { + /* optional top-level node */ + options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL); + return; + } if (g_ascii_strcasecmp(element_name, "global") == 0) { load_global_params(attribute_names, attribute_values); options_parse_func_push(parser_data, options_parse_global, options_parse_global_end, NULL); + return; } - else if (g_ascii_strcasecmp(element_name, "layout") == 0) + + if (g_ascii_strcasecmp(element_name, "layout") == 0) { LayoutWindow *lw; - lw = layout_new_from_config(attribute_names, attribute_values); - options_parse_func_push(parser_data, options_parse_layout, NULL, lw); + lw = layout_find_by_layout_id(options_get_id(attribute_names, attribute_values)); + if (lw) + { + layout_update_from_config(lw, attribute_names, attribute_values); + } + else + { + lw = layout_new_from_config(attribute_names, attribute_values, parser_data->startup); + } + options_parse_func_push(parser_data, options_parse_layout, options_parse_layout_end, lw); } else { - DEBUG_1("unexpected in : <%s>", element_name); + log_printf("unexpected in : <%s>\n", element_name); options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); } } @@ -931,22 +1162,16 @@ struct _GQParserFuncData { GQParserStartFunc start_func; GQParserEndFunc end_func; -// GQParserTextFunc text_func; gpointer data; }; -struct _GQParserData -{ - GList *parse_func_stack; -}; - void options_parse_func_push(GQParserData *parser_data, GQParserStartFunc start_func, GQParserEndFunc end_func, gpointer data) { GQParserFuncData *func_data = g_new0(GQParserFuncData, 1); func_data->start_func = start_func; func_data->end_func = end_func; func_data->data = data; - + parser_data->parse_func_stack = g_list_prepend(parser_data->parse_func_stack, func_data); } @@ -968,12 +1193,12 @@ static void start_element(GMarkupParseContext *context, const gchar **attribute_names, const gchar **attribute_values, gpointer user_data, - GError **error) + GError **error) { GQParserData *parser_data = user_data; - GQParserFuncData *func = parser_data->parse_func_stack->data; - DEBUG_1("start %s", element_name); - + GQParserFuncData *func = parser_data->parse_func_stack->data; + DEBUG_2("start %s", element_name); + if (func->start_func) func->start_func(parser_data, context, element_name, attribute_names, attribute_values, func->data, error); } @@ -981,11 +1206,11 @@ static void start_element(GMarkupParseContext *context, static void end_element(GMarkupParseContext *context, const gchar *element_name, gpointer user_data, - GError **error) + GError **error) { GQParserData *parser_data = user_data; - GQParserFuncData *func = parser_data->parse_func_stack->data; - DEBUG_1("end %s", element_name); + GQParserFuncData *func = parser_data->parse_func_stack->data; + DEBUG_2("end %s", element_name); if (func->end_func) func->end_func(parser_data, context, element_name, func->data, error); @@ -1007,37 +1232,46 @@ static GMarkupParser parser = { *----------------------------------------------------------------------------- */ -gboolean load_options_from(const gchar *utf8_path, ConfOptions *options) +gboolean load_config_from_buf(const gchar *buf, gsize size, gboolean startup) { - gsize size; - gchar *buf; GMarkupParseContext *context; gboolean ret = TRUE; GQParserData *parser_data; - if (g_file_get_contents (utf8_path, &buf, &size, NULL) == FALSE) - { - return FALSE; - } - parser_data = g_new0(GQParserData, 1); + + parser_data->startup = startup; options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL); - + context = g_markup_parse_context_new(&parser, 0, parser_data, NULL); - if (g_markup_parse_context_parse (context, buf, size, NULL) == FALSE) + if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE) { ret = FALSE; DEBUG_1("Parse failed"); } - + g_free(parser_data); + g_markup_parse_context_free(context); + return ret; +} + +gboolean load_config_from_file(const gchar *utf8_path, gboolean startup) +{ + gsize size; + gchar *buf; + gboolean ret = TRUE; + + if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE) + { + return FALSE; + } + ret = load_config_from_buf(buf, size, startup); g_free(buf); - g_markup_parse_context_free (context); return ret; } - + /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */