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