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