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