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