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