Read metadata in the idle loop
[geeqie.git] / src / options.h
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
21 #ifndef OPTIONS_H
22 #define OPTIONS_H
23
24 typedef struct _ConfOptions ConfOptions;
25
26 struct _ConfOptions
27 {
28         /* ui */
29         gboolean progressive_key_scrolling;
30         guint keyboard_scroll_step;
31         gboolean place_dialogs_under_mouse;
32         gboolean mousewheel_scrolls;
33         gboolean image_lm_click_nav;
34         gboolean image_l_click_video;
35         gchar *image_l_click_video_editor;
36         gboolean show_icon_names;
37
38         /* various */
39         gboolean tree_descend_subdirs;
40         gboolean view_dir_list_single_click_enter;
41
42         gboolean lazy_image_sync;
43         gboolean update_on_time_change;
44
45         guint duplicates_similarity_threshold;
46         guint duplicates_match;
47         gboolean duplicates_thumbnails;
48         guint duplicates_select_type;
49         gboolean rot_invariant_sim;
50         gboolean sort_totals;
51
52         gint open_recent_list_maxsize;
53         gint dnd_icon_size;
54         gint clipboard_selection;
55
56         gboolean save_window_positions;
57         gboolean use_saved_window_positions_for_new_windows;
58         gboolean tools_restore_state;
59         gboolean save_dialog_window_positions;
60         gboolean show_window_ids;
61
62         gint log_window_lines;
63
64         gboolean marks_save;            // save marks on exit
65         gchar *marks_tooltips[FILEDATA_MARKS_SIZE];
66
67         gboolean with_rename;
68
69         gchar *help_search_engine;
70
71         /* info sidebar component heights */
72         struct {
73                 gint height;
74         } info_comment;
75
76         struct {
77                 gint height;
78         } info_keywords;
79
80         struct {
81                 gint height;
82         } info_title;
83
84         struct {
85                 gint height;
86         } info_rating;
87
88         /* file ops */
89         struct {
90                 gboolean enable_in_place_rename;
91
92                 gboolean confirm_delete;
93                 gboolean enable_delete_key;
94                 gboolean safe_delete_enable;
95                 gchar *safe_delete_path;
96                 gint safe_delete_folder_maxsize;
97         } file_ops;
98
99         /* image */
100         struct {
101                 gboolean exif_rotate_enable;
102                 gboolean exif_proof_rotate_enable;
103                 guint scroll_reset_method;
104                 gboolean fit_window_to_image;
105                 gboolean limit_window_size;
106                 gint max_window_size;
107                 gboolean limit_autofit_size;
108                 gint max_autofit_size;
109                 gint max_enlargement_size;
110
111                 gint tile_cache_max;    /* in megabytes */
112                 gint image_cache_max;   /* in megabytes */
113                 gboolean enable_read_ahead;
114
115                 ZoomMode zoom_mode;
116                 gboolean zoom_2pass;
117                 gboolean zoom_to_fit_allow_expand;
118                 guint zoom_quality;
119                 gint zoom_increment;    /* 100 is 1.0, 5 is 0.05, 200 is 2.0, etc. */
120                 gboolean use_clutter_renderer;
121
122                 gboolean use_custom_border_color_in_fullscreen;
123                 gboolean use_custom_border_color;
124                 GdkColor border_color;
125                 GdkColor alpha_color_1;
126                 GdkColor alpha_color_2;
127         } image;
128
129         /* thumbnails */
130         struct {
131                 gint max_width;
132                 gint max_height;
133                 gboolean enable_caching;
134                 gboolean cache_into_dirs;
135                 gboolean use_xvpics;
136                 gboolean spec_standard;
137                 guint quality;
138                 gboolean use_exif;
139                 gboolean use_ft_metadata;
140 //              gboolean use_ft_metadata_small;
141         } thumbnails;
142
143         /* file filtering */
144         struct {
145                 gboolean show_hidden_files;
146                 gboolean show_parent_directory;
147                 gboolean show_dot_directory;
148                 gboolean disable_file_extension_checks;
149                 gboolean disable;
150         } file_filter;
151
152         struct {
153                 gchar *ext;
154         } sidecar;
155
156         /* collections */
157         struct {
158                 gboolean rectangular_selection;
159         } collections;
160
161         /* shell */
162         struct {
163                 gchar *path;
164                 gchar *options;
165         } shell;
166
167         /* file sorting */
168         struct {
169                 SortType method;
170                 gboolean ascending;
171                 gboolean case_sensitive; /* file sorting method (case) */
172                 gboolean natural;
173         } file_sort;
174
175         /* slideshow */
176         struct {
177                 gint delay;     /* in tenths of a second */
178                 gboolean random;
179                 gboolean repeat;
180         } slideshow;
181
182         /* fullscreen */
183         struct {
184                 gint screen;
185                 gboolean clean_flip;
186                 gboolean disable_saver;
187                 gboolean above;
188         } fullscreen;
189
190         /* image overlay */
191         struct {
192                 gchar *template_string;
193                 gint x;
194                 gint y;
195                 guint16 text_red;
196                 guint16 text_green;
197                 guint16 text_blue;
198                 guint16 text_alpha;
199                 guint16 background_red;
200                 guint16 background_green;
201                 guint16 background_blue;
202                 guint16 background_alpha;
203                 gchar *font;
204         } image_overlay;
205
206         /* properties dialog */
207         struct {
208                 gchar *tabs_order;
209         } properties;
210
211         /* color profiles */
212         struct {
213                 gboolean enabled;
214                 gint input_type;
215                 gchar *input_file[COLOR_PROFILE_INPUTS];
216                 gchar *input_name[COLOR_PROFILE_INPUTS];
217                 gchar *screen_file;
218                 gboolean use_image;
219                 gboolean use_x11_screen_profile;
220                 gint render_intent;
221         } color_profile;
222
223         /* Helpers programs */
224         struct {
225                 struct {
226                         gchar *command_name;
227                         gchar *command_line;
228                 } html_browser;
229         } helpers;
230
231         /* Metadata */
232         struct {
233                 gboolean enable_metadata_dirs;
234
235                 gboolean save_in_image_file;
236                 gboolean save_legacy_IPTC;
237                 gboolean warn_on_write_problems;
238
239                 gboolean save_legacy_format;
240
241                 gboolean sync_grouped_files;
242
243                 gboolean confirm_write;
244                 gint confirm_timeout;
245                 gboolean confirm_after_timeout;
246                 gboolean confirm_on_image_change;
247                 gboolean confirm_on_dir_change;
248                 gboolean keywords_case_sensitive;
249                 gboolean write_orientation;
250                 gboolean sidecar_extended_name;
251         } metadata;
252
253         /* Stereo */
254         struct {
255                 gint mode;;
256                 gint fsmode;
257                 gboolean enable_fsmode;
258                 gint fixed_w, fixed_h;
259                 gint fixed_x1, fixed_y1;
260                 gint fixed_x2, fixed_y2;
261                 struct { /* options in this struct are packed to mode and fsmode entries */
262                         gboolean mirror_right;
263                         gboolean mirror_left;
264                         gboolean flip_right;
265                         gboolean flip_left;
266                         gboolean swap;
267                         gboolean temp_disable;
268                         gboolean fs_mirror_right;
269                         gboolean fs_mirror_left;
270                         gboolean fs_flip_right;
271                         gboolean fs_flip_left;
272                         gboolean fs_swap;
273                         gboolean fs_temp_disable;
274                 } tmp;
275         } stereo;
276
277         /* copy move rename */
278         struct {
279                 gint auto_start;
280                 gchar *auto_end;
281                 gint auto_padding;
282                 gint formatted_start;
283         } cp_mv_rn;
284
285         /* log window */
286         struct {
287                 gboolean paused;
288                 gboolean line_wrap;
289                 gboolean timer_data;
290         } log_window;
291
292         gboolean read_metadata_in_idle;
293 };
294
295 ConfOptions *options;
296 CommandLine *command_line;
297
298 ConfOptions *init_options(ConfOptions *options);
299 void setup_default_options(ConfOptions *options);
300 void save_options(ConfOptions *options);
301 gboolean load_options(ConfOptions *options);
302
303 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src);
304 void free_layout_options_content(LayoutOptions *dest);
305 LayoutOptions *init_layout_options(LayoutOptions *options);
306
307 #endif /* OPTIONS_H */
308 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */