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