Additional debug features
[geeqie.git] / src / options.c
index be438d0..a79dc28 100644 (file)
@@ -1,13 +1,21 @@
 /*
- * Geeqie
- * Copyright (C) 2008 The Geeqie Team
+ * Copyright (C) 2008, 2016 The Geeqie Team -
  *
  * Authors: Vladimir Nadvornik, Laurent Monin
  *
- * 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 "main.h"
 #include "options.h"
@@ -17,7 +25,6 @@
 #include "filefilter.h"
 #include "histogram.h" /* HCHAN_RGB */
 #include "image-overlay.h" /* OSD_SHOW_NOTHING */
-#include "info.h"
 #include "layout.h"
 #include "layout_image.h"
 #include "rcfile.h"
@@ -34,18 +41,24 @@ ConfOptions *init_options(ConfOptions *options)
        options->color_profile.enabled = TRUE;
        options->color_profile.input_type = 0;
        options->color_profile.screen_file = NULL;
-       options->color_profile.screen_type = 0;
        options->color_profile.use_image = TRUE;
+       options->color_profile.use_x11_screen_profile = TRUE;
+       options->color_profile.render_intent = 0;
 
        options->dnd_icon_size = 48;
-       options->documentation.htmldir = NULL;
-       options->documentation.helpdir = NULL;
        options->duplicates_similarity_threshold = 99;
-       options->enable_metadata_dirs = FALSE;
-       
+       options->rot_invariant_sim = TRUE;
+       options->sort_totals = FALSE;
+
        options->file_filter.disable = FALSE;
        options->file_filter.show_dot_directory = FALSE;
        options->file_filter.show_hidden_files = FALSE;
+       options->file_filter.show_parent_directory = TRUE;
+       options->file_filter.disable_file_extension_checks = FALSE;
+
+       options->save_window_positions = TRUE;
+       options->use_saved_window_positions_for_new_windows = FALSE;
+       options->tools_restore_state = TRUE;
 
        options->file_ops.confirm_delete = TRUE;
        options->file_ops.enable_delete_key = TRUE;
@@ -57,111 +70,110 @@ ConfOptions *init_options(ConfOptions *options)
        options->file_sort.ascending = TRUE;
        options->file_sort.case_sensitive = FALSE;
        options->file_sort.method = SORT_NAME;
+       options->file_sort.natural = FALSE;
 
        options->fullscreen.above = FALSE;
        options->fullscreen.clean_flip = FALSE;
        options->fullscreen.disable_saver = TRUE;
        options->fullscreen.screen = -1;
 
-       options->histogram.last_channel_mode = HCHAN_RGB;
-       options->histogram.last_log_mode = 1;
-       
        memset(&options->image.border_color, 0, sizeof(options->image.border_color));
-       options->image.dither_quality = GDK_RGB_DITHER_NORMAL;
+       memset(&options->image.alpha_color_1, 0, sizeof(options->image.alpha_color_1));
+       memset(&options->image.alpha_color_2, 0, sizeof(options->image.alpha_color_2));
+/* alpha channel checkerboard background (same as gimp) */
+       options->image.alpha_color_1.red = 0x009999;
+       options->image.alpha_color_1.green = 0x009999;
+       options->image.alpha_color_1.blue = 0x009999;
+       options->image.alpha_color_2.red = 0x006666;
+       options->image.alpha_color_2.green = 0x006666;
+       options->image.alpha_color_2.blue = 0x006666;
        options->image.enable_read_ahead = TRUE;
        options->image.exif_rotate_enable = TRUE;
+       options->image.exif_proof_rotate_enable = TRUE;
        options->image.fit_window_to_image = FALSE;
-       options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT;
        options->image.limit_autofit_size = FALSE;
        options->image.limit_window_size = TRUE;
        options->image.max_autofit_size = 100;
+       options->image.max_enlargement_size = 900;
        options->image.max_window_size = 90;
-       options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT;
        options->image.scroll_reset_method = SCROLL_RESET_NOCHANGE;
        options->image.tile_cache_max = 10;
        options->image.image_cache_max = 128; /* 4 x 10MPix */
        options->image.use_custom_border_color = FALSE;
+       options->image.use_custom_border_color_in_fullscreen = TRUE;
        options->image.zoom_2pass = TRUE;
        options->image.zoom_increment = 5;
        options->image.zoom_mode = ZOOM_RESET_NONE;
        options->image.zoom_quality = GDK_INTERP_BILINEAR;
        options->image.zoom_to_fit_allow_expand = FALSE;
 
-       options->image_overlay.common.state = OSD_SHOW_NOTHING;
-       options->image_overlay.common.show_at_startup = FALSE;
-       options->image_overlay.common.template_string = NULL;
-       options->image_overlay.common.x = 10;
-       options->image_overlay.common.y = -10;
-
-       options->layout.dir_view_type = DIRVIEW_LIST;
-       options->layout.file_view_type = FILEVIEW_LIST;
-       options->layout.float_window.h = 450;
-       options->layout.float_window.vdivider_pos = -1;
-       options->layout.float_window.w = 260;
-       options->layout.float_window.x = 0;
-       options->layout.float_window.y = 0;
-       options->layout.home_path = NULL;
-       options->layout.main_window.h = 540;
-       options->layout.main_window.hdivider_pos = -1;
-       options->layout.main_window.maximized = FALSE;
-       options->layout.main_window.vdivider_pos = 200;
-       options->layout.main_window.w = 720;
-       options->layout.main_window.x = 0;
-       options->layout.main_window.y = 0;
-       options->layout.order = NULL;
-       options->layout.properties_window.w = DEF_PROPERTY_WIDTH;
-       options->layout.properties_window.h = DEF_PROPERTY_HEIGHT;
-       options->layout.save_window_positions = TRUE;
-       options->layout.show_directory_date = FALSE;
-       options->layout.show_marks = FALSE;
-       options->layout.show_thumbnails = FALSE;
-       options->layout.style = 0;
-       options->layout.toolbar_hidden = FALSE;
-       options->layout.tools_float = FALSE;
-       options->layout.tools_hidden = FALSE;
-       options->layout.tools_restore_state = TRUE;
+       options->image_overlay.template_string = NULL;
+       options->image_overlay.x = 10;
+       options->image_overlay.y = -10;
+       options->image_overlay.font = NULL;
+       options->image_overlay.text_red = 0;
+       options->image_overlay.text_green = 0;
+       options->image_overlay.text_blue = 0;
+       options->image_overlay.text_alpha = 255;
+       options->image_overlay.background_red = 240;
+       options->image_overlay.background_green = 240;
+       options->image_overlay.background_blue = 240;
+       options->image_overlay.background_alpha = 210;
 
        options->lazy_image_sync = FALSE;
        options->mousewheel_scrolls = FALSE;
+       options->image_lm_click_nav = TRUE;
        options->open_recent_list_maxsize = 10;
        options->place_dialogs_under_mouse = FALSE;
 
-       options->panels.exif.enabled = FALSE;
-       options->panels.exif.width = PANEL_DEFAULT_WIDTH;
-       options->panels.info.enabled = FALSE;
-       options->panels.info.width = PANEL_DEFAULT_WIDTH;
-       options->panels.sort.action_state = 0;
-       options->panels.sort.enabled = FALSE;
-       options->panels.sort.mode_state = 0;
-       options->panels.sort.selection_state = 0;
-
        options->progressive_key_scrolling = TRUE;
-       
-       options->save_metadata_in_image_file = FALSE;
-       
-       options->show_copy_path = TRUE;
+       options->keyboard_scroll_step = 1;
+
+       options->metadata.enable_metadata_dirs = FALSE;
+       options->metadata.save_in_image_file = FALSE;
+       options->metadata.save_legacy_IPTC = FALSE;
+       options->metadata.warn_on_write_problems = TRUE;
+       options->metadata.save_legacy_format = FALSE;
+       options->metadata.sync_grouped_files = TRUE;
+       options->metadata.confirm_write = TRUE;
+       options->metadata.confirm_after_timeout = FALSE;
+       options->metadata.confirm_timeout = 10;
+       options->metadata.confirm_on_image_change = FALSE;
+       options->metadata.confirm_on_dir_change = TRUE;
+       options->metadata.keywords_case_sensitive = FALSE;
+       options->metadata.write_orientation = TRUE;
+       options->metadata.sidecar_extended_name = FALSE;
+
        options->show_icon_names = TRUE;
 
        options->slideshow.delay = 50;
        options->slideshow.random = FALSE;
        options->slideshow.repeat = FALSE;
 
-       options->startup.path = NULL;
-       options->startup.restore_path = FALSE;
-       options->startup.use_last_path = FALSE;
-
        options->thumbnails.cache_into_dirs = FALSE;
        options->thumbnails.enable_caching = TRUE;
-       options->thumbnails.fast = TRUE;
        options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT;
        options->thumbnails.max_width = DEFAULT_THUMB_WIDTH;
        options->thumbnails.quality = GDK_INTERP_TILES;
        options->thumbnails.spec_standard = TRUE;
        options->thumbnails.use_xvpics = TRUE;
+       options->thumbnails.use_exif = FALSE;
 
        options->tree_descend_subdirs = FALSE;
+       options->view_dir_list_single_click_enter = TRUE;
        options->update_on_time_change = TRUE;
 
+       options->stereo.fixed_w = 1920;
+       options->stereo.fixed_h = 1080;
+       options->stereo.fixed_x1 = 0;
+       options->stereo.fixed_y1 = 0;
+       options->stereo.fixed_x2 = 0;
+       options->stereo.fixed_y2 = 1125;
+
+       options->log_window_lines = 1000;
+       options->log_window.line_wrap = TRUE;
+       options->log_window.paused = FALSE;
+
        return options;
 }
 
@@ -170,24 +182,15 @@ void setup_default_options(ConfOptions *options)
        gchar *path;
        gint i;
 
-       for (i = 0; i < GQ_EDITOR_SLOTS; i++)
-               {
-               editor_set_name(i, NULL);
-               editor_set_command(i, NULL);
-               }
-
-       editor_reset_defaults();
-
+       bookmark_add_default(".", get_current_dir());
        bookmark_add_default(_("Home"), homedir());
        path = g_build_filename(homedir(), "Desktop", NULL);
        bookmark_add_default(_("Desktop"), path);
        g_free(path);
-       path = g_build_filename(homedir(), GQ_RC_DIR_COLLECTIONS, NULL);
-       bookmark_add_default(_("Collections"), path);
-       g_free(path);
+       bookmark_add_default(_("Collections"), get_collections_dir());
 
        g_free(options->file_ops.safe_delete_path);
-       options->file_ops.safe_delete_path = g_build_filename(homedir(), GQ_RC_DIR_TRASH, NULL);
+       options->file_ops.safe_delete_path = g_strdup(get_trash_dir());
 
        for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
                {
@@ -195,19 +198,69 @@ void setup_default_options(ConfOptions *options)
                options->color_profile.input_name[i] = NULL;
                }
 
-       set_default_image_overlay_template_string(&options->image_overlay.common.template_string);
-       sidecar_ext_add_defaults();
-       options->layout.order = g_strdup("123");
-       options->properties.tabs_order = g_strdup(info_tab_default_order());
+       set_default_image_overlay_template_string(&options->image_overlay.template_string);
+       options->sidecar.ext = g_strdup(".jpg;%raw;.ufraw;.xmp;%unknown");
 
        options->shell.path = g_strdup(GQ_DEFAULT_SHELL_PATH);
        options->shell.options = g_strdup(GQ_DEFAULT_SHELL_OPTIONS);
-       
-       options->documentation.htmldir = g_strdup(GQ_HTMLDIR);
-       options->documentation.helpdir = g_strdup(GQ_HELPDIR);
+}
+
+void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src)
+{
+       free_layout_options_content(dest);
 
-       for (i = 0; ExifUIList[i].key; i++)
-               ExifUIList[i].current = ExifUIList[i].default_value;
+       *dest = *src;
+       dest->id = g_strdup(src->id);
+       dest->order = g_strdup(src->order);
+       dest->home_path = g_strdup(src->home_path);
+       dest->last_path = g_strdup(src->last_path);
+}
+
+void free_layout_options_content(LayoutOptions *dest)
+{
+       g_free(dest->id);
+       g_free(dest->order);
+       g_free(dest->home_path);
+       g_free(dest->last_path);
+}
+
+LayoutOptions *init_layout_options(LayoutOptions *options)
+{
+       memset(options, 0, sizeof(LayoutOptions));
+
+       options->dir_view_type = DIRVIEW_LIST;
+       options->file_view_type = FILEVIEW_LIST;
+       options->float_window.h = 450;
+       options->float_window.vdivider_pos = -1;
+       options->float_window.w = 260;
+       options->float_window.x = 0;
+       options->float_window.y = 0;
+       options->home_path = NULL;
+       options->main_window.h = 540;
+       options->main_window.hdivider_pos = -1;
+       options->main_window.maximized = FALSE;
+       options->main_window.vdivider_pos = 200;
+       options->main_window.w = 720;
+       options->main_window.x = 0;
+       options->main_window.y = 0;
+       options->folder_window.vdivider_pos = 100;
+       options->order = g_strdup("123");
+       options->show_directory_date = FALSE;
+       options->show_marks = FALSE;
+       options->show_thumbnails = FALSE;
+       options->style = 0;
+       options->show_info_pixel = FALSE;
+       options->toolbar_hidden = FALSE;
+       options->tools_float = FALSE;
+       options->tools_hidden = FALSE;
+       options->image_overlay.histogram_channel = HCHAN_RGB;
+       options->image_overlay.histogram_mode = 1;
+       options->image_overlay.state = OSD_SHOW_NOTHING;
+       options->animate = FALSE;
+       options->bars_state.hidden = FALSE;
+       options->log_window.w = 520;
+       options->log_window.h = 400;
+       return options;
 }
 
 static void sync_options_with_current_state(ConfOptions *options)
@@ -216,41 +269,15 @@ static void sync_options_with_current_state(ConfOptions *options)
 
        if (layout_valid(&lw))
                {
-               options->layout.main_window.maximized =  window_maximized(lw->window);
-               if (!options->layout.main_window.maximized)
-                       {
-                       layout_geometry_get(NULL, &options->layout.main_window.x, &options->layout.main_window.y,
-                                           &options->layout.main_window.w, &options->layout.main_window.h);
-                       }
-
-               options->image_overlay.common.state = image_osd_get(lw->image);
-               }
-
-       layout_geometry_get_dividers(NULL, &options->layout.main_window.hdivider_pos, &options->layout.main_window.vdivider_pos);
+               layout_sync_options_with_current_state(lw);
+               layout_sort_get(lw, &options->file_sort.method, &options->file_sort.ascending);
 
-       layout_views_get(NULL, &options->layout.dir_view_type, &options->layout.file_view_type);
-
-       options->layout.show_thumbnails = layout_thumb_get(NULL);
-       options->layout.show_marks = layout_marks_get(NULL);
-
-       layout_sort_get(NULL, &options->file_sort.method, &options->file_sort.ascending);
-
-       layout_geometry_get_tools(NULL, &options->layout.float_window.x, &options->layout.float_window.y,
-                                 &options->layout.float_window.w, &options->layout.float_window.h, &options->layout.float_window.vdivider_pos);
-       layout_tools_float_get(NULL, &options->layout.tools_float, &options->layout.tools_hidden);
-       options->layout.toolbar_hidden = layout_toolbar_hidden(NULL);
-
-       options->color_profile.enabled = layout_image_color_profile_get_use(NULL);
-       layout_image_color_profile_get(NULL,
-                                      &options->color_profile.input_type,
-                                      &options->color_profile.screen_type,
-                                      &options->color_profile.use_image);
-
-       if (options->startup.restore_path && options->startup.use_last_path)
-               {
-               g_free(options->startup.path);
-               options->startup.path = g_strdup(layout_get_path(NULL));
+               options->color_profile.enabled = layout_image_color_profile_get_use(lw);
+               layout_image_color_profile_get(lw,
+                                              &options->color_profile.input_type,
+                                              &options->color_profile.use_image);
                }
+
 }
 
 void save_options(ConfOptions *options)
@@ -259,12 +286,12 @@ void save_options(ConfOptions *options)
 
        sync_options_with_current_state(options);
 
-       rc_path = g_build_filename(homedir(), GQ_RC_DIR, RC_FILE_NAME, NULL);
-       save_options_to(rc_path, options);
+       rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
+       save_config_to_file(rc_path, options);
        g_free(rc_path);
 }
 
-void load_options(ConfOptions *options)
+gboolean load_options(ConfOptions *options)
 {
        gboolean success;
        gchar *rc_path;
@@ -272,13 +299,15 @@ void load_options(ConfOptions *options)
        if (isdir(GQ_SYSTEM_WIDE_DIR))
                {
                rc_path = g_build_filename(GQ_SYSTEM_WIDE_DIR, RC_FILE_NAME, NULL);
-               success = load_options_from(rc_path, options);
+               success = load_config_from_file(rc_path, TRUE);
                DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");
                g_free(rc_path);
                }
-       
-       rc_path = g_build_filename(homedir(), GQ_RC_DIR, RC_FILE_NAME, NULL);
-       success = load_options_from(rc_path, options);
+
+       rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
+       success = load_config_from_file(rc_path, TRUE);
        DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");
        g_free(rc_path);
+       return(success);
 }
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */