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