c9b2a842db91a88ef622bae1d4fa405f5a60ba61
[geeqie.git] / src / globals.c
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12
13 #include "main.h"
14
15
16 GList *filename_filter = NULL;
17
18 /* -- options -- */
19 gint main_window_w = 500;
20 gint main_window_h = 400;
21 gint main_window_x = 0;
22 gint main_window_y = 0;
23 gint main_window_maximized = FALSE;
24
25 gint float_window_w = 260;
26 gint float_window_h = 450;
27 gint float_window_x = 0;
28 gint float_window_y = 0;
29 gint float_window_divider = -1;
30
31 gint window_hdivider_pos = -1;
32 gint window_vdivider_pos = 200;
33
34 gint save_window_positions = FALSE;
35 gint tools_float = FALSE;
36 gint tools_hidden = FALSE;
37 gint toolbar_hidden = FALSE;
38 gint progressive_key_scrolling = FALSE;
39
40 gint startup_path_enable = FALSE;
41 gchar *startup_path = NULL;
42 gint confirm_delete = TRUE;
43 gint enable_delete_key = TRUE;
44 gint safe_delete_enable = FALSE;
45 gchar *safe_delete_path = NULL;
46 gint safe_delete_size = 128;
47 gint restore_tool = FALSE;
48 gint zoom_mode = ZOOM_RESET_ORIGINAL;
49 gint two_pass_zoom = TRUE;
50 gint scroll_reset_method = SCROLL_RESET_TOPLEFT;
51 gint fit_window = FALSE;
52 gint limit_window_size = FALSE;
53 gint zoom_to_fit_expands = TRUE;
54 gint max_window_size = 100;
55 gint limit_autofit_size = FALSE;
56 gint max_autofit_size = 100;
57 gint thumb_max_width = DEFAULT_THUMB_WIDTH;
58 gint thumb_max_height = DEFAULT_THUMB_HEIGHT;
59 gint enable_thumb_caching = TRUE;
60 gint enable_thumb_dirs = FALSE;
61 gint use_xvpics_thumbnails = TRUE;
62 gint thumbnail_fast = TRUE;
63 gint thumbnail_spec_standard = TRUE;
64 gint enable_metadata_dirs = FALSE;
65 gint show_dot_files = FALSE;
66 gint file_filter_disable = FALSE;
67 gchar *editor_name[GQVIEW_EDITOR_SLOTS];
68 gchar *editor_command[GQVIEW_EDITOR_SLOTS];
69
70 gint thumbnails_enabled = FALSE;
71 SortType file_sort_method = SORT_NAME;
72 gint file_sort_ascending = TRUE;
73
74 gint slideshow_delay = 150;
75 gint slideshow_random = FALSE;
76 gint slideshow_repeat = FALSE;
77
78 gint mousewheel_scrolls = FALSE;
79 gint enable_in_place_rename = TRUE;
80
81 gint recent_list_max = 10;
82
83 gint collection_rectangular_selection = FALSE;
84
85 gint tile_cache_max = 10;
86 gint thumbnail_quality = (gint)GDK_INTERP_TILES;
87 gint zoom_quality = (gint)GDK_INTERP_BILINEAR;
88 gint dither_quality = (gint)GDK_RGB_DITHER_NORMAL;
89
90 gint zoom_increment = 5;
91
92 gint enable_read_ahead = TRUE;
93
94 gint place_dialogs_under_mouse = FALSE;
95
96 gint user_specified_window_background = FALSE;
97 GdkColor window_background_color = {0, 0, 0, 0};
98
99 gint fullscreen_screen = -1;
100 gint fullscreen_clean_flip = FALSE;
101 gint fullscreen_disable_saver = TRUE;
102 gint fullscreen_above = FALSE;
103 gint show_fullscreen_info = TRUE;
104 gchar *fullscreen_info = NULL;
105
106 gint dupe_custom_threshold = 99;
107
108 #ifdef DEBUG
109 gint debug = FALSE;
110 #endif
111
112 /* layout */
113 gchar *layout_order = NULL;
114 gint layout_style = 0;
115
116 gint layout_view_icons = FALSE;
117 gint layout_view_tree = FALSE;
118
119 gint show_icon_names = TRUE;
120
121 gint tree_descend_subdirs = FALSE;
122
123 gint lazy_image_sync = FALSE;
124 gint update_on_time_change = TRUE;
125 gint exif_rotate_enable = FALSE;
126
127 /* color profiles */
128 gint color_profile_enabled = FALSE;
129 gint color_profile_input_type = 0;
130 gchar *color_profile_input_file[COLOR_PROFILE_INPUTS];
131 gchar *color_profile_input_name[COLOR_PROFILE_INPUTS];
132 gint color_profile_screen_type = 0;
133 gchar *color_profile_screen_file = NULL;
134 gint color_profile_use_image = TRUE;
135
136