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