Mercurial > geeqie
annotate src/globals.c @ 208:fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
author | nadvornik |
---|---|
date | Sat, 29 Mar 2008 10:38:15 +0000 |
parents | f6e307c7bad6 |
children | ad78ad18523a |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
1 | 4 * |
5 * Author: John Ellis | |
6 * | |
9 | 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! | |
1 | 10 */ |
11 | |
9 | 12 |
1 | 13 #include "gqview.h" |
14 | |
15 | |
16 GList *filename_filter = NULL; | |
17 | |
18 /* -- options -- */ | |
9 | 19 gint main_window_w = 500; |
20 gint main_window_h = 400; | |
1 | 21 gint main_window_x = 0; |
22 gint main_window_y = 0; | |
9 | 23 gint main_window_maximized = FALSE; |
1 | 24 |
9 | 25 gint float_window_w = 260; |
26 gint float_window_h = 450; | |
1 | 27 gint float_window_x = 0; |
28 gint float_window_y = 0; | |
9 | 29 gint float_window_divider = -1; |
30 | |
31 gint window_hdivider_pos = -1; | |
32 gint window_vdivider_pos = 200; | |
1 | 33 |
34 gint save_window_positions = FALSE; | |
35 gint tools_float = FALSE; | |
36 gint tools_hidden = FALSE; | |
9 | 37 gint toolbar_hidden = FALSE; |
1 | 38 gint progressive_key_scrolling = FALSE; |
39 | |
40 gint startup_path_enable = FALSE; | |
41 gchar *startup_path = NULL; | |
42 gint confirm_delete = TRUE; | |
9 | 43 gint enable_delete_key = TRUE; |
44 gint safe_delete_enable = FALSE; | |
45 gchar *safe_delete_path = NULL; | |
46 gint safe_delete_size = 20; | |
1 | 47 gint restore_tool = FALSE; |
48 gint zoom_mode = ZOOM_RESET_ORIGINAL; | |
9 | 49 gint two_pass_zoom = TRUE; |
50 gint scroll_reset_method = SCROLL_RESET_TOPLEFT; | |
1 | 51 gint fit_window = FALSE; |
52 gint limit_window_size = FALSE; | |
9 | 53 gint zoom_to_fit_expands = TRUE; |
1 | 54 gint max_window_size = 100; |
9 | 55 gint thumb_max_width = 96; |
56 gint thumb_max_height = 72; | |
57 gint enable_thumb_caching = TRUE; | |
58 gint enable_thumb_dirs = FALSE; | |
1 | 59 gint use_xvpics_thumbnails = TRUE; |
14
25335c62cd9b
##### Note: GQview CVS on sourceforge is not always up to date, please use #####
gqview
parents:
9
diff
changeset
|
60 gint thumbnail_fast = TRUE; |
9 | 61 gint thumbnail_spec_standard = TRUE; |
62 gint enable_metadata_dirs = FALSE; | |
1 | 63 gint show_dot_files = FALSE; |
64 gint file_filter_disable = FALSE; | |
9 | 65 gchar *editor_name[GQVIEW_EDITOR_SLOTS]; |
66 gchar *editor_command[GQVIEW_EDITOR_SLOTS]; | |
1 | 67 |
68 gint thumbnails_enabled = FALSE; | |
9 | 69 SortType file_sort_method = SORT_NAME; |
70 gint file_sort_ascending = TRUE; | |
1 | 71 |
9 | 72 gint slideshow_delay = 150; |
1 | 73 gint slideshow_random = FALSE; |
74 gint slideshow_repeat = FALSE; | |
75 | |
9 | 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 | |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
94 gint user_specified_window_background = FALSE; |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
95 GdkColor window_background_color = {0, 0, 0, 0}; |
9 | 96 |
97 gint fullscreen_screen = -1; | |
98 gint fullscreen_clean_flip = FALSE; | |
99 gint fullscreen_disable_saver = TRUE; | |
100 gint fullscreen_above = FALSE; | |
101 | |
102 gint dupe_custom_threshold = 99; | |
4 | 103 |
1 | 104 gint debug = FALSE; |
105 | |
9 | 106 /* layout */ |
107 gchar *layout_order = NULL; | |
108 gint layout_style = 0; | |
109 | |
110 gint layout_view_icons = FALSE; | |
111 gint layout_view_tree = FALSE; | |
1 | 112 |
9 | 113 gint show_icon_names = TRUE; |
1 | 114 |
9 | 115 gint tree_descend_subdirs = FALSE; |
116 | |
117 gint lazy_image_sync = FALSE; | |
118 gint update_on_time_change = TRUE; | |
119 gint exif_rotate_enable = FALSE; | |
120 | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
121 /* color profiles */ |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
122 gint color_profile_enabled = FALSE; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
123 gint color_profile_input_type = 0; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
124 gchar *color_profile_input_file[COLOR_PROFILE_INPUTS]; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
125 gchar *color_profile_input_name[COLOR_PROFILE_INPUTS]; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
126 gint color_profile_screen_type = 0; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
127 gchar *color_profile_screen_file = NULL; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
128 gint color_profile_use_image = TRUE; |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
129 |
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
14
diff
changeset
|
130 |