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