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