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