Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
[geeqie.git] / src / globals.c
1 /*
2  * GQview
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 "gqview.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 = 20;
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 thumb_max_width = 96;
56 gint thumb_max_height = 72;
57 gint enable_thumb_caching = TRUE;
58 gint enable_thumb_dirs = FALSE;
59 gint use_xvpics_thumbnails = TRUE;
60 gint thumbnail_fast = TRUE;
61 gint thumbnail_spec_standard = TRUE;
62 gint enable_metadata_dirs = FALSE;
63 gint show_dot_files = FALSE;
64 gint file_filter_disable = FALSE;
65 gchar *editor_name[GQVIEW_EDITOR_SLOTS];
66 gchar *editor_command[GQVIEW_EDITOR_SLOTS];
67
68 gint thumbnails_enabled = FALSE;
69 SortType file_sort_method = SORT_NAME;
70 gint file_sort_ascending = TRUE;
71
72 gint slideshow_delay = 150;
73 gint slideshow_random = FALSE;
74 gint slideshow_repeat = FALSE;
75
76 gint mousewheel_scrolls = FALSE;
77 gint enable_in_place_rename = TRUE;
78
79 gint recent_list_max = 10;
80
81 gint collection_rectangular_selection = FALSE;
82
83 gint tile_cache_max = 10;
84 gint thumbnail_quality = (gint)GDK_INTERP_TILES;
85 gint zoom_quality = (gint)GDK_INTERP_BILINEAR;
86 gint dither_quality = (gint)GDK_RGB_DITHER_NORMAL;
87
88 gint zoom_increment = 5;
89
90 gint enable_read_ahead = TRUE;
91
92 gint place_dialogs_under_mouse = FALSE;
93
94 gint black_window_background = FALSE;
95
96 gint fullscreen_screen = -1;
97 gint fullscreen_clean_flip = FALSE;
98 gint fullscreen_disable_saver = TRUE;
99 gint fullscreen_above = FALSE;
100
101 gint dupe_custom_threshold = 99;
102
103 gint debug = FALSE;
104
105 /* layout */
106 gchar *layout_order = NULL;
107 gint layout_style = 0;
108
109 gint layout_view_icons = FALSE;
110 gint layout_view_tree = FALSE;
111
112 gint show_icon_names = TRUE;
113
114 gint tree_descend_subdirs = FALSE;
115
116 gint lazy_image_sync = FALSE;
117 gint update_on_time_change = TRUE;
118 gint exif_rotate_enable = FALSE;
119
120 /* color profiles */
121 gint color_profile_enabled = FALSE;
122 gint color_profile_input_type = 0;
123 gchar *color_profile_input_file[COLOR_PROFILE_INPUTS];
124 gchar *color_profile_input_name[COLOR_PROFILE_INPUTS];
125 gint color_profile_screen_type = 0;
126 gchar *color_profile_screen_file = NULL;
127 gint color_profile_use_image = TRUE;
128
129