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