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