e6c9789fd20937c513eaa0f88a0476280cb37cb2
[geeqie.git] / src / globals.c
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #include "main.h"
14
15 #ifdef DEBUG
16 gint debug = FALSE;
17 #endif
18
19
20 ConfOptions *init_options(ConfOptions *options)
21 {
22         if (!options) options = g_new0(ConfOptions, 1);
23
24         options->collections.rectangular_selection = FALSE;
25
26         options->color_profile.enabled = FALSE;
27         options->color_profile.input_type = 0;
28         options->color_profile.screen_file = NULL;
29         options->color_profile.screen_type = 0;
30         options->color_profile.use_image = TRUE;
31
32         options->dnd_icon_size = 48;
33         options->duplicates_similarity_threshold = 99;
34         options->enable_metadata_dirs = FALSE;
35
36         options->file_filter.disable = FALSE;
37         options->file_filter.show_dot_directory = FALSE;
38         options->file_filter.show_hidden_files = FALSE;
39
40         options->file_ops.confirm_delete = TRUE;
41         options->file_ops.enable_delete_key = TRUE;
42         options->file_ops.enable_in_place_rename = TRUE;
43         options->file_ops.safe_delete_enable = FALSE;
44         options->file_ops.safe_delete_folder_maxsize = 128;
45         options->file_ops.safe_delete_path = NULL;
46
47         options->file_sort.ascending = TRUE;
48         options->file_sort.case_sensitive = FALSE;
49         options->file_sort.method = SORT_NAME;
50
51         options->fullscreen.above = FALSE;
52         options->fullscreen.clean_flip = FALSE;
53         options->fullscreen.disable_saver = TRUE;
54         options->fullscreen.screen = -1;
55
56         memset(&options->image.border_color, 0, sizeof(options->image.border_color));
57         options->image.dither_quality = (gint)GDK_RGB_DITHER_NORMAL;
58         options->image.enable_read_ahead = TRUE;
59         options->image.exif_rotate_enable = TRUE;
60         options->image.fit_window_to_image = FALSE;
61         options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT;
62         options->image.limit_autofit_size = FALSE;
63         options->image.limit_window_size = FALSE;
64         options->image.max_autofit_size = 100;
65         options->image.max_window_size = 100;
66         options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT;
67         options->image.scroll_reset_method = SCROLL_RESET_TOPLEFT;
68         options->image.tile_cache_max = 10;
69         options->image.use_custom_border_color = FALSE;
70         options->image.zoom_2pass = TRUE;
71         options->image.zoom_increment = 5;
72         options->image.zoom_mode = ZOOM_RESET_ORIGINAL;
73         options->image.zoom_quality = (gint)GDK_INTERP_BILINEAR;
74         options->image.zoom_to_fit_allow_expand = TRUE;
75
76         options->image_overlay.common.enabled = FALSE;
77         options->image_overlay.common.show_at_startup = FALSE;
78         options->image_overlay.common.template_string = NULL;
79
80         options->layout.dir_view_type = DIRVIEW_LIST;
81         options->layout.float_window.h = 450;
82         options->layout.float_window.vdivider_pos = -1;
83         options->layout.float_window.w = 260;
84         options->layout.float_window.x = 0;
85         options->layout.float_window.y = 0;
86         options->layout.main_window.h = 400;
87         options->layout.main_window.hdivider_pos = -1;
88         options->layout.main_window.maximized = FALSE;
89         options->layout.main_window.vdivider_pos = 200;
90         options->layout.main_window.w = 500;
91         options->layout.main_window.x = 0;
92         options->layout.main_window.y = 0;
93         options->layout.order = NULL;
94         options->layout.save_window_positions = FALSE;
95         options->layout.show_marks = FALSE;
96         options->layout.show_thumbnails = FALSE;
97         options->layout.style = 0;
98         options->layout.toolbar_hidden = FALSE;
99         options->layout.tools_float = FALSE;
100         options->layout.tools_hidden = FALSE;
101         options->layout.tools_restore_state = FALSE;
102         options->layout.view_as_icons = FALSE;
103
104         options->lazy_image_sync = FALSE;
105         options->mousewheel_scrolls = FALSE;
106         options->open_recent_list_maxsize = 10;
107         options->place_dialogs_under_mouse = FALSE;
108         options->progressive_key_scrolling = FALSE;
109         options->show_icon_names = TRUE;
110
111         options->slideshow.delay = 150;
112         options->slideshow.random = FALSE;
113         options->slideshow.repeat = FALSE;
114
115         options->startup_path_enable = FALSE;
116         options->startup_path = NULL;
117
118         options->thumbnails.cache_into_dirs = FALSE;
119         options->thumbnails.enable_caching = TRUE;
120         options->thumbnails.fast = TRUE;
121         options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT;
122         options->thumbnails.max_width = DEFAULT_THUMB_WIDTH;
123         options->thumbnails.quality = (gint)GDK_INTERP_TILES;
124         options->thumbnails.spec_standard = TRUE;
125         options->thumbnails.use_xvpics = TRUE;
126
127         options->tree_descend_subdirs = FALSE;
128         options->update_on_time_change = TRUE;
129
130         return options;
131 }