Mercurial > geeqie.yaz
annotate src/options.c @ 1329:1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
author | zas_ |
---|---|
date | Thu, 26 Feb 2009 20:50:36 +0000 |
parents | 055ed09d5a03 |
children | 4179d41d1149 |
rev | line source |
---|---|
508 | 1 /* |
2 * Geeqie | |
1284 | 3 * Copyright (C) 2008 - 2009 The Geeqie Team |
508 | 4 * |
5 * Authors: Vladimir Nadvornik, Laurent Monin | |
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 #include "main.h" | |
13 #include "options.h" | |
14 | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
15 #include "bar_exif.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
16 #include "editors.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
17 #include "filefilter.h" |
612 | 18 #include "histogram.h" /* HCHAN_RGB */ |
619
2ccc7d856d55
Initialize to correct value (OSD_SHOW_NOTHING instead of FALSE).
zas_
parents:
612
diff
changeset
|
19 #include "image-overlay.h" /* OSD_SHOW_NOTHING */ |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
20 #include "layout.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
21 #include "layout_image.h" |
1019 | 22 #include "rcfile.h" |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
23 #include "ui_bookmark.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
24 #include "ui_fileops.h" |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
25 #include "window.h" |
612 | 26 |
508 | 27 ConfOptions *init_options(ConfOptions *options) |
28 { | |
29 if (!options) options = g_new0(ConfOptions, 1); | |
30 | |
31 options->collections.rectangular_selection = FALSE; | |
32 | |
1034 | 33 options->color_profile.enabled = TRUE; |
508 | 34 options->color_profile.input_type = 0; |
35 options->color_profile.screen_file = NULL; | |
36 options->color_profile.screen_type = 0; | |
37 options->color_profile.use_image = TRUE; | |
38 | |
39 options->dnd_icon_size = 48; | |
40 options->duplicates_similarity_threshold = 99; | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
41 |
508 | 42 options->file_filter.disable = FALSE; |
43 options->file_filter.show_dot_directory = FALSE; | |
44 options->file_filter.show_hidden_files = FALSE; | |
45 | |
46 options->file_ops.confirm_delete = TRUE; | |
47 options->file_ops.enable_delete_key = TRUE; | |
48 options->file_ops.enable_in_place_rename = TRUE; | |
49 options->file_ops.safe_delete_enable = FALSE; | |
50 options->file_ops.safe_delete_folder_maxsize = 128; | |
51 options->file_ops.safe_delete_path = NULL; | |
52 | |
53 options->file_sort.ascending = TRUE; | |
54 options->file_sort.case_sensitive = FALSE; | |
55 options->file_sort.method = SORT_NAME; | |
56 | |
57 options->fullscreen.above = FALSE; | |
58 options->fullscreen.clean_flip = FALSE; | |
59 options->fullscreen.disable_saver = TRUE; | |
60 options->fullscreen.screen = -1; | |
61 | |
1329
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
62 options->image_overlay.common.histogram_channel = HCHAN_RGB; |
1fc356f629fe
Clean up histogram stuff: options saving/restoring, osd histogram separation, tidy up.
zas_
parents:
1320
diff
changeset
|
63 options->image_overlay.common.histogram_mode = 1; |
612 | 64 |
508 | 65 memset(&options->image.border_color, 0, sizeof(options->image.border_color)); |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
66 options->image.dither_quality = GDK_RGB_DITHER_NORMAL; |
508 | 67 options->image.enable_read_ahead = TRUE; |
68 options->image.exif_rotate_enable = TRUE; | |
69 options->image.fit_window_to_image = FALSE; | |
70 options->image.idle_read_loop_count = IMAGE_LOADER_IDLE_READ_LOOP_COUNT_DEFAULT; | |
71 options->image.limit_autofit_size = FALSE; | |
1034 | 72 options->image.limit_window_size = TRUE; |
508 | 73 options->image.max_autofit_size = 100; |
1034 | 74 options->image.max_window_size = 90; |
508 | 75 options->image.read_buffer_size = IMAGE_LOADER_READ_BUFFER_SIZE_DEFAULT; |
1037
86148ec8a299
fixed various problems with preserving viewport on image change,
nadvornik
parents:
1034
diff
changeset
|
76 options->image.scroll_reset_method = SCROLL_RESET_NOCHANGE; |
508 | 77 options->image.tile_cache_max = 10; |
848 | 78 options->image.image_cache_max = 128; /* 4 x 10MPix */ |
508 | 79 options->image.use_custom_border_color = FALSE; |
80 options->image.zoom_2pass = TRUE; | |
81 options->image.zoom_increment = 5; | |
1034 | 82 options->image.zoom_mode = ZOOM_RESET_NONE; |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
83 options->image.zoom_quality = GDK_INTERP_BILINEAR; |
1034 | 84 options->image.zoom_to_fit_allow_expand = FALSE; |
508 | 85 |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
86 options->image_overlay.common.state = OSD_SHOW_NOTHING; |
508 | 87 options->image_overlay.common.show_at_startup = FALSE; |
88 options->image_overlay.common.template_string = NULL; | |
822
df541dc41707
Allow to set image overlay info position through options:
zas_
parents:
768
diff
changeset
|
89 options->image_overlay.common.x = 10; |
df541dc41707
Allow to set image overlay info position through options:
zas_
parents:
768
diff
changeset
|
90 options->image_overlay.common.y = -10; |
508 | 91 |
92 options->layout.dir_view_type = DIRVIEW_LIST; | |
556
fe675761d091
Replace Layout icon_view field by more generic file_view_type.
zas_
parents:
508
diff
changeset
|
93 options->layout.file_view_type = FILEVIEW_LIST; |
508 | 94 options->layout.float_window.h = 450; |
95 options->layout.float_window.vdivider_pos = -1; | |
96 options->layout.float_window.w = 260; | |
97 options->layout.float_window.x = 0; | |
98 options->layout.float_window.y = 0; | |
980
a4a38ea9fbaa
Add an option named layout.home_path which modifies the behavior of the Home button.
zas_
parents:
870
diff
changeset
|
99 options->layout.home_path = NULL; |
1034 | 100 options->layout.main_window.h = 540; |
508 | 101 options->layout.main_window.hdivider_pos = -1; |
102 options->layout.main_window.maximized = FALSE; | |
103 options->layout.main_window.vdivider_pos = 200; | |
1034 | 104 options->layout.main_window.w = 720; |
508 | 105 options->layout.main_window.x = 0; |
106 options->layout.main_window.y = 0; | |
107 options->layout.order = NULL; | |
1034 | 108 options->layout.save_window_positions = TRUE; |
825 | 109 options->layout.show_directory_date = FALSE; |
508 | 110 options->layout.show_marks = FALSE; |
111 options->layout.show_thumbnails = FALSE; | |
112 options->layout.style = 0; | |
113 options->layout.toolbar_hidden = FALSE; | |
114 options->layout.tools_float = FALSE; | |
115 options->layout.tools_hidden = FALSE; | |
1034 | 116 options->layout.tools_restore_state = TRUE; |
508 | 117 |
118 options->lazy_image_sync = FALSE; | |
119 options->mousewheel_scrolls = FALSE; | |
120 options->open_recent_list_maxsize = 10; | |
121 options->place_dialogs_under_mouse = FALSE; | |
122 | |
1034 | 123 options->progressive_key_scrolling = TRUE; |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
124 |
1208 | 125 options->metadata.enable_metadata_dirs = FALSE; |
126 options->metadata.save_in_image_file = FALSE; | |
127 options->metadata.save_legacy_IPTC = FALSE; | |
128 options->metadata.warn_on_write_problems = TRUE; | |
129 options->metadata.save_legacy_format = FALSE; | |
130 options->metadata.sync_grouped_files = TRUE; | |
131 options->metadata.confirm_write = TRUE; | |
1244 | 132 options->metadata.confirm_after_timeout = FALSE; |
133 options->metadata.confirm_timeout = 10; | |
1208 | 134 options->metadata.confirm_on_image_change = FALSE; |
135 options->metadata.confirm_on_dir_change = TRUE; | |
594
4cfce4ed35e0
Use a dedicated option to enable keywords and comment saving as XMP tags
zas_
parents:
556
diff
changeset
|
136 |
1034 | 137 options->show_copy_path = TRUE; |
508 | 138 options->show_icon_names = TRUE; |
139 | |
1034 | 140 options->slideshow.delay = 50; |
508 | 141 options->slideshow.random = FALSE; |
142 options->slideshow.repeat = FALSE; | |
143 | |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
144 options->startup.path = NULL; |
629 | 145 options->startup.restore_path = FALSE; |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
146 options->startup.use_last_path = FALSE; |
508 | 147 |
148 options->thumbnails.cache_into_dirs = FALSE; | |
149 options->thumbnails.enable_caching = TRUE; | |
150 options->thumbnails.fast = TRUE; | |
151 options->thumbnails.max_height = DEFAULT_THUMB_HEIGHT; | |
152 options->thumbnails.max_width = DEFAULT_THUMB_WIDTH; | |
870
3dd2cb78d0f9
Make better matching between options types in options.h and the rest of the code.
zas_
parents:
848
diff
changeset
|
153 options->thumbnails.quality = GDK_INTERP_TILES; |
508 | 154 options->thumbnails.spec_standard = TRUE; |
155 options->thumbnails.use_xvpics = TRUE; | |
1060 | 156 options->thumbnails.use_exif = FALSE; |
508 | 157 |
158 options->tree_descend_subdirs = FALSE; | |
159 options->update_on_time_change = TRUE; | |
160 | |
161 return options; | |
162 } | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
163 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
164 void setup_default_options(ConfOptions *options) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
165 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
166 gchar *path; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
167 gint i; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
168 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
169 bookmark_add_default(_("Home"), homedir()); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
170 path = g_build_filename(homedir(), "Desktop", NULL); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
171 bookmark_add_default(_("Desktop"), path); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
172 g_free(path); |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
173 bookmark_add_default(_("Collections"), get_collections_dir()); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
174 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
175 g_free(options->file_ops.safe_delete_path); |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
176 options->file_ops.safe_delete_path = g_strdup(get_trash_dir()); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
177 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
178 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
179 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
180 options->color_profile.input_file[i] = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
181 options->color_profile.input_name[i] = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
182 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
183 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
184 set_default_image_overlay_template_string(&options->image_overlay.common.template_string); |
1229
878718372aca
sidecar files grouping was made case-insensitive
nadvornik
parents:
1208
diff
changeset
|
185 options->sidecar.ext = g_strdup(".jpg;%raw;.xmp"); |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
186 options->layout.order = g_strdup("123"); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
187 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
188 options->shell.path = g_strdup(GQ_DEFAULT_SHELL_PATH); |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
189 options->shell.options = g_strdup(GQ_DEFAULT_SHELL_OPTIONS); |
1013
88ebc61e33ae
Allow to override documentation paths through options:
zas_
parents:
980
diff
changeset
|
190 |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
191 for (i = 0; ExifUIList[i].key; i++) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
192 ExifUIList[i].current = ExifUIList[i].default_value; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
193 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
194 |
1309 | 195 void copy_layout_options(LayoutOptions *dest, const LayoutOptions *src) |
196 { | |
197 free_layout_options_content(dest); | |
198 | |
199 *dest = *src; | |
200 dest->order = g_strdup(src->order); | |
201 dest->home_path = g_strdup(src->home_path); | |
202 } | |
203 | |
204 void free_layout_options_content(LayoutOptions *dest) | |
205 { | |
206 if (dest->order) g_free(dest->order); | |
207 if (dest->home_path) g_free(dest->home_path); | |
208 } | |
209 | |
1019 | 210 static void sync_options_with_current_state(ConfOptions *options) |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
211 { |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
212 LayoutWindow *lw = NULL; |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
213 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
214 if (layout_valid(&lw)) |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
215 { |
1309 | 216 layout_sync_options_with_current_state(lw); |
217 copy_layout_options(&options->layout, &lw->options); | |
218 options->image_overlay.common.state = image_osd_get(lw->image); | |
219 layout_sort_get(lw, &options->file_sort.method, &options->file_sort.ascending); | |
220 | |
221 | |
222 | |
223 options->color_profile.enabled = layout_image_color_profile_get_use(lw); | |
224 layout_image_color_profile_get(lw, | |
225 &options->color_profile.input_type, | |
226 &options->color_profile.screen_type, | |
227 &options->color_profile.use_image); | |
228 | |
229 if (options->startup.restore_path && options->startup.use_last_path) | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
230 { |
1309 | 231 g_free(options->startup.path); |
232 options->startup.path = g_strdup(layout_get_path(lw)); | |
740
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
233 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
234 } |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
235 |
9b0ac8d58c89
Move setup_default_options() and sync_options_with_current_state() to options.[ch].
zas_
parents:
638
diff
changeset
|
236 } |
1019 | 237 |
238 void save_options(ConfOptions *options) | |
239 { | |
240 gchar *rc_path; | |
241 | |
242 sync_options_with_current_state(options); | |
243 | |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
244 rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL); |
1019 | 245 save_options_to(rc_path, options); |
246 g_free(rc_path); | |
247 } | |
248 | |
1313 | 249 gboolean load_options(ConfOptions *options) |
1019 | 250 { |
251 gboolean success; | |
252 gchar *rc_path; | |
253 | |
254 if (isdir(GQ_SYSTEM_WIDE_DIR)) | |
255 { | |
256 rc_path = g_build_filename(GQ_SYSTEM_WIDE_DIR, RC_FILE_NAME, NULL); | |
1313 | 257 success = load_options_from(rc_path, options, TRUE); |
1019 | 258 DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed"); |
259 g_free(rc_path); | |
260 } | |
261 | |
1145
3a7af6a8cd5f
Use functions to return directories instead of constants.
zas_
parents:
1060
diff
changeset
|
262 rc_path = g_build_filename(get_rc_dir(), RC_FILE_NAME, NULL); |
1313 | 263 success = load_options_from(rc_path, options, TRUE); |
1019 | 264 DEBUG_1("Loading options from %s ... %s", rc_path, success ? "done" : "failed"); |
265 g_free(rc_path); | |
1313 | 266 return(success); |
1019 | 267 } |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1037
diff
changeset
|
268 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |