Mercurial > geeqie
annotate src/globals.c @ 435:6802aeeed196
Use sizeof() for buffer size where appropriate.
author | zas_ |
---|---|
date | Sat, 19 Apr 2008 22:32:07 +0000 |
parents | 5ddcf93278c7 |
children | 4b2d7f9af171 |
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 | |
431 | 24 options->collections.rectangular_selection = FALSE; |
318 | 25 |
431 | 26 options->color_profile.enabled = FALSE; |
27 options->color_profile.input_type = 0; | |
28 options->color_profile.screen_file = NULL; | |
29 options->color_profile.screen_type = 0; | |
30 options->color_profile.use_image = TRUE; | |
318 | 31 |
431 | 32 options->duplicates_similarity_threshold = 99; |
33 options->enable_metadata_dirs = FALSE; | |
318 | 34 |
431 | 35 options->file_filter.disable = FALSE; |
36 options->file_filter.show_dot_directory = FALSE; | |
37 options->file_filter.show_hidden_files = FALSE; | |
318 | 38 |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
39 options->file_ops.confirm_delete = TRUE; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
40 options->file_ops.enable_delete_key = TRUE; |
431 | 41 options->file_ops.enable_in_place_rename = TRUE; |
341
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
42 options->file_ops.safe_delete_enable = FALSE; |
15c6b94545a2
Move safe_delete* and in place rename options to file_ops
zas_
parents:
340
diff
changeset
|
43 options->file_ops.safe_delete_folder_maxsize = 128; |
431 | 44 options->file_ops.safe_delete_path = NULL; |
45 | |
46 options->file_sort.ascending = TRUE; | |
47 options->file_sort.case_sensitive = FALSE; | |
48 options->file_sort.method = SORT_NAME; | |
49 | |
50 options->fullscreen.above = FALSE; | |
51 options->fullscreen.clean_flip = FALSE; | |
52 options->fullscreen.disable_saver = TRUE; | |
53 options->fullscreen.info = NULL; | |
54 options->fullscreen.screen = -1; | |
55 options->fullscreen.show_info = TRUE; | |
56 | |
57 memset(&options->image.border_color, 0, sizeof(options->image.border_color)); | |
58 options->image.dither_quality = (gint)GDK_RGB_DITHER_NORMAL; | |
59 options->image.enable_read_ahead = TRUE; | |
60 options->image.exif_rotate_enable = TRUE; | |
334 | 61 options->image.fit_window_to_image = FALSE; |
431 | 62 options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT; |
334 | 63 options->image.limit_autofit_size = FALSE; |
431 | 64 options->image.limit_window_size = FALSE; |
334 | 65 options->image.max_autofit_size = 100; |
431 | 66 options->image.max_window_size = 100; |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
67 options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT; |
431 | 68 options->image.scroll_reset_method = SCROLL_RESET_TOPLEFT; |
69 options->image.tile_cache_max = 10; | |
70 options->image.use_custom_border_color = FALSE; | |
71 options->image.zoom_2pass = TRUE; | |
72 options->image.zoom_increment = 5; | |
73 options->image.zoom_mode = ZOOM_RESET_ORIGINAL; | |
74 options->image.zoom_quality = (gint)GDK_INTERP_BILINEAR; | |
75 options->image.zoom_to_fit_allow_expand = TRUE; | |
413
9e521adbf312
Add two new options to control image read buffer at runtime.
zas_
parents:
380
diff
changeset
|
76 |
431 | 77 options->layout.dir_view_type = DIRVIEW_LIST; |
78 options->layout.float_window.h = 450; | |
79 options->layout.float_window.vdivider_pos = -1; | |
80 options->layout.float_window.w = 260; | |
81 options->layout.float_window.x = 0; | |
82 options->layout.float_window.y = 0; | |
83 options->layout.main_window.h = 400; | |
84 options->layout.main_window.hdivider_pos = -1; | |
85 options->layout.main_window.maximized = FALSE; | |
86 options->layout.main_window.vdivider_pos = 200; | |
87 options->layout.main_window.w = 500; | |
88 options->layout.main_window.x = 0; | |
89 options->layout.main_window.y = 0; | |
90 options->layout.order = NULL; | |
91 options->layout.save_window_positions = FALSE; | |
433
5ddcf93278c7
Save Show Marks state to rc file and display current state in menu.
zas_
parents:
431
diff
changeset
|
92 options->layout.show_marks = FALSE; |
431 | 93 options->layout.show_thumbnails = FALSE; |
94 options->layout.style = 0; | |
95 options->layout.toolbar_hidden = FALSE; | |
96 options->layout.tools_float = FALSE; | |
97 options->layout.tools_hidden = FALSE; | |
98 options->layout.tools_restore_state = FALSE; | |
99 options->layout.view_as_icons = FALSE; | |
318 | 100 |
431 | 101 options->lazy_image_sync = FALSE; |
102 options->mousewheel_scrolls = FALSE; | |
103 options->open_recent_list_maxsize = 10; | |
104 options->place_dialogs_under_mouse = FALSE; | |
105 options->progressive_key_scrolling = FALSE; | |
106 options->show_icon_names = TRUE; | |
318 | 107 |
326 | 108 options->slideshow.delay = 150; |
109 options->slideshow.random = FALSE; | |
110 options->slideshow.repeat = FALSE; | |
318 | 111 |
431 | 112 options->startup_path_enable = FALSE; |
113 options->startup_path = NULL; | |
318 | 114 |
431 | 115 options->thumbnails.cache_into_dirs = FALSE; |
116 options->thumbnails.enable_caching = TRUE; | |
117 options->thumbnails.fast = TRUE; | |
118 options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT; | |
119 options->thumbnails.max_width = DEFAULT_THUMB_WIDTH; | |
120 options->thumbnails.quality = (gint)GDK_INTERP_TILES; | |
121 options->thumbnails.spec_standard = TRUE; | |
122 options->thumbnails.use_xvpics = TRUE; | |
318 | 123 |
320 | 124 options->tree_descend_subdirs = FALSE; |
125 options->update_on_time_change = TRUE; | |
126 | |
318 | 127 return options; |
128 } |