Fix #123: Limit image expansion in Fit To Window
[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 show_icon_names;
35
36         /* various */
37         gboolean tree_descend_subdirs;
38         gboolean view_dir_list_single_click_enter;
39
40         gboolean lazy_image_sync;
41         gboolean update_on_time_change;
42
43         guint duplicates_similarity_threshold;
44         guint duplicates_match;
45         gboolean duplicates_thumbnails;
46         guint duplicates_select_type;
47         gboolean rot_invariant_sim;
48
49         gint open_recent_list_maxsize;
50         gint dnd_icon_size;
51
52         gboolean save_window_positions;
53         gboolean use_saved_window_positions_for_new_windows;
54         gboolean tools_restore_state;
55
56         /* file ops */
57         struct {
58                 gboolean enable_in_place_rename;
59
60                 gboolean confirm_delete;
61                 gboolean enable_delete_key;
62                 gboolean safe_delete_enable;
63                 gchar *safe_delete_path;
64                 gint safe_delete_folder_maxsize;
65         } file_ops;
66
67         /* image */
68         struct {
69                 gboolean exif_rotate_enable;
70                 gboolean exif_proof_rotate_enable;
71                 guint scroll_reset_method;
72                 gboolean fit_window_to_image;
73                 gboolean limit_window_size;
74                 gint max_window_size;
75                 gboolean limit_autofit_size;
76                 gint max_autofit_size;
77                 gint max_enlargement_size;
78
79                 gint tile_cache_max;    /* in megabytes */
80                 gint image_cache_max;   /* in megabytes */
81                 gboolean enable_read_ahead;
82
83                 ZoomMode zoom_mode;
84                 gboolean zoom_2pass;
85                 gboolean zoom_to_fit_allow_expand;
86                 guint zoom_quality;
87                 gint zoom_increment;    /* 100 is 1.0, 5 is 0.05, 200 is 2.0, etc. */
88                 gboolean use_clutter_renderer;
89
90                 gboolean use_custom_border_color_in_fullscreen;
91                 gboolean use_custom_border_color;
92                 GdkColor border_color;
93                 GdkColor alpha_color_1;
94                 GdkColor alpha_color_2;
95         } image;
96
97         /* thumbnails */
98         struct {
99                 gint max_width;
100                 gint max_height;
101                 gboolean enable_caching;
102                 gboolean cache_into_dirs;
103                 gboolean use_xvpics;
104                 gboolean spec_standard;
105                 guint quality;
106                 gboolean use_exif;
107         } thumbnails;
108
109         /* file filtering */
110         struct {
111                 gboolean show_hidden_files;
112                 gboolean show_parent_directory;
113                 gboolean show_dot_directory;
114                 gboolean disable_file_extension_checks;
115                 gboolean disable;
116         } file_filter;
117
118         struct {
119                 gchar *ext;
120         } sidecar;
121
122         /* collections */
123         struct {
124                 gboolean rectangular_selection;
125         } collections;
126
127         /* shell */
128         struct {
129                 gchar *path;
130                 gchar *options;
131         } shell;
132
133         /* file sorting */
134         struct {
135                 SortType method;
136                 gboolean ascending;
137                 gboolean case_sensitive; /* file sorting method (case) */
138                 gboolean natural;
139         } file_sort;
140
141         /* slideshow */
142         struct {
143                 gint delay;     /* in tenths of a second */
144                 gboolean random;
145                 gboolean repeat;
146         } slideshow;
147
148         /* fullscreen */
149         struct {
150                 gint screen;
151                 gboolean clean_flip;
152                 gboolean disable_saver;
153                 gboolean above;
154         } fullscreen;
155
156         /* image overlay */
157         struct {
158                 gchar *template_string;
159                 gint x;
160                 gint y;
161                 guint16 text_red;
162                 guint16 text_green;
163                 guint16 text_blue;
164                 guint16 text_alpha;
165                 guint16 background_red;
166                 guint16 background_green;
167                 guint16 background_blue;
168                 guint16 background_alpha;
169                 gchar *font;
170         } image_overlay;
171
172         /* properties dialog */
173         struct {
174                 gchar *tabs_order;
175         } properties;
176
177         /* color profiles */
178         struct {
179                 gboolean enabled;
180                 gint input_type;
181                 gchar *input_file[COLOR_PROFILE_INPUTS];
182                 gchar *input_name[COLOR_PROFILE_INPUTS];
183                 gchar *screen_file;
184                 gboolean use_image;
185                 gboolean use_x11_screen_profile;
186                 gint render_intent;
187         } color_profile;
188
189         /* Helpers programs */
190         struct {
191                 struct {
192                         gchar *command_name;
193                         gchar *command_line;
194                 } html_browser;
195         } helpers;
196
197         /* Metadata */
198         struct {
199                 gboolean enable_metadata_dirs;
200
201                 gboolean save_in_image_file;
202                 gboolean save_legacy_IPTC;
203                 gboolean warn_on_write_problems;
204
205                 gboolean save_legacy_format;
206
207                 gboolean sync_grouped_files;
208
209                 gboolean confirm_write;
210                 gint confirm_timeout;
211                 gboolean confirm_after_timeout;
212                 gboolean confirm_on_image_change;
213                 gboolean confirm_on_dir_change;
214                 gboolean keywords_case_sensitive;
215                 gboolean write_orientation;
216                 gboolean sidecar_extended_name;
217         } metadata;
218
219         /* Stereo */
220         struct {
221                 gint mode;;
222                 gint fsmode;
223                 gboolean enable_fsmode;
224                 gint fixed_w, fixed_h;
225                 gint fixed_x1, fixed_y1;
226                 gint fixed_x2, fixed_y2;
227                 struct { /* options in this struct are packed to mode and fsmode entries */
228                         gboolean mirror_right;
229                         gboolean mirror_left;
230                         gboolean flip_right;
231                         gboolean flip_left;
232                         gboolean swap;
233                         gboolean temp_disable;
234                         gboolean fs_mirror_right;
235                         gboolean fs_mirror_left;
236                         gboolean fs_flip_right;
237                         gboolean fs_flip_left;
238                         gboolean fs_swap;
239                         gboolean fs_temp_disable;
240                 } tmp;
241         } stereo;
242 };
243
244 ConfOptions *options;
245 CommandLine *command_line;
246
247 ConfOptions *init_options(ConfOptions *options);
248 void setup_default_options(ConfOptions *options);
249 void save_options(ConfOptions *options);
250 gboolean load_options(ConfOptions *options);
251
252 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src);
253 void free_layout_options_content(LayoutOptions *dest);
254 LayoutOptions *init_layout_options(LayoutOptions *options);
255
256 #endif /* OPTIONS_H */
257 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */