Mercurial > geeqie
annotate src/rcfile.c @ 1598:c03a8e19a43a
expose the file grouping flag to the user
author | nadvornik |
---|---|
date | Sat, 09 May 2009 19:45:24 +0000 |
parents | 1a5a3b7ca2cd |
children | c6d522fe3e5e |
rev | line source |
---|---|
1 | 1 /* |
196 | 2 * Geeqie |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
41
diff
changeset
|
3 * (C) 2006 John Ellis |
1284 | 4 * Copyright (C) 2008 - 2009 The Geeqie Team |
1 | 5 * |
6 * Author: John Ellis | |
7 * | |
9 | 8 * This software is released under the GNU General Public License (GNU GPL). |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
1 | 11 */ |
12 | |
276 | 13 #include <glib/gstdio.h> |
14 #include <errno.h> | |
9 | 15 |
281 | 16 #include "main.h" |
9 | 17 #include "rcfile.h" |
1 | 18 |
1309 | 19 #include "bar.h" |
20 #include "bar_comment.h" | |
307
667e49f52168
Move secure save code to its own files: secure_save.{c,h}.
zas_
parents:
288
diff
changeset
|
21 #include "bar_exif.h" |
1309 | 22 #include "bar_histogram.h" |
23 #include "bar_keywords.h" | |
1320 | 24 #include "bar_sort.h" |
768
ff51413f098d
Use functions to set editors name and command and ensure they are
zas_
parents:
764
diff
changeset
|
25 #include "editors.h" |
586 | 26 #include "filefilter.h" |
1023
650c02c0c8ff
Move quoted_value() and escquote_value() to misc.[ch].
zas_
parents:
1019
diff
changeset
|
27 #include "misc.h" |
858 | 28 #include "pixbuf-renderer.h" |
307
667e49f52168
Move secure save code to its own files: secure_save.{c,h}.
zas_
parents:
288
diff
changeset
|
29 #include "secure_save.h" |
9 | 30 #include "slideshow.h" |
31 #include "ui_fileops.h" | |
1309 | 32 #include "layout.h" |
33 #include "layout_util.h" | |
34 #include "bar.h" | |
1404 | 35 #include "metadata.h" |
1309 | 36 |
9 | 37 |
1 | 38 /* |
39 *----------------------------------------------------------------------------- | |
1309 | 40 * line write/parse routines (public) |
1 | 41 *----------------------------------------------------------------------------- |
442 | 42 */ |
43 | |
1309 | 44 void write_indent(GString *str, gint indent) |
1 | 45 { |
1461 | 46 g_string_append_printf(str, "\n%*s", indent * 4, ""); |
1309 | 47 } |
210
3fa93ab9b119
Improve escaping and quoting of strings saved in rc files.
zas_
parents:
209
diff
changeset
|
48 |
1309 | 49 void write_char_option(GString *str, gint indent, const gchar *label, const gchar *text) |
50 { | |
1325 | 51 /* this is needed for overlay string, because g_markup_escape_text does not handle \n and such, |
52 ideas for improvement are welcome | |
53 */ | |
54 static const unsigned char no_quote_utf[] = { | |
55 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, | |
56 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, | |
57 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3, | |
58 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, | |
59 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, | |
60 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, | |
61 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, | |
62 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf, | |
63 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, | |
64 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, | |
65 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff, | |
66 '"', 0 /* '"' is handled in g_markup_escape_text */ | |
67 }; | |
68 | |
1326 | 69 gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf); |
1325 | 70 gchar *escval2 = g_markup_escape_text(escval1, -1); |
1461 | 71 g_string_append_printf(str, "%s = \"%s\" ", label, escval2); |
1325 | 72 g_free(escval2); |
73 g_free(escval1); | |
1 | 74 } |
75 | |
1309 | 76 gboolean read_char_option(const gchar *option, const gchar *label, const gchar *value, gchar **text) |
1 | 77 { |
639 | 78 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; |
79 if (!text) return FALSE; | |
80 | |
81 g_free(*text); | |
1325 | 82 *text = g_strcompress(value); |
639 | 83 return TRUE; |
1 | 84 } |
85 | |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
86 /* Since gdk_color_to_string() is only available since gtk 2.12 |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
87 * here is an equivalent stub function. */ |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
88 static gchar *color_to_string(GdkColor *color) |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
89 { |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
90 return g_strdup_printf("#%04X%04X%04X", color->red, color->green, color->blue); |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
91 } |
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
92 |
1309 | 93 void write_color_option(GString *str, gint indent, gchar *label, GdkColor *color) |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
94 { |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
95 if (color) |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
96 { |
267
a9adf9e1a746
Remove dependency on GTK 2.12, reported by John Vodden and Vladimir
zas_
parents:
250
diff
changeset
|
97 gchar *colorstring = color_to_string(color); |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
98 |
1309 | 99 write_char_option(str, indent, label, colorstring); |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
100 g_free(colorstring); |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
101 } |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
102 else |
1309 | 103 write_char_option(str, indent, label, ""); |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
104 } |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
105 |
1309 | 106 gboolean read_color_option(const gchar *option, const gchar *label, const gchar *value, GdkColor *color) |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
107 { |
639 | 108 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; |
109 if (!color) return FALSE; | |
110 | |
1309 | 111 if (!*value) return FALSE; |
112 gdk_color_parse(value, color); | |
639 | 113 return TRUE; |
208
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
114 } |
fa0e05f985c3
set user-defined color as image background - patch by Laurent MONIN
nadvornik
parents:
196
diff
changeset
|
115 |
1309 | 116 void write_int_option(GString *str, gint indent, const gchar *label, gint n) |
1 | 117 { |
1461 | 118 g_string_append_printf(str, "%s = \"%d\" ", label, n); |
1 | 119 } |
120 | |
1309 | 121 gboolean read_int_option(const gchar *option, const gchar *label, const gchar *value, gint *n) |
995 | 122 { |
639 | 123 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; |
124 if (!n) return FALSE; | |
125 | |
126 if (g_ascii_isdigit(value[0]) || (value[0] == '-' && g_ascii_isdigit(value[1]))) | |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
127 { |
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
128 *n = strtol(value, NULL, 10); |
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
129 } |
639 | 130 else |
131 { | |
132 if (g_ascii_strcasecmp(value, "true") == 0) | |
133 *n = 1; | |
134 else | |
135 *n = 0; | |
136 } | |
137 | |
138 return TRUE; | |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
139 } |
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
140 |
1309 | 141 void write_uint_option(GString *str, gint indent, const gchar *label, guint n) |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
377
diff
changeset
|
142 { |
1461 | 143 g_string_append_printf(str, "%s = \"%u\" ", label, n); |
380
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
377
diff
changeset
|
144 } |
5afe77bb563a
Introduce a new struct ViewDir to handle directory views common
zas_
parents:
377
diff
changeset
|
145 |
1309 | 146 gboolean read_uint_option(const gchar *option, const gchar *label, const gchar *value, guint *n) |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
147 { |
639 | 148 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; |
149 if (!n) return FALSE; | |
150 | |
151 if (g_ascii_isdigit(value[0])) | |
9 | 152 { |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
153 *n = strtoul(value, NULL, 10); |
9 | 154 } |
639 | 155 else |
156 { | |
157 if (g_ascii_strcasecmp(value, "true") == 0) | |
158 *n = 1; | |
159 else | |
160 *n = 0; | |
161 } | |
162 | |
163 return TRUE; | |
9 | 164 } |
165 | |
1309 | 166 gboolean read_uint_option_clamp(const gchar *option, const gchar *label, const gchar *value, guint *n, guint min, guint max) |
858 | 167 { |
168 gboolean ret; | |
169 | |
1309 | 170 ret = read_uint_option(option, label, value, n); |
858 | 171 if (ret) *n = CLAMP(*n, min, max); |
172 | |
173 return ret; | |
174 } | |
175 | |
176 | |
1309 | 177 gboolean read_int_option_clamp(const gchar *option, const gchar *label, const gchar *value, gint *n, gint min, gint max) |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
178 { |
639 | 179 gboolean ret; |
180 | |
1309 | 181 ret = read_int_option(option, label, value, n); |
639 | 182 if (ret) *n = CLAMP(*n, min, max); |
183 | |
184 return ret; | |
351
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
185 } |
55ee774d5bc3
Simplify read_*_option() stuff by passing pointer to option value.
zas_
parents:
350
diff
changeset
|
186 |
1309 | 187 void write_int_unit_option(GString *str, gint indent, gchar *label, gint n, gint subunits) |
9 | 188 { |
189 gint l, r; | |
190 | |
191 if (subunits > 0) | |
192 { | |
193 l = n / subunits; | |
194 r = n % subunits; | |
195 } | |
196 else | |
1 | 197 { |
9 | 198 l = n; |
199 r = 0; | |
200 } | |
201 | |
1461 | 202 g_string_append_printf(str, "%s = \"%d.%d\" ", label, l, r); |
9 | 203 } |
204 | |
1309 | 205 gboolean read_int_unit_option(const gchar *option, const gchar *label, const gchar *value, gint *n, gint subunits) |
9 | 206 { |
639 | 207 gint l, r; |
1309 | 208 gchar *ptr, *buf; |
639 | 209 |
210 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; | |
211 if (!n) return FALSE; | |
9 | 212 |
1309 | 213 buf = g_strdup(value); |
214 ptr = buf; | |
639 | 215 while (*ptr != '\0' && *ptr != '.') ptr++; |
216 if (*ptr == '.') | |
217 { | |
218 *ptr = '\0'; | |
219 l = strtol(value, NULL, 10); | |
220 *ptr = '.'; | |
221 ptr++; | |
222 r = strtol(ptr, NULL, 10); | |
223 } | |
224 else | |
225 { | |
226 l = strtol(value, NULL, 10); | |
227 r = 0; | |
228 } | |
9 | 229 |
639 | 230 *n = l * subunits + r; |
1309 | 231 g_free(buf); |
232 | |
639 | 233 return TRUE; |
1 | 234 } |
235 | |
1309 | 236 void write_bool_option(GString *str, gint indent, gchar *label, gint n) |
1 | 237 { |
1461 | 238 g_string_append_printf(str, "%s = \"%s\" ", label, n ? "true" : "false"); |
1 | 239 } |
240 | |
1309 | 241 gboolean read_bool_option(const gchar *option, const gchar *label, const gchar *value, gint *n) |
1 | 242 { |
639 | 243 if (g_ascii_strcasecmp(option, label) != 0) return FALSE; |
244 if (!n) return FALSE; | |
245 | |
246 if (g_ascii_strcasecmp(value, "true") == 0 || atoi(value) != 0) | |
247 *n = TRUE; | |
248 else | |
249 *n = FALSE; | |
250 | |
251 return TRUE; | |
1 | 252 } |
253 | |
1309 | 254 /* |
255 *----------------------------------------------------------------------------- | |
256 * write fuctions for elements (private) | |
257 *----------------------------------------------------------------------------- | |
258 */ | |
259 | |
260 static void write_global_attributes(GString *outstr, gint indent) | |
261 { | |
262 // WRITE_SUBTITLE("General Options"); | |
263 | |
1461 | 264 WRITE_NL(); WRITE_BOOL(*options, show_icon_names); |
1309 | 265 WRITE_SEPARATOR(); |
266 | |
1461 | 267 WRITE_NL(); WRITE_BOOL(*options, tree_descend_subdirs); |
268 WRITE_NL(); WRITE_BOOL(*options, lazy_image_sync); | |
269 WRITE_NL(); WRITE_BOOL(*options, update_on_time_change); | |
1309 | 270 WRITE_SEPARATOR(); |
271 | |
1461 | 272 WRITE_NL(); WRITE_BOOL(*options, progressive_key_scrolling); |
1309 | 273 |
1461 | 274 WRITE_NL(); WRITE_UINT(*options, duplicates_similarity_threshold); |
1309 | 275 WRITE_SEPARATOR(); |
276 | |
1461 | 277 WRITE_NL(); WRITE_BOOL(*options, mousewheel_scrolls); |
278 WRITE_NL(); WRITE_INT(*options, open_recent_list_maxsize); | |
279 WRITE_NL(); WRITE_INT(*options, dnd_icon_size); | |
280 WRITE_NL(); WRITE_BOOL(*options, place_dialogs_under_mouse); | |
1309 | 281 |
1461 | 282 WRITE_NL(); WRITE_BOOL(*options, save_window_positions); |
283 WRITE_NL(); WRITE_BOOL(*options, tools_restore_state); | |
1309 | 284 |
285 // WRITE_SUBTITLE("File operations Options"); | |
286 | |
1461 | 287 WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_in_place_rename); |
288 WRITE_NL(); WRITE_BOOL(*options, file_ops.confirm_delete); | |
289 WRITE_NL(); WRITE_BOOL(*options, file_ops.enable_delete_key); | |
290 WRITE_NL(); WRITE_BOOL(*options, file_ops.safe_delete_enable); | |
291 WRITE_NL(); WRITE_CHAR(*options, file_ops.safe_delete_path); | |
292 WRITE_NL(); WRITE_INT(*options, file_ops.safe_delete_folder_maxsize); | |
1309 | 293 |
294 | |
295 | |
296 | |
297 // WRITE_SUBTITLE("Properties dialog Options"); | |
1461 | 298 WRITE_NL(); WRITE_CHAR(*options, properties.tabs_order); |
1309 | 299 |
300 // WRITE_SUBTITLE("Image Options"); | |
301 | |
1461 | 302 WRITE_NL(); WRITE_UINT(*options, image.zoom_mode); |
1309 | 303 |
304 // g_string_append_printf(outstr, "# image.zoom_mode possible values are:\n" | |
305 // "# original\n" | |
306 // "# fit\n" | |
307 // "# dont_change\n"); | |
308 // g_string_append_printf(outstr, "image.zoom_mode: "); | |
309 // switch (options->image.zoom_mode) | |
310 // { | |
311 // case ZOOM_RESET_ORIGINAL: g_string_append_printf(outstr, "original\n"); break; | |
312 // case ZOOM_RESET_FIT_WINDOW: g_string_append_printf(outstr, "fit\n"); break; | |
313 // case ZOOM_RESET_NONE: g_string_append_printf(outstr, "dont_change\n"); break; | |
314 // } | |
315 WRITE_SEPARATOR(); | |
1461 | 316 WRITE_NL(); WRITE_BOOL(*options, image.zoom_2pass); |
317 WRITE_NL(); WRITE_BOOL(*options, image.zoom_to_fit_allow_expand); | |
318 WRITE_NL(); WRITE_UINT(*options, image.zoom_quality); | |
319 WRITE_NL(); WRITE_INT(*options, image.zoom_increment); | |
320 WRITE_NL(); WRITE_BOOL(*options, image.fit_window_to_image); | |
321 WRITE_NL(); WRITE_BOOL(*options, image.limit_window_size); | |
322 WRITE_NL(); WRITE_INT(*options, image.max_window_size); | |
323 WRITE_NL(); WRITE_BOOL(*options, image.limit_autofit_size); | |
324 WRITE_NL(); WRITE_INT(*options, image.max_autofit_size); | |
325 WRITE_NL(); WRITE_UINT(*options, image.scroll_reset_method); | |
326 WRITE_NL(); WRITE_INT(*options, image.tile_cache_max); | |
327 WRITE_NL(); WRITE_INT(*options, image.image_cache_max); | |
328 WRITE_NL(); WRITE_UINT(*options, image.dither_quality); | |
329 WRITE_NL(); WRITE_BOOL(*options, image.enable_read_ahead); | |
330 WRITE_NL(); WRITE_BOOL(*options, image.exif_rotate_enable); | |
331 WRITE_NL(); WRITE_BOOL(*options, image.use_custom_border_color); | |
332 WRITE_NL(); WRITE_COLOR(*options, image.border_color); | |
1309 | 333 |
334 // WRITE_SUBTITLE("Thumbnails Options"); | |
335 | |
1461 | 336 WRITE_NL(); WRITE_INT(*options, thumbnails.max_width); |
337 WRITE_NL(); WRITE_INT(*options, thumbnails.max_height); | |
338 WRITE_NL(); WRITE_BOOL(*options, thumbnails.enable_caching); | |
339 WRITE_NL(); WRITE_BOOL(*options, thumbnails.cache_into_dirs); | |
340 WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_xvpics); | |
341 WRITE_NL(); WRITE_BOOL(*options, thumbnails.spec_standard); | |
342 WRITE_NL(); WRITE_UINT(*options, thumbnails.quality); | |
343 WRITE_NL(); WRITE_BOOL(*options, thumbnails.use_exif); | |
1309 | 344 |
345 | |
346 // WRITE_SUBTITLE("File sorting Options"); | |
347 | |
1461 | 348 WRITE_NL(); WRITE_INT(*options, file_sort.method); |
349 WRITE_NL(); WRITE_BOOL(*options, file_sort.ascending); | |
350 WRITE_NL(); WRITE_BOOL(*options, file_sort.case_sensitive); | |
1309 | 351 |
352 | |
353 // WRITE_SUBTITLE("Fullscreen Options"); | |
354 | |
1461 | 355 WRITE_NL(); WRITE_INT(*options, fullscreen.screen); |
356 WRITE_NL(); WRITE_BOOL(*options, fullscreen.clean_flip); | |
357 WRITE_NL(); WRITE_BOOL(*options, fullscreen.disable_saver); | |
358 WRITE_NL(); WRITE_BOOL(*options, fullscreen.above); | |
1309 | 359 |
1336 | 360 WRITE_SEPARATOR(); |
1309 | 361 |
362 // WRITE_SUBTITLE("Image Overlay Options"); | |
1461 | 363 WRITE_NL(); WRITE_CHAR(*options, image_overlay.template_string); |
1309 | 364 |
365 // g_string_append_printf(outstr, "# these are relative positions:\n"); | |
366 // g_string_append_printf(outstr, "# x >= 0: |x| pixels from left border\n"); | |
367 // g_string_append_printf(outstr, "# x < 0 : |x| pixels from right border\n"); | |
368 // g_string_append_printf(outstr, "# y >= 0: |y| pixels from top border\n"); | |
369 // g_string_append_printf(outstr, "# y < 0 : |y| pixels from bottom border\n"); | |
1461 | 370 WRITE_NL(); WRITE_INT(*options, image_overlay.x); |
371 WRITE_NL(); WRITE_INT(*options, image_overlay.y); | |
1309 | 372 |
373 | |
374 // WRITE_SUBTITLE("Slideshow Options"); | |
375 | |
1461 | 376 WRITE_NL(); WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION); |
377 WRITE_NL(); WRITE_BOOL(*options, slideshow.random); | |
378 WRITE_NL(); WRITE_BOOL(*options, slideshow.repeat); | |
1309 | 379 |
380 | |
381 // WRITE_SUBTITLE("Collection Options"); | |
382 | |
1461 | 383 WRITE_NL(); WRITE_BOOL(*options, collections.rectangular_selection); |
1309 | 384 |
385 | |
386 // WRITE_SUBTITLE("Filtering Options"); | |
387 | |
1461 | 388 WRITE_NL(); WRITE_BOOL(*options, file_filter.show_hidden_files); |
389 WRITE_NL(); WRITE_BOOL(*options, file_filter.show_dot_directory); | |
390 WRITE_NL(); WRITE_BOOL(*options, file_filter.disable); | |
1309 | 391 WRITE_SEPARATOR(); |
392 | |
393 | |
394 // WRITE_SUBTITLE("Sidecars Options"); | |
395 | |
1461 | 396 WRITE_NL(); WRITE_CHAR(*options, sidecar.ext); |
1309 | 397 |
398 | |
399 | |
400 // WRITE_SUBTITLE("Shell command"); | |
1461 | 401 WRITE_NL(); WRITE_CHAR(*options, shell.path); |
402 WRITE_NL(); WRITE_CHAR(*options, shell.options); | |
1309 | 403 |
404 | |
405 // WRITE_SUBTITLE("Helpers"); | |
406 // g_string_append_printf(outstr, "# Html browser\n"); | |
407 // g_string_append_printf(outstr, "# command_name is: the binary's name to look for in the path\n"); | |
408 // g_string_append_printf(outstr, "# If command_name is empty, the program will try various common html browsers\n"); | |
409 // g_string_append_printf(outstr, "# command_line is:\n"); | |
410 // g_string_append_printf(outstr, "# \"\" (empty string) = execute binary with html file path as command line\n"); | |
411 // g_string_append_printf(outstr, "# \"string\" = execute string and use results for command line\n"); | |
412 // g_string_append_printf(outstr, "# \"!string\" = use text following ! as command line, replacing optional %%s with html file path\n"); | |
1461 | 413 WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_name); |
414 WRITE_NL(); WRITE_CHAR(*options, helpers.html_browser.command_line); | |
1309 | 415 |
416 /* FIXME: | |
417 WRITE_SUBTITLE("Exif Options"); | |
418 g_string_append_printf(outstr, "# Display: 0: never\n" | |
419 "# 1: if set\n" | |
420 "# 2: always\n\n"); | |
421 for (i = 0; ExifUIList[i].key; i++) | |
422 { | |
423 g_string_append_printf(outstr, "exif.display."); | |
424 write_int_option(outstr, 2, (gchar *)ExifUIList[i].key, ExifUIList[i].current); | |
425 } | |
426 */ | |
427 | |
428 // WRITE_SUBTITLE("Metadata Options"); | |
1461 | 429 WRITE_NL(); WRITE_BOOL(*options, metadata.enable_metadata_dirs); |
430 WRITE_NL(); WRITE_BOOL(*options, metadata.save_in_image_file); | |
431 WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_IPTC); | |
432 WRITE_NL(); WRITE_BOOL(*options, metadata.warn_on_write_problems); | |
433 WRITE_NL(); WRITE_BOOL(*options, metadata.save_legacy_format); | |
434 WRITE_NL(); WRITE_BOOL(*options, metadata.sync_grouped_files); | |
435 WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_write); | |
436 WRITE_NL(); WRITE_INT(*options, metadata.confirm_timeout); | |
437 WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_after_timeout); | |
438 WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_image_change); | |
439 WRITE_NL(); WRITE_BOOL(*options, metadata.confirm_on_dir_change); | |
1590
1a5a3b7ca2cd
use "keywords" instead of "tags" in option name, it is more consistent
nadvornik
parents:
1582
diff
changeset
|
440 WRITE_NL(); WRITE_BOOL(*options, metadata.keywords_case_sensitive); |
1567
c776b1310ca6
added an option to write image orientation to the metadata
nadvornik
parents:
1548
diff
changeset
|
441 WRITE_NL(); WRITE_BOOL(*options, metadata.write_orientation); |
1309 | 442 |
443 } | |
444 | |
445 static void write_color_profile(GString *outstr, gint indent) | |
446 { | |
447 gint i; | |
448 #ifndef HAVE_LCMS | |
449 g_string_append_printf(outstr, "<!-- NOTICE: %s was not built with support for color profiles,\n" | |
450 " color profile options will have no effect.\n-->\n", GQ_APPNAME); | |
451 #endif | |
452 | |
1461 | 453 WRITE_NL(); WRITE_STRING("<color_profiles "); |
1309 | 454 WRITE_CHAR(options->color_profile, screen_file); |
455 WRITE_BOOL(options->color_profile, enabled); | |
456 WRITE_BOOL(options->color_profile, use_image); | |
457 WRITE_INT(options->color_profile, input_type); | |
1548 | 458 WRITE_BOOL(options->color_profile, use_x11_screen_profile); |
1461 | 459 WRITE_STRING(">"); |
1309 | 460 |
461 indent++; | |
462 for (i = 0; i < COLOR_PROFILE_INPUTS; i++) | |
463 { | |
1461 | 464 WRITE_NL(); WRITE_STRING("<profile "); |
1309 | 465 write_char_option(outstr, indent, "input_file", options->color_profile.input_file[i]); |
466 write_char_option(outstr, indent, "input_name", options->color_profile.input_name[i]); | |
1461 | 467 WRITE_STRING("/>"); |
1309 | 468 } |
469 indent--; | |
1461 | 470 WRITE_NL(); WRITE_STRING("</color_profiles>"); |
1309 | 471 } |
472 | |
639 | 473 |
1 | 474 /* |
475 *----------------------------------------------------------------------------- | |
476 * save configuration (public) | |
477 *----------------------------------------------------------------------------- | |
442 | 478 */ |
1 | 479 |
1484 | 480 gboolean save_config_to_file(const gchar *utf8_path, ConfOptions *options) |
1 | 481 { |
276 | 482 SecureSaveInfo *ssi; |
9 | 483 gchar *rc_pathl; |
1309 | 484 GString *outstr; |
485 gint indent = 0; | |
486 GList *work; | |
487 | |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
488 rc_pathl = path_from_utf8(utf8_path); |
276 | 489 ssi = secure_open(rc_pathl); |
9 | 490 g_free(rc_pathl); |
276 | 491 if (!ssi) |
1 | 492 { |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
493 log_printf(_("error saving config file: %s\n"), utf8_path); |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
494 return FALSE; |
1 | 495 } |
442 | 496 |
1309 | 497 outstr = g_string_new(""); |
498 g_string_append_printf(outstr, "<!--\n"); | |
499 g_string_append_printf(outstr, "######################################################################\n"); | |
500 g_string_append_printf(outstr, "# %30s config file version %-10s #\n", GQ_APPNAME, VERSION); | |
501 g_string_append_printf(outstr, "######################################################################\n"); | |
372 | 502 WRITE_SEPARATOR(); |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
337
diff
changeset
|
503 |
1314 | 504 WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n"); |
505 WRITE_STRING("# but user comments and formatting will be lost.\n"); | |
1309 | 506 WRITE_SEPARATOR(); |
1314 | 507 WRITE_STRING("-->\n"); |
1309 | 508 WRITE_SEPARATOR(); |
1461 | 509 |
510 WRITE_STRING("<gq>\n"); | |
511 indent++; | |
512 | |
513 WRITE_NL(); WRITE_STRING("<global\n"); | |
514 indent++; | |
1314 | 515 write_global_attributes(outstr, indent + 1); |
1461 | 516 indent--; |
1314 | 517 WRITE_STRING(">\n"); |
518 | |
1309 | 519 indent++; |
442 | 520 |
1309 | 521 write_color_profile(outstr, indent); |
522 | |
377 | 523 WRITE_SEPARATOR(); |
1309 | 524 filter_write_list(outstr, indent); |
335 | 525 |
1309 | 526 WRITE_SEPARATOR(); |
1404 | 527 keyword_tree_write_config(outstr, indent); |
1309 | 528 indent--; |
1461 | 529 WRITE_NL(); WRITE_STRING("</global>\n"); |
468
2df505c60459
Replace fullscreen.info and fullscreen.show_info options by:
zas_
parents:
458
diff
changeset
|
530 |
823
ed82f5bf8082
Add a comment about relative positions of image overlay in the rc file.
zas_
parents:
822
diff
changeset
|
531 WRITE_SEPARATOR(); |
1309 | 532 WRITE_SUBTITLE("Layout Options"); |
823
ed82f5bf8082
Add a comment about relative positions of image overlay in the rc file.
zas_
parents:
822
diff
changeset
|
533 |
1309 | 534 work = layout_window_list; |
535 while (work) | |
536 { | |
537 LayoutWindow *lw = work->data; | |
538 layout_write_config(lw, outstr, indent); | |
539 work = work->next; | |
540 } | |
276 | 541 |
1461 | 542 indent--; |
543 WRITE_NL(); WRITE_STRING("</gq>\n"); | |
544 WRITE_SEPARATOR(); | |
545 | |
1309 | 546 secure_fputs(ssi, outstr->str); |
547 g_string_free(outstr, TRUE); | |
442 | 548 |
276 | 549 if (secure_close(ssi)) |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
550 { |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
551 log_printf(_("error saving config file: %s\nerror: %s\n"), utf8_path, |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
552 secsave_strerror(secsave_errno)); |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
553 return FALSE; |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
554 } |
1 | 555 |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
556 return TRUE; |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
557 } |
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
558 |
1309 | 559 /* |
560 *----------------------------------------------------------------------------- | |
561 * loading attributes for elements (private) | |
562 *----------------------------------------------------------------------------- | |
563 */ | |
564 | |
565 | |
566 static gboolean load_global_params(const gchar **attribute_names, const gchar **attribute_values) | |
567 { | |
568 while (*attribute_names) | |
569 { | |
570 const gchar *option = *attribute_names++; | |
571 const gchar *value = *attribute_values++; | |
572 | |
573 | |
574 /* general options */ | |
1315 | 575 if (READ_BOOL(*options, show_icon_names)) continue; |
1309 | 576 |
1315 | 577 if (READ_BOOL(*options, tree_descend_subdirs)) continue; |
578 if (READ_BOOL(*options, lazy_image_sync)) continue; | |
579 if (READ_BOOL(*options, update_on_time_change)) continue; | |
1309 | 580 |
1315 | 581 if (READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100)) continue; |
1309 | 582 |
1315 | 583 if (READ_BOOL(*options, progressive_key_scrolling)) continue; |
1309 | 584 |
1315 | 585 if (READ_BOOL(*options, mousewheel_scrolls)) continue; |
1309 | 586 |
1315 | 587 if (READ_INT(*options, open_recent_list_maxsize)) continue; |
588 if (READ_INT(*options, dnd_icon_size)) continue; | |
589 if (READ_BOOL(*options, place_dialogs_under_mouse)) continue; | |
1309 | 590 |
1436
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1404
diff
changeset
|
591 if (READ_BOOL(*options, save_window_positions)) continue; |
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1404
diff
changeset
|
592 if (READ_BOOL(*options, tools_restore_state)) continue; |
d7a6fb7a90dd
completely separated global and layout window options
nadvornik
parents:
1404
diff
changeset
|
593 |
1309 | 594 /* properties dialog options */ |
1315 | 595 if (READ_CHAR(*options, properties.tabs_order)) continue; |
1309 | 596 |
597 /* image options */ | |
1315 | 598 if (READ_UINT_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE)) continue; |
599 if (READ_BOOL(*options, image.zoom_2pass)) continue; | |
600 if (READ_BOOL(*options, image.zoom_to_fit_allow_expand)) continue; | |
601 if (READ_BOOL(*options, image.fit_window_to_image)) continue; | |
602 if (READ_BOOL(*options, image.limit_window_size)) continue; | |
603 if (READ_INT(*options, image.max_window_size)) continue; | |
604 if (READ_BOOL(*options, image.limit_autofit_size)) continue; | |
605 if (READ_INT(*options, image.max_autofit_size)) continue; | |
606 if (READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1)) continue; | |
607 if (READ_INT(*options, image.tile_cache_max)) continue; | |
608 if (READ_INT(*options, image.image_cache_max)) continue; | |
609 if (READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue; | |
610 if (READ_UINT_CLAMP(*options, image.dither_quality, GDK_RGB_DITHER_NONE, GDK_RGB_DITHER_MAX)) continue; | |
611 if (READ_INT(*options, image.zoom_increment)) continue; | |
612 if (READ_BOOL(*options, image.enable_read_ahead)) continue; | |
613 if (READ_BOOL(*options, image.exif_rotate_enable)) continue; | |
614 if (READ_BOOL(*options, image.use_custom_border_color)) continue; | |
615 if (READ_COLOR(*options, image.border_color)) continue; | |
1309 | 616 |
617 /* thumbnails options */ | |
1315 | 618 if (READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512)) continue; |
619 if (READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512)) continue; | |
1309 | 620 |
1315 | 621 if (READ_BOOL(*options, thumbnails.enable_caching)) continue; |
622 if (READ_BOOL(*options, thumbnails.cache_into_dirs)) continue; | |
623 if (READ_BOOL(*options, thumbnails.use_xvpics)) continue; | |
624 if (READ_BOOL(*options, thumbnails.spec_standard)) continue; | |
625 if (READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue; | |
626 if (READ_BOOL(*options, thumbnails.use_exif)) continue; | |
1309 | 627 |
628 /* file sorting options */ | |
1315 | 629 if (READ_UINT(*options, file_sort.method)) continue; |
630 if (READ_BOOL(*options, file_sort.ascending)) continue; | |
631 if (READ_BOOL(*options, file_sort.case_sensitive)) continue; | |
1309 | 632 |
633 /* file operations *options */ | |
1315 | 634 if (READ_BOOL(*options, file_ops.enable_in_place_rename)) continue; |
635 if (READ_BOOL(*options, file_ops.confirm_delete)) continue; | |
636 if (READ_BOOL(*options, file_ops.enable_delete_key)) continue; | |
637 if (READ_BOOL(*options, file_ops.safe_delete_enable)) continue; | |
638 if (READ_CHAR(*options, file_ops.safe_delete_path)) continue; | |
639 if (READ_INT(*options, file_ops.safe_delete_folder_maxsize)) continue; | |
1309 | 640 |
641 /* fullscreen options */ | |
1315 | 642 if (READ_INT(*options, fullscreen.screen)) continue; |
643 if (READ_BOOL(*options, fullscreen.clean_flip)) continue; | |
644 if (READ_BOOL(*options, fullscreen.disable_saver)) continue; | |
645 if (READ_BOOL(*options, fullscreen.above)) continue; | |
1309 | 646 |
647 /* image overlay */ | |
1336 | 648 if (READ_CHAR(*options, image_overlay.template_string)) continue; |
649 if (READ_INT(*options, image_overlay.x)) continue; | |
650 if (READ_INT(*options, image_overlay.y)) continue; | |
1309 | 651 |
652 | |
653 /* slideshow options */ | |
1315 | 654 if (READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION)) continue; |
655 if (READ_BOOL(*options, slideshow.random)) continue; | |
656 if (READ_BOOL(*options, slideshow.repeat)) continue; | |
1309 | 657 |
658 /* collection options */ | |
659 | |
1315 | 660 if (READ_BOOL(*options, collections.rectangular_selection)) continue; |
1309 | 661 |
662 /* filtering options */ | |
663 | |
1315 | 664 if (READ_BOOL(*options, file_filter.show_hidden_files)) continue; |
665 if (READ_BOOL(*options, file_filter.show_dot_directory)) continue; | |
666 if (READ_BOOL(*options, file_filter.disable)) continue; | |
667 if (READ_CHAR(*options, sidecar.ext)) continue; | |
1309 | 668 |
669 /* Color Profiles */ | |
670 | |
671 /* Shell command */ | |
1315 | 672 if (READ_CHAR(*options, shell.path)) continue; |
673 if (READ_CHAR(*options, shell.options)) continue; | |
1309 | 674 |
675 /* Helpers */ | |
1315 | 676 if (READ_CHAR(*options, helpers.html_browser.command_name)) continue; |
677 if (READ_CHAR(*options, helpers.html_browser.command_line)) continue; | |
1309 | 678 /* Exif */ |
679 /* | |
680 if (0 == g_ascii_strncasecmp(option, "exif.display.", 13)) | |
681 { | |
682 for (i = 0; ExifUIList[i].key; i++) | |
683 if (0 == g_ascii_strcasecmp(option + 13, ExifUIList[i].key)) | |
684 ExifUIList[i].current = strtol(value, NULL, 10); | |
685 continue; | |
686 } | |
687 */ | |
688 /* metadata */ | |
1315 | 689 if (READ_BOOL(*options, metadata.enable_metadata_dirs)) continue; |
690 if (READ_BOOL(*options, metadata.save_in_image_file)) continue; | |
691 if (READ_BOOL(*options, metadata.save_legacy_IPTC)) continue; | |
692 if (READ_BOOL(*options, metadata.warn_on_write_problems)) continue; | |
693 if (READ_BOOL(*options, metadata.save_legacy_format)) continue; | |
694 if (READ_BOOL(*options, metadata.sync_grouped_files)) continue; | |
695 if (READ_BOOL(*options, metadata.confirm_write)) continue; | |
696 if (READ_BOOL(*options, metadata.confirm_after_timeout)) continue; | |
697 if (READ_INT(*options, metadata.confirm_timeout)) continue; | |
698 if (READ_BOOL(*options, metadata.confirm_on_image_change)) continue; | |
699 if (READ_BOOL(*options, metadata.confirm_on_dir_change)) continue; | |
1590
1a5a3b7ca2cd
use "keywords" instead of "tags" in option name, it is more consistent
nadvornik
parents:
1582
diff
changeset
|
700 if (READ_BOOL(*options, metadata.keywords_case_sensitive)) continue; |
1567
c776b1310ca6
added an option to write image orientation to the metadata
nadvornik
parents:
1548
diff
changeset
|
701 if (READ_BOOL(*options, metadata.write_orientation)) continue; |
1309 | 702 |
1464 | 703 log_printf("unknown attribute %s = %s\n", option, value); |
1309 | 704 } |
705 | |
706 return TRUE; | |
707 } | |
708 | |
709 static void options_load_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
710 { | |
711 while (*attribute_names) | |
712 { | |
713 const gchar *option = *attribute_names++; | |
714 const gchar *value = *attribute_values++; | |
715 | |
1315 | 716 if (READ_BOOL(options->color_profile, enabled)) continue; |
717 if (READ_BOOL(options->color_profile, use_image)) continue; | |
718 if (READ_INT(options->color_profile, input_type)) continue; | |
719 if (READ_CHAR(options->color_profile, screen_file)) continue; | |
1548 | 720 if (READ_BOOL(options->color_profile, use_x11_screen_profile)) continue; |
1309 | 721 |
1464 | 722 log_printf("unknown attribute %s = %s\n", option, value); |
1309 | 723 } |
724 | |
725 } | |
726 | |
727 static void options_load_profile(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
728 { | |
729 gint i = GPOINTER_TO_INT(data); | |
730 if (i < 0 || i >= COLOR_PROFILE_INPUTS) return; | |
731 while (*attribute_names) | |
732 { | |
733 const gchar *option = *attribute_names++; | |
734 const gchar *value = *attribute_values++; | |
735 | |
1315 | 736 if (READ_CHAR_FULL("input_file", options->color_profile.input_file[i])) continue; |
737 if (READ_CHAR_FULL("input_name", options->color_profile.input_name[i])) continue; | |
1309 | 738 |
1464 | 739 log_printf("unknown attribute %s = %s\n", option, value); |
1309 | 740 } |
741 i++; | |
742 options_parse_func_set_data(parser_data, GINT_TO_POINTER(i)); | |
743 | |
744 } | |
745 | |
746 | |
747 | |
748 /* | |
749 *----------------------------------------------------------------------------- | |
750 * xml file structure (private) | |
751 *----------------------------------------------------------------------------- | |
752 */ | |
1313 | 753 struct _GQParserData |
754 { | |
755 GList *parse_func_stack; | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
756 gboolean startup; /* reading config for the first time - add commandline and defaults */ |
1313 | 757 }; |
1 | 758 |
1466
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
759 static const gchar *options_get_id(const gchar **attribute_names, const gchar **attribute_values) |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
760 { |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
761 while (*attribute_names) |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
762 { |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
763 const gchar *option = *attribute_names++; |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
764 const gchar *value = *attribute_values++; |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
765 |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
766 if (strcmp(option, "id") == 0) return value; |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
767 |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
768 } |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
769 return NULL; |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
770 } |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
771 |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
772 |
1309 | 773 void options_parse_leaf(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
774 { | |
1464 | 775 log_printf("unexpected: %s\n", element_name); |
1309 | 776 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
777 } | |
778 | |
779 static void options_parse_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
780 { | |
781 if (g_ascii_strcasecmp(element_name, "profile") == 0) | |
782 { | |
783 options_load_profile(parser_data, context, element_name, attribute_names, attribute_values, data, error); | |
784 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); | |
785 } | |
786 else | |
787 { | |
1464 | 788 log_printf("unexpected in <profile>: <%s>\n", element_name); |
1309 | 789 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
790 } | |
791 } | |
792 | |
793 static void options_parse_filter(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
794 { | |
795 if (g_ascii_strcasecmp(element_name, "file_type") == 0) | |
796 { | |
797 filter_load_file_type(attribute_names, attribute_values); | |
798 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); | |
799 } | |
800 else | |
801 { | |
1464 | 802 log_printf("unexpected in <filter>: <%s>\n", element_name); |
1309 | 803 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
804 } | |
805 } | |
806 | |
807 static void options_parse_filter_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) | |
808 { | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
809 if (parser_data->startup) filter_add_defaults(); |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
810 filter_rebuild(); |
1309 | 811 } |
812 | |
1404 | 813 static void options_parse_keyword_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) |
814 { | |
815 GtkTreeIter *iter_ptr = data; | |
816 gtk_tree_iter_free(iter_ptr); | |
817 } | |
818 | |
819 | |
820 static void options_parse_keyword(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
821 { | |
822 GtkTreeIter *iter_ptr = data; | |
823 if (g_ascii_strcasecmp(element_name, "keyword") == 0) | |
824 { | |
825 GtkTreeIter *child = keyword_add_from_config(keyword_tree, iter_ptr, attribute_names, attribute_values); | |
826 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, child); | |
827 } | |
828 else | |
829 { | |
1464 | 830 log_printf("unexpected in <keyword>: <%s>\n", element_name); |
1404 | 831 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
832 } | |
833 } | |
834 | |
835 | |
836 | |
837 static void options_parse_keyword_tree(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) | |
838 { | |
839 if (g_ascii_strcasecmp(element_name, "keyword") == 0) | |
840 { | |
841 GtkTreeIter *iter_ptr = keyword_add_from_config(keyword_tree, NULL, attribute_names, attribute_values); | |
842 options_parse_func_push(parser_data, options_parse_keyword, options_parse_keyword_end, iter_ptr); | |
843 } | |
844 else | |
845 { | |
1464 | 846 log_printf("unexpected in <keyword_tree>: <%s>\n", element_name); |
1404 | 847 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
848 } | |
849 } | |
850 | |
851 | |
1309 | 852 static void options_parse_global(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
853 { | |
854 if (g_ascii_strcasecmp(element_name, "color_profiles") == 0) | |
855 { | |
856 options_load_color_profiles(parser_data, context, element_name, attribute_names, attribute_values, data, error); | |
857 options_parse_func_push(parser_data, options_parse_color_profiles, NULL, GINT_TO_POINTER(0)); | |
858 } | |
859 else if (g_ascii_strcasecmp(element_name, "filter") == 0) | |
860 { | |
861 options_parse_func_push(parser_data, options_parse_filter, options_parse_filter_end, NULL); | |
862 } | |
1404 | 863 else if (g_ascii_strcasecmp(element_name, "keyword_tree") == 0) |
864 { | |
865 if (!keyword_tree) keyword_tree_new(); | |
866 options_parse_func_push(parser_data, options_parse_keyword_tree, NULL, NULL); | |
867 } | |
1309 | 868 else |
869 { | |
1464 | 870 log_printf("unexpected in <global>: <%s>\n", element_name); |
1309 | 871 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
872 } | |
873 } | |
874 | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
875 static void options_parse_global_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
876 { |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
877 /* on startup there are no layout windows and this just loads the editors */ |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
878 layout_editors_reload_all(); |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
879 } |
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
880 |
1350
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
881 static void options_parse_pane_exif(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
882 { |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
883 GtkWidget *pane = data; |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
884 if (g_ascii_strcasecmp(element_name, "entry") == 0) |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
885 { |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
886 bar_pane_exif_entry_add_from_config(pane, attribute_names, attribute_values); |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
887 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
888 } |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
889 else |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
890 { |
1464 | 891 log_printf("unexpected in <pane_exif>: <%s>\n", element_name); |
1350
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
892 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
893 } |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
894 } |
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
895 |
1309 | 896 static void options_parse_bar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
897 { | |
898 GtkWidget *bar = data; | |
899 if (g_ascii_strcasecmp(element_name, "pane_comment") == 0) | |
900 { | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
901 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_COMMENT, options_get_id(attribute_names, attribute_values)); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
902 if (pane) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
903 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
904 bar_pane_comment_update_from_config(pane, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
905 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
906 else |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
907 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
908 pane = bar_pane_comment_new_from_config(attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
909 bar_add(bar, pane); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
910 } |
1309 | 911 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
912 } | |
913 else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0) | |
914 { | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
915 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_EXIF, options_get_id(attribute_names, attribute_values)); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
916 if (pane) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
917 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
918 bar_pane_exif_update_from_config(pane, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
919 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
920 else |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
921 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
922 pane = bar_pane_exif_new_from_config(attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
923 bar_add(bar, pane); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
924 } |
1350
9d190c098b97
rewritten exif pane to support arbitrary number of entries
nadvornik
parents:
1346
diff
changeset
|
925 options_parse_func_push(parser_data, options_parse_pane_exif, NULL, pane); |
1309 | 926 } |
927 else if (g_ascii_strcasecmp(element_name, "pane_histogram") == 0) | |
928 { | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
929 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_HISTOGRAM, options_get_id(attribute_names, attribute_values)); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
930 if (pane) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
931 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
932 bar_pane_histogram_update_from_config(pane, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
933 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
934 else |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
935 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
936 pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
937 bar_add(bar, pane); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
938 } |
1309 | 939 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
940 } | |
941 else if (g_ascii_strcasecmp(element_name, "pane_keywords") == 0) | |
942 { | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
943 GtkWidget *pane = bar_find_pane_by_id(bar, PANE_KEYWORDS, options_get_id(attribute_names, attribute_values)); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
944 if (pane) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
945 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
946 bar_pane_keywords_update_from_config(pane, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
947 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
948 else |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
949 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
950 pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
951 bar_add(bar, pane); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
952 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
953 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
954 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
955 else if (g_ascii_strcasecmp(element_name, "clear") == 0) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
956 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
957 bar_clear(bar); |
1309 | 958 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
959 } | |
960 else | |
961 { | |
1464 | 962 log_printf("unexpected in <bar>: <%s>\n", element_name); |
1309 | 963 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
964 } | |
965 } | |
966 | |
1335 | 967 static void options_parse_toolbar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
968 { | |
969 LayoutWindow *lw = data; | |
970 if (g_ascii_strcasecmp(element_name, "toolitem") == 0) | |
971 { | |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
972 layout_toolbar_add_from_config(lw, TOOLBAR_MAIN, attribute_names, attribute_values); |
1335 | 973 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
974 } | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
975 else if (g_ascii_strcasecmp(element_name, "clear") == 0) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
976 { |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
977 layout_toolbar_clear(lw, TOOLBAR_MAIN); |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
978 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
979 } |
1335 | 980 else |
981 { | |
1464 | 982 log_printf("unexpected in <toolbar>: <%s>\n", element_name); |
1335 | 983 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
984 } | |
985 } | |
986 | |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
987 static void options_parse_statusbar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
988 { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
989 LayoutWindow *lw = data; |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
990 if (g_ascii_strcasecmp(element_name, "toolitem") == 0) |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
991 { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
992 layout_toolbar_add_from_config(lw, TOOLBAR_STATUS, attribute_names, attribute_values); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
993 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
994 } |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
995 else if (g_ascii_strcasecmp(element_name, "clear") == 0) |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
996 { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
997 layout_toolbar_clear(lw, TOOLBAR_STATUS); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
998 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
999 } |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1000 else |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1001 { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1002 log_printf("unexpected in <statusbar>: <%s>\n", element_name); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1003 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1004 } |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1005 } |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1006 |
1309 | 1007 static void options_parse_layout(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
1008 { | |
1009 LayoutWindow *lw = data; | |
1010 if (g_ascii_strcasecmp(element_name, "bar") == 0) | |
1011 { | |
1469
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1012 if (!lw->bar) |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1013 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1014 GtkWidget *bar = bar_new_from_config(lw, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1015 layout_bar_set(lw, bar); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1016 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1017 else |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1018 { |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1019 bar_update_from_config(lw->bar, attribute_names, attribute_values); |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1020 } |
607c60506863
added a possibility to update existing bars from config
nadvornik
parents:
1466
diff
changeset
|
1021 |
1309 | 1022 options_parse_func_push(parser_data, options_parse_bar, NULL, lw->bar); |
1023 } | |
1320 | 1024 else if (g_ascii_strcasecmp(element_name, "bar_sort") == 0) |
1025 { | |
1026 GtkWidget *bar = bar_sort_new_from_config(lw, attribute_names, attribute_values); | |
1027 layout_bar_sort_set(lw, bar); | |
1028 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); | |
1029 } | |
1335 | 1030 else if (g_ascii_strcasecmp(element_name, "toolbar") == 0) |
1031 { | |
1032 options_parse_func_push(parser_data, options_parse_toolbar, NULL, lw); | |
1033 } | |
1582
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1034 else if (g_ascii_strcasecmp(element_name, "statusbar") == 0) |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1035 { |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1036 options_parse_func_push(parser_data, options_parse_statusbar, NULL, lw); |
2ca277a9845b
- handle color profile and write metadata buttons on statusbar by ui_manager
nadvornik
parents:
1567
diff
changeset
|
1037 } |
1309 | 1038 else |
1039 { | |
1464 | 1040 log_printf("unexpected in <layout>: <%s>\n", element_name); |
1309 | 1041 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
1042 } | |
1043 } | |
1044 | |
1317 | 1045 static void options_parse_layout_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error) |
1046 { | |
1047 LayoutWindow *lw = data; | |
1048 layout_util_sync(lw); | |
1049 } | |
1050 | |
1309 | 1051 static void options_parse_toplevel(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error) |
1052 { | |
1461 | 1053 if (g_ascii_strcasecmp(element_name, "gq") == 0) |
1054 { | |
1055 /* optional top-level node */ | |
1056 options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL); | |
1057 return; | |
1058 } | |
1309 | 1059 if (g_ascii_strcasecmp(element_name, "global") == 0) |
1060 { | |
1061 load_global_params(attribute_names, attribute_values); | |
1463
25168240a247
added function to reload external editors at any time
nadvornik
parents:
1461
diff
changeset
|
1062 options_parse_func_push(parser_data, options_parse_global, options_parse_global_end, NULL); |
1313 | 1063 return; |
1309 | 1064 } |
1313 | 1065 |
1066 if (g_ascii_strcasecmp(element_name, "layout") == 0) | |
1309 | 1067 { |
1068 LayoutWindow *lw; | |
1466
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1069 lw = layout_find_by_layout_id(options_get_id(attribute_names, attribute_values)); |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1070 if (lw) |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1071 { |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1072 layout_update_from_config(lw, attribute_names, attribute_values); |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1073 } |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1074 else |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1075 { |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1076 lw = layout_new_from_config(attribute_names, attribute_values, parser_data->startup); |
6e020d3ab168
added possibility to update existing layout window from config
nadvornik
parents:
1464
diff
changeset
|
1077 } |
1317 | 1078 options_parse_func_push(parser_data, options_parse_layout, options_parse_layout_end, lw); |
1309 | 1079 } |
1080 else | |
1081 { | |
1464 | 1082 log_printf("unexpected in <toplevel>: <%s>\n", element_name); |
1309 | 1083 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL); |
1084 } | |
1085 } | |
1086 | |
1087 | |
1088 | |
1089 | |
1090 | |
1091 /* | |
1092 *----------------------------------------------------------------------------- | |
1093 * parser | |
1094 *----------------------------------------------------------------------------- | |
1095 */ | |
1096 | |
1097 | |
1098 struct _GQParserFuncData | |
1099 { | |
1100 GQParserStartFunc start_func; | |
1101 GQParserEndFunc end_func; | |
1102 // GQParserTextFunc text_func; | |
1103 gpointer data; | |
1104 }; | |
1105 | |
1106 void options_parse_func_push(GQParserData *parser_data, GQParserStartFunc start_func, GQParserEndFunc end_func, gpointer data) | |
1107 { | |
1108 GQParserFuncData *func_data = g_new0(GQParserFuncData, 1); | |
1109 func_data->start_func = start_func; | |
1110 func_data->end_func = end_func; | |
1111 func_data->data = data; | |
1112 | |
1113 parser_data->parse_func_stack = g_list_prepend(parser_data->parse_func_stack, func_data); | |
1114 } | |
1115 | |
1116 void options_parse_func_pop(GQParserData *parser_data) | |
1117 { | |
1118 g_free(parser_data->parse_func_stack->data); | |
1119 parser_data->parse_func_stack = g_list_delete_link(parser_data->parse_func_stack, parser_data->parse_func_stack); | |
1120 } | |
1121 | |
1122 void options_parse_func_set_data(GQParserData *parser_data, gpointer data) | |
1123 { | |
1124 GQParserFuncData *func = parser_data->parse_func_stack->data; | |
1125 func->data = data; | |
1126 } | |
1127 | |
1128 | |
1129 static void start_element(GMarkupParseContext *context, | |
1130 const gchar *element_name, | |
1131 const gchar **attribute_names, | |
1132 const gchar **attribute_values, | |
1133 gpointer user_data, | |
1134 GError **error) | |
1135 { | |
1136 GQParserData *parser_data = user_data; | |
1137 GQParserFuncData *func = parser_data->parse_func_stack->data; | |
1138 DEBUG_1("start %s", element_name); | |
1139 | |
1140 if (func->start_func) | |
1141 func->start_func(parser_data, context, element_name, attribute_names, attribute_values, func->data, error); | |
1142 } | |
1143 | |
1144 static void end_element(GMarkupParseContext *context, | |
1145 const gchar *element_name, | |
1146 gpointer user_data, | |
1147 GError **error) | |
1148 { | |
1149 GQParserData *parser_data = user_data; | |
1150 GQParserFuncData *func = parser_data->parse_func_stack->data; | |
1151 DEBUG_1("end %s", element_name); | |
1152 | |
1153 if (func->end_func) | |
1154 func->end_func(parser_data, context, element_name, func->data, error); | |
1155 | |
1156 options_parse_func_pop(parser_data); | |
1157 } | |
1158 | |
1159 static GMarkupParser parser = { | |
1160 start_element, | |
1161 end_element, | |
1162 NULL, | |
1163 NULL, | |
1164 NULL | |
1165 }; | |
741
0e8b802e54d5
Move code from save_options() to new save_options_to() which takes
zas_
parents:
738
diff
changeset
|
1166 |
1 | 1167 /* |
1168 *----------------------------------------------------------------------------- | |
1169 * load configuration (public) | |
1170 *----------------------------------------------------------------------------- | |
442 | 1171 */ |
1 | 1172 |
1484 | 1173 gboolean load_config_from_buf(const gchar *buf, gsize size, gboolean startup) |
1 | 1174 { |
1309 | 1175 GMarkupParseContext *context; |
1176 gboolean ret = TRUE; | |
1177 GQParserData *parser_data; | |
630
83d3ded39e49
An option to save and restore the last path used was added.
zas_
parents:
629
diff
changeset
|
1178 |
1309 | 1179 parser_data = g_new0(GQParserData, 1); |
1313 | 1180 |
1181 parser_data->startup = startup; | |
1309 | 1182 options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL); |
764
ae618ebec3e9
Save properties window width and height to rc file and restore
zas_
parents:
743
diff
changeset
|
1183 |
1309 | 1184 context = g_markup_parse_context_new(&parser, 0, parser_data, NULL); |
338
41c3cb73120f
Rename window options (moved to layout) and re-order rc file.
zas_
parents:
337
diff
changeset
|
1185 |
1346
c9949c19a6d0
No space between function name and first parenthesis, it eases greping (see CODING).
zas_
parents:
1336
diff
changeset
|
1186 if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE) |
1309 | 1187 { |
1188 ret = FALSE; | |
1189 DEBUG_1("Parse failed"); | |
1190 } | |
1191 | |
1192 g_free(parser_data); | |
684 | 1193 |
1484 | 1194 g_markup_parse_context_free(context); |
1195 return ret; | |
1196 } | |
1197 | |
1198 gboolean load_config_from_file(const gchar *utf8_path, gboolean startup) | |
1199 { | |
1200 gsize size; | |
1201 gchar *buf; | |
1202 gboolean ret = TRUE; | |
1203 | |
1204 if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE) | |
1205 { | |
1206 return FALSE; | |
1207 } | |
1208 ret = load_config_from_buf(buf, size, startup); | |
1309 | 1209 g_free(buf); |
1210 return ret; | |
1211 } | |
1212 | |
442 | 1213 |
1 | 1214 |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
1023
diff
changeset
|
1215 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |