Mercurial > geeqie
annotate src/globals.c @ 424:26c6e768bd47
first support for AdobeRGB colorspace
author | nadvornik |
---|---|
date | Sat, 19 Apr 2008 16:26:29 +0000 |
parents | 9e521adbf312 |
children | d7272434b8c2 |
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 |
281 | 13 #include "main.h" |
1 | 14 |
320 | 15 #ifdef DEBUG |
16 gint debug = FALSE; | |
17 #endif | |
18 | |
1 | 19 |
318 | 20 ConfOptions *init_options(ConfOptions *options) |
21 { | |
22 if (!options) options = g_new0(ConfOptions, 1); | |
23 | |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
24 options->layout.main_window.w = 500; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
25 options->layout.main_window.h = 400; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
26 options->layout.main_window.x = 0; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
27 options->layout.main_window.y = 0; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
28 options->layout.main_window.maximized = FALSE; |
318 | 29 |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
30 options->layout.float_window.w = 260; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
31 options->layout.float_window.h = 450; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
32 options->layout.float_window.x = 0; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
33 options->layout.float_window.y = 0; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
34 options->layout.float_window.vdivider_pos = -1; |
318 | 35 |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
36 options->layout.main_window.hdivider_pos = -1; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
37 options->layout.main_window.vdivider_pos = 200; |
318 | 38 |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
39 options->layout.save_window_positions = FALSE; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
40 options->layout.tools_float = FALSE; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
41 options->layout.tools_hidden = FALSE; |
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
42 options->layout.toolbar_hidden = FALSE; |
318 | 43 options->progressive_key_scrolling = FALSE; |
44 | |
45 options->startup_path_enable = FALSE; | |
46 options->startup_path = NULL; | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
47 options->file_ops.confirm_delete = TRUE; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
48 options->file_ops.enable_delete_key = TRUE; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
49 options->file_ops.safe_delete_enable = FALSE; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
50 options->file_ops.safe_delete_path = NULL; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
51 options->file_ops.safe_delete_folder_maxsize = 128; |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
334
diff
changeset
|
52 options->layout.tools_restore_state = FALSE; |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
53 |
334 | 54 options->image.zoom_mode = ZOOM_RESET_ORIGINAL; |
55 options->image.zoom_2pass = TRUE; | |
56 options->image.scroll_reset_method = SCROLL_RESET_TOPLEFT; | |
57 options->image.fit_window_to_image = FALSE; | |
58 options->image.limit_window_size = FALSE; | |
59 options->image.zoom_to_fit_allow_expand = TRUE; | |
60 options->image.max_window_size = 100; | |
61 options->image.limit_autofit_size = FALSE; | |
62 options->image.max_autofit_size = 100; | |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
63 |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
64 options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
65 options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT; |
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
66 |
333 | 67 options->thumbnails.max_width = DEFAULT_THUMB_WIDTH; |
68 options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT; | |
69 options->thumbnails.enable_caching = TRUE; | |
70 options->thumbnails.cache_into_dirs = FALSE; | |
71 options->thumbnails.use_xvpics = TRUE; | |
72 options->thumbnails.fast = TRUE; | |
73 options->thumbnails.spec_standard = TRUE; | |
318 | 74 options->enable_metadata_dirs = FALSE; |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
75 |
356 | 76 options->file_filter.show_hidden_files = FALSE; |
373
61a3c8b05b24
Add a new option in Preferences > Filtering to allow the
zas_
parents:
356
diff
changeset
|
77 options->file_filter.show_dot_directory = FALSE; |
332 | 78 options->file_filter.disable = FALSE; |
318 | 79 |
80 | |
340
77103f3f2cb1
Rename option thumbnails.enabled to layout.show_thumbnails as it makes
zas_
parents:
339
diff
changeset
|
81 options->layout.show_thumbnails = FALSE; |
329 | 82 options->file_sort.method = SORT_NAME; |
83 options->file_sort.ascending = TRUE; | |
318 | 84 |
326 | 85 options->slideshow.delay = 150; |
86 options->slideshow.random = FALSE; | |
87 options->slideshow.repeat = FALSE; | |
318 | 88 |
89 options->mousewheel_scrolls = FALSE; | |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
90 options->file_ops.enable_in_place_rename = TRUE; |
318 | 91 |
343
63380ea3e65d
Rename recent_list_max/open_recent_max to open_recent_list_maxsize.
zas_
parents:
342
diff
changeset
|
92 options->open_recent_list_maxsize = 10; |
318 | 93 |
330 | 94 options->collections.rectangular_selection = FALSE; |
318 | 95 |
334 | 96 options->image.tile_cache_max = 10; |
333 | 97 options->thumbnails.quality = (gint)GDK_INTERP_TILES; |
334 | 98 options->image.zoom_quality = (gint)GDK_INTERP_BILINEAR; |
99 options->image.dither_quality = (gint)GDK_RGB_DITHER_NORMAL; | |
318 | 100 |
334 | 101 options->image.zoom_increment = 5; |
318 | 102 |
334 | 103 options->image.enable_read_ahead = TRUE; |
318 | 104 |
105 options->place_dialogs_under_mouse = FALSE; | |
106 | |
339
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
107 options->image.use_custom_border_color = FALSE; |
de1c2cd06fce
Rename user_specified_window_background and window_background_color
zas_
parents:
338
diff
changeset
|
108 memset(&options->image.border_color, 0, sizeof(options->image.border_color)); |
318 | 109 |
322 | 110 options->fullscreen.screen = -1; |
111 options->fullscreen.clean_flip = FALSE; | |
112 options->fullscreen.disable_saver = TRUE; | |
113 options->fullscreen.above = FALSE; | |
114 options->fullscreen.show_info = TRUE; | |
115 options->fullscreen.info = NULL; | |
318 | 116 |
342
07490120df2d
Rename dupe_custom_threshold option to duplicates_similarity_threshold.
zas_
parents:
341
diff
changeset
|
117 options->duplicates_similarity_threshold = 99; |
318 | 118 |
329 | 119 options->file_sort.case_sensitive = FALSE; |
319 | 120 |
320 | 121 /* layout */ |
327 | 122 options->layout.order = NULL; |
123 options->layout.style = 0; | |
320 | 124 |
327 | 125 options->layout.view_as_icons = FALSE; |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
373
diff
changeset
|
126 options->layout.dir_view_type = DIRVIEW_LIST; |
320 | 127 |
128 options->show_icon_names = TRUE; | |
129 | |
130 options->tree_descend_subdirs = FALSE; | |
131 | |
132 options->lazy_image_sync = FALSE; | |
133 options->update_on_time_change = TRUE; | |
334 | 134 options->image.exif_rotate_enable = TRUE; |
320 | 135 |
136 /* color profiles */ | |
327 | 137 options->color_profile.enabled = FALSE; |
138 options->color_profile.input_type = 0; | |
139 options->color_profile.screen_type = 0; | |
140 options->color_profile.screen_file = NULL; | |
141 options->color_profile.use_image = TRUE; | |
320 | 142 |
318 | 143 return options; |
144 } |