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