Fix #160: Replace print dialog by standard GTK dialog
[geeqie.git] / src / options.c
1 /*
2  * Copyright (C) 2008, 2016 The Geeqie Team -
3  *
4  * Authors: Vladimir Nadvornik, Laurent Monin
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
19
20 #include "main.h"
21 #include "options.h"
22
23 #include "bar_exif.h"
24 #include "editors.h"
25 #include "filefilter.h"
26 #include "histogram.h" /* HCHAN_RGB */
27 #include "image-overlay.h" /* OSD_SHOW_NOTHING */
28 #include "layout.h"
29 #include "layout_image.h"
30 #include "rcfile.h"
31 #include "ui_bookmark.h"
32 #include "ui_fileops.h"
33 #include "window.h"
34
35 ConfOptions *init_options(ConfOptions *options)
36 {
37         gint i;
38
39         if (!options) options = g_new0(ConfOptions, 1);
40
41         options->collections.rectangular_selection = FALSE;
42
43         options->color_profile.enabled = TRUE;
44         options->color_profile.input_type = 0;
45         options->color_profile.screen_file = NULL;
46         options->color_profile.use_image = TRUE;
47         options->color_profile.use_x11_screen_profile = TRUE;
48         options->color_profile.render_intent = 0;
49
50         options->dnd_icon_size = 48;
51         options->duplicates_similarity_threshold = 99;
52         options->rot_invariant_sim = TRUE;
53         options->sort_totals = FALSE;
54
55         options->file_filter.disable = FALSE;
56         options->file_filter.show_dot_directory = FALSE;
57         options->file_filter.show_hidden_files = FALSE;
58         options->file_filter.show_parent_directory = TRUE;
59         options->file_filter.disable_file_extension_checks = FALSE;
60
61         options->save_window_positions = TRUE;
62         options->use_saved_window_positions_for_new_windows = FALSE;
63         options->tools_restore_state = TRUE;
64         options->save_dialog_window_positions = FALSE;
65         options->show_window_ids = FALSE;
66
67         options->file_ops.confirm_delete = TRUE;
68         options->file_ops.enable_delete_key = TRUE;
69         options->file_ops.enable_in_place_rename = TRUE;
70         options->file_ops.safe_delete_enable = FALSE;
71         options->file_ops.safe_delete_folder_maxsize = 128;
72         options->file_ops.safe_delete_path = NULL;
73
74         options->file_sort.ascending = TRUE;
75         options->file_sort.case_sensitive = FALSE;
76         options->file_sort.method = SORT_NAME;
77         options->file_sort.natural = FALSE;
78
79         options->fullscreen.above = FALSE;
80         options->fullscreen.clean_flip = FALSE;
81         options->fullscreen.disable_saver = TRUE;
82         options->fullscreen.screen = -1;
83
84         options->marks_save = TRUE;
85         options->with_rename = FALSE;
86         options->collections_on_top = FALSE;
87
88         memset(&options->image.border_color, 0, sizeof(options->image.border_color));
89         memset(&options->image.alpha_color_1, 0, sizeof(options->image.alpha_color_1));
90         memset(&options->image.alpha_color_2, 0, sizeof(options->image.alpha_color_2));
91 /* alpha channel checkerboard background (same as gimp) */
92         options->image.alpha_color_1.red = 0x009999;
93         options->image.alpha_color_1.green = 0x009999;
94         options->image.alpha_color_1.blue = 0x009999;
95         options->image.alpha_color_2.red = 0x006666;
96         options->image.alpha_color_2.green = 0x006666;
97         options->image.alpha_color_2.blue = 0x006666;
98         options->image.enable_read_ahead = TRUE;
99         options->image.exif_rotate_enable = TRUE;
100         options->image.exif_proof_rotate_enable = TRUE;
101         options->image.fit_window_to_image = FALSE;
102         options->image.limit_autofit_size = FALSE;
103         options->image.limit_window_size = TRUE;
104         options->image.max_autofit_size = 100;
105         options->image.max_enlargement_size = 900;
106         options->image.max_window_size = 90;
107         options->image.scroll_reset_method = SCROLL_RESET_NOCHANGE;
108         options->image.tile_cache_max = 10;
109         options->image.image_cache_max = 128; /* 4 x 10MPix */
110         options->image.use_custom_border_color = FALSE;
111         options->image.use_custom_border_color_in_fullscreen = TRUE;
112         options->image.zoom_2pass = TRUE;
113         options->image.zoom_increment = 5;
114         options->image.zoom_mode = ZOOM_RESET_NONE;
115         options->image.zoom_quality = GDK_INTERP_BILINEAR;
116         options->image.zoom_to_fit_allow_expand = FALSE;
117
118         options->image_overlay.template_string = NULL;
119         options->image_overlay.x = 10;
120         options->image_overlay.y = -10;
121         options->image_overlay.font = NULL;
122         options->image_overlay.text_red = 0;
123         options->image_overlay.text_green = 0;
124         options->image_overlay.text_blue = 0;
125         options->image_overlay.text_alpha = 255;
126         options->image_overlay.background_red = 240;
127         options->image_overlay.background_green = 240;
128         options->image_overlay.background_blue = 240;
129         options->image_overlay.background_alpha = 210;
130
131         options->lazy_image_sync = FALSE;
132         options->mousewheel_scrolls = FALSE;
133         options->image_lm_click_nav = TRUE;
134         options->image_l_click_video = FALSE;
135         options->image_l_click_video_editor = NULL;
136         options->open_recent_list_maxsize = 10;
137         options->place_dialogs_under_mouse = FALSE;
138
139         options->progressive_key_scrolling = TRUE;
140         options->keyboard_scroll_step = 1;
141
142         options->metadata.enable_metadata_dirs = FALSE;
143         options->metadata.save_in_image_file = FALSE;
144         options->metadata.save_legacy_IPTC = FALSE;
145         options->metadata.warn_on_write_problems = TRUE;
146         options->metadata.save_legacy_format = FALSE;
147         options->metadata.sync_grouped_files = TRUE;
148         options->metadata.confirm_write = TRUE;
149         options->metadata.confirm_after_timeout = FALSE;
150         options->metadata.confirm_timeout = 10;
151         options->metadata.confirm_on_image_change = FALSE;
152         options->metadata.confirm_on_dir_change = TRUE;
153         options->metadata.keywords_case_sensitive = FALSE;
154         options->metadata.write_orientation = TRUE;
155         options->metadata.sidecar_extended_name = FALSE;
156
157         options->show_icon_names = TRUE;
158         options->show_star_rating = FALSE;
159         options->show_predefined_keyword_tree = TRUE;
160
161         options->slideshow.delay = 50;
162         options->slideshow.random = FALSE;
163         options->slideshow.repeat = FALSE;
164
165         options->thumbnails.cache_into_dirs = FALSE;
166         options->thumbnails.enable_caching = TRUE;
167         options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT;
168         options->thumbnails.max_width = DEFAULT_THUMB_WIDTH;
169         options->thumbnails.quality = GDK_INTERP_TILES;
170         options->thumbnails.spec_standard = TRUE;
171         options->thumbnails.use_xvpics = TRUE;
172         options->thumbnails.use_exif = FALSE;
173         options->thumbnails.use_ft_metadata = TRUE;
174 //      options->thumbnails.use_ft_metadata_small = TRUE;
175         options->thumbnails.collection_preview = 20;
176
177         options->tree_descend_subdirs = FALSE;
178         options->view_dir_list_single_click_enter = TRUE;
179         options->update_on_time_change = TRUE;
180         options->clipboard_selection = PRIMARY;
181
182         options->stereo.fixed_w = 1920;
183         options->stereo.fixed_h = 1080;
184         options->stereo.fixed_x1 = 0;
185         options->stereo.fixed_y1 = 0;
186         options->stereo.fixed_x2 = 0;
187         options->stereo.fixed_y2 = 1125;
188
189         options->log_window_lines = 1000;
190         options->log_window.line_wrap = TRUE;
191         options->log_window.paused = FALSE;
192         options->log_window.timer_data = FALSE;
193
194         options->read_metadata_in_idle = FALSE;
195         options->star_rating.star = STAR_RATING_STAR;
196         options->star_rating.rejected = STAR_RATING_REJECTED;
197
198         options->printer.font = g_strdup("Serif 10");
199         options->printer.text_fields = 1;
200
201         return options;
202 }
203
204 void setup_default_options(ConfOptions *options)
205 {
206         gchar *path;
207         gint i;
208
209         bookmark_add_default(".", get_current_dir());
210         bookmark_add_default(_("Home"), homedir());
211         path = g_build_filename(homedir(), "Desktop", NULL);
212         bookmark_add_default(_("Desktop"), path);
213         g_free(path);
214         bookmark_add_default(_("Collections"), get_collections_dir());
215
216         g_free(options->file_ops.safe_delete_path);
217         options->file_ops.safe_delete_path = g_strdup(get_trash_dir());
218
219         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
220                 {
221                 options->color_profile.input_file[i] = NULL;
222                 options->color_profile.input_name[i] = NULL;
223                 }
224
225         set_default_image_overlay_template_string(&options->image_overlay.template_string);
226         options->sidecar.ext = g_strdup(".jpg;%raw;.ufraw;.xmp;%unknown");
227
228         options->shell.path = g_strdup(GQ_DEFAULT_SHELL_PATH);
229         options->shell.options = g_strdup(GQ_DEFAULT_SHELL_OPTIONS);
230
231         for (i = 0; i < FILEDATA_MARKS_SIZE; i++)
232                 {
233                 options->marks_tooltips[i] = g_strdup_printf("%s%d", _("Mark "), i + 1);
234                 }
235
236         options->help_search_engine = g_strdup(HELP_SEARCH_ENGINE);
237 }
238
239 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src)
240 {
241         free_layout_options_content(dest);
242
243         *dest = *src;
244         dest->id = g_strdup(src->id);
245         dest->order = g_strdup(src->order);
246         dest->home_path = g_strdup(src->home_path);
247         dest->last_path = g_strdup(src->last_path);
248 }
249
250 void free_layout_options_content(LayoutOptions *dest)
251 {
252         g_free(dest->id);
253         g_free(dest->order);
254         g_free(dest->home_path);
255         g_free(dest->last_path);
256 }
257
258 LayoutOptions *init_layout_options(LayoutOptions *options)
259 {
260         memset(options, 0, sizeof(LayoutOptions));
261
262         options->dir_view_type = DIRVIEW_LIST;
263         options->file_view_type = FILEVIEW_LIST;
264         options->float_window.h = 450;
265         options->float_window.vdivider_pos = -1;
266         options->float_window.w = 260;
267         options->float_window.x = 0;
268         options->float_window.y = 0;
269         options->home_path = NULL;
270         options->main_window.h = 540;
271         options->main_window.hdivider_pos = -1;
272         options->main_window.maximized = FALSE;
273         options->main_window.vdivider_pos = 200;
274         options->main_window.w = 720;
275         options->main_window.x = 0;
276         options->main_window.y = 0;
277         options->folder_window.vdivider_pos = 100;
278         options->order = g_strdup("123");
279         options->show_directory_date = FALSE;
280         options->show_marks = FALSE;
281         options->show_file_filter = FALSE;
282         options->show_thumbnails = FALSE;
283         options->style = 0;
284         options->show_info_pixel = FALSE;
285         options->toolbar_hidden = FALSE;
286         options->tools_float = FALSE;
287         options->tools_hidden = FALSE;
288         options->image_overlay.histogram_channel = HCHAN_RGB;
289         options->image_overlay.histogram_mode = 1;
290         options->image_overlay.state = OSD_SHOW_NOTHING;
291         options->animate = TRUE;
292         options->bars_state.hidden = FALSE;
293         options->log_window.w = 520;
294         options->log_window.h = 400;
295         return options;
296 }
297
298 static void sync_options_with_current_state(ConfOptions *options)
299 {
300         LayoutWindow *lw = NULL;
301
302         if (layout_valid(&lw))
303                 {
304                 layout_sync_options_with_current_state(lw);
305                 layout_sort_get(lw, &options->file_sort.method, &options->file_sort.ascending);
306
307                 options->color_profile.enabled = layout_image_color_profile_get_use(lw);
308                 layout_image_color_profile_get(lw,
309                                                &options->color_profile.input_type,
310                                                &options->color_profile.use_image);
311                 }
312
313 }
314
315 void save_options(ConfOptions *options)
316 {
317         gchar *rc_path;
318
319         sync_options_with_current_state(options);
320
321         rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
322         save_config_to_file(rc_path, options);
323         g_free(rc_path);
324 }
325
326 gboolean load_options(ConfOptions *options)
327 {
328         gboolean success;
329         gchar *rc_path;
330
331         if (isdir(GQ_SYSTEM_WIDE_DIR))
332                 {
333                 rc_path = g_build_filename(GQ_SYSTEM_WIDE_DIR, RC_FILE_NAME, NULL);
334                 success = load_config_from_file(rc_path, TRUE);
335                 DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");
336                 g_free(rc_path);
337                 }
338
339         rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL);
340         success = load_config_from_file(rc_path, TRUE);
341         DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed");
342         g_free(rc_path);
343         return(success);
344 }
345 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */