view src/globals.c @ 318:b16b9b8979e5

Add a new struct ConfOptions to handle options. Changes were made among the code to use only one global var named "options" of type ConfOptions *. Initialization takes place in new init_options().
author zas_
date Fri, 11 Apr 2008 22:14:36 +0000
parents 6917ea10738c
children f9611a6cf0e2
line wrap: on
line source

/*
 * Geeqie
 * (C) 2004 John Ellis
 *
 * 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!
 */


#include "main.h"

GList *filename_filter = NULL;

ConfOptions *init_options(ConfOptions *options)
{
	if (!options) options = g_new0(ConfOptions, 1);

	options->main_window_w = 500;
	options->main_window_h = 400;
	options->main_window_x = 0;
	options->main_window_y = 0;
	options->main_window_maximized = FALSE;
	
	options->float_window_w = 260;
	options->float_window_h = 450;
	options->float_window_x = 0;
	options->float_window_y = 0;
	options->float_window_divider = -1;
	
	options->window_hdivider_pos = -1;
	options->window_vdivider_pos = 200;
	
	options->save_window_positions = FALSE;
	options->tools_float = FALSE;
	options->tools_hidden = FALSE;
	options->toolbar_hidden = FALSE;
	options->progressive_key_scrolling = FALSE;
	
	options->startup_path_enable = FALSE;
	options->startup_path = NULL;
	options->confirm_delete = TRUE;
	options->enable_delete_key = TRUE;
	options->safe_delete_enable = FALSE;
	options->safe_delete_path = NULL;
	options->safe_delete_size = 128;
	options->restore_tool = FALSE;
	options->zoom_mode = ZOOM_RESET_ORIGINAL;
	options->two_pass_zoom = TRUE;
	options->scroll_reset_method = SCROLL_RESET_TOPLEFT;
	options->fit_window = FALSE;
	options->limit_window_size = FALSE;
	options->zoom_to_fit_expands = TRUE;
	options->max_window_size = 100;
	options->limit_autofit_size = FALSE;
	options->max_autofit_size = 100;
	options->thumb_max_width = DEFAULT_THUMB_WIDTH;
	options->thumb_max_height = DEFAULT_THUMB_HEIGHT;
	options->enable_thumb_caching = TRUE;
	options->enable_thumb_dirs = FALSE;
	options->use_xvpics_thumbnails = TRUE;
	options->thumbnail_fast = TRUE;
	options->thumbnail_spec_standard = TRUE;
	options->enable_metadata_dirs = FALSE;
	options->show_dot_files = FALSE;
	options->file_filter_disable = FALSE;
	
	
	options->thumbnails_enabled = FALSE;
	options->file_sort_method = SORT_NAME;
	options->file_sort_ascending = TRUE;
	
	options->slideshow_delay = 150;
	options->slideshow_random = FALSE;
	options->slideshow_repeat = FALSE;
	
	options->mousewheel_scrolls = FALSE;
	options->enable_in_place_rename = TRUE;
	
	options->recent_list_max = 10;
	
	options->collection_rectangular_selection = FALSE;
	
	options->tile_cache_max = 10;
	options->thumbnail_quality = (gint)GDK_INTERP_TILES;
	options->zoom_quality = (gint)GDK_INTERP_BILINEAR;
	options->dither_quality = (gint)GDK_RGB_DITHER_NORMAL;
	
	options->zoom_increment = 5;
	
	options->enable_read_ahead = TRUE;
	
	options->place_dialogs_under_mouse = FALSE;
	
	options->user_specified_window_background = FALSE;
	memset(&options->window_background_color, 0, sizeof(options->window_background_color));
	
	options->fullscreen_screen = -1;
	options->fullscreen_clean_flip = FALSE;
	options->fullscreen_disable_saver = TRUE;
	options->fullscreen_above = FALSE;
	options->show_fullscreen_info = TRUE;
	options->fullscreen_info = NULL;
	
	options->dupe_custom_threshold = 99;

	return options;
}

/* -- options -- */
#ifdef DEBUG
gint debug = FALSE;
#endif


/* layout */
gchar *layout_order = NULL;
gint layout_style = 0;

gint layout_view_icons = FALSE;
gint layout_view_tree = FALSE;

gint show_icon_names = TRUE;

gint tree_descend_subdirs = FALSE;

gint lazy_image_sync = FALSE;
gint update_on_time_change = TRUE;
gint exif_rotate_enable = TRUE;

/* color profiles */
gint color_profile_enabled = FALSE;
gint color_profile_input_type = 0;
gchar *color_profile_input_file[COLOR_PROFILE_INPUTS];
gchar *color_profile_input_name[COLOR_PROFILE_INPUTS];
gint color_profile_screen_type = 0;
gchar *color_profile_screen_file = NULL;
gint color_profile_use_image = TRUE;