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