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