Ref #331: Overimposed custom composition rule lines
[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 //              gboolean use_ft_metadata_small;
144         } thumbnails;
145
146         /* file filtering */
147         struct {
148                 gboolean show_hidden_files;
149                 gboolean show_parent_directory;
150                 gboolean show_dot_directory;
151                 gboolean disable_file_extension_checks;
152                 gboolean disable;
153         } file_filter;
154
155         struct {
156                 gchar *ext;
157         } sidecar;
158
159         /* collections */
160         struct {
161                 gboolean rectangular_selection;
162         } collections;
163
164         /* shell */
165         struct {
166                 gchar *path;
167                 gchar *options;
168         } shell;
169
170         /* file sorting */
171         struct {
172                 SortType method;
173                 gboolean ascending;
174                 gboolean case_sensitive; /* file sorting method (case) */
175                 gboolean natural;
176         } file_sort;
177
178         /* slideshow */
179         struct {
180                 gint delay;     /* in tenths of a second */
181                 gboolean random;
182                 gboolean repeat;
183         } slideshow;
184
185         /* fullscreen */
186         struct {
187                 gint screen;
188                 gboolean clean_flip;
189                 gboolean disable_saver;
190                 gboolean above;
191         } fullscreen;
192
193         /* image overlay */
194         struct {
195                 gchar *template_string;
196                 gint x;
197                 gint y;
198                 guint16 text_red;
199                 guint16 text_green;
200                 guint16 text_blue;
201                 guint16 text_alpha;
202                 guint16 background_red;
203                 guint16 background_green;
204                 guint16 background_blue;
205                 guint16 background_alpha;
206                 gchar *font;
207         } image_overlay;
208
209         /* properties dialog */
210         struct {
211                 gchar *tabs_order;
212         } properties;
213
214         /* color profiles */
215         struct {
216                 gboolean enabled;
217                 gint input_type;
218                 gchar *input_file[COLOR_PROFILE_INPUTS];
219                 gchar *input_name[COLOR_PROFILE_INPUTS];
220                 gchar *screen_file;
221                 gboolean use_image;
222                 gboolean use_x11_screen_profile;
223                 gint render_intent;
224         } color_profile;
225
226         /* Helpers programs */
227         struct {
228                 struct {
229                         gchar *command_name;
230                         gchar *command_line;
231                 } html_browser;
232         } helpers;
233
234         /* Metadata */
235         struct {
236                 gboolean enable_metadata_dirs;
237
238                 gboolean save_in_image_file;
239                 gboolean save_legacy_IPTC;
240                 gboolean warn_on_write_problems;
241
242                 gboolean save_legacy_format;
243
244                 gboolean sync_grouped_files;
245
246                 gboolean confirm_write;
247                 gint confirm_timeout;
248                 gboolean confirm_after_timeout;
249                 gboolean confirm_on_image_change;
250                 gboolean confirm_on_dir_change;
251                 gboolean keywords_case_sensitive;
252                 gboolean write_orientation;
253                 gboolean sidecar_extended_name;
254         } metadata;
255
256         /* Stereo */
257         struct {
258                 gint mode;;
259                 gint fsmode;
260                 gboolean enable_fsmode;
261                 gint fixed_w, fixed_h;
262                 gint fixed_x1, fixed_y1;
263                 gint fixed_x2, fixed_y2;
264                 struct { /* options in this struct are packed to mode and fsmode entries */
265                         gboolean mirror_right;
266                         gboolean mirror_left;
267                         gboolean flip_right;
268                         gboolean flip_left;
269                         gboolean swap;
270                         gboolean temp_disable;
271                         gboolean fs_mirror_right;
272                         gboolean fs_mirror_left;
273                         gboolean fs_flip_right;
274                         gboolean fs_flip_left;
275                         gboolean fs_swap;
276                         gboolean fs_temp_disable;
277                 } tmp;
278         } stereo;
279
280         /* copy move rename */
281         struct {
282                 gint auto_start;
283                 gchar *auto_end;
284                 gint auto_padding;
285                 gint formatted_start;
286         } cp_mv_rn;
287
288         /* log window */
289         struct {
290                 gboolean paused;
291                 gboolean line_wrap;
292                 gboolean timer_data;
293         } log_window;
294
295         /* star rating */
296         struct {
297                 gunichar star;
298                 gunichar rejected;
299         } star_rating;
300
301         gboolean read_metadata_in_idle;
302 };
303
304 ConfOptions *options;
305 CommandLine *command_line;
306
307 ConfOptions *init_options(ConfOptions *options);
308 void setup_default_options(ConfOptions *options);
309 void save_options(ConfOptions *options);
310 gboolean load_options(ConfOptions *options);
311
312 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src);
313 void free_layout_options_content(LayoutOptions *dest);
314 LayoutOptions *init_layout_options(LayoutOptions *options);
315
316 #endif /* OPTIONS_H */
317 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */