]> Dogcows Code - chaz/homebank/blob - src/hb-preferences.c
Merge branch 'upstream'
[chaz/homebank] / src / hb-preferences.c
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2019 Maxime DOYEN
3 *
4 * This file is part of HomeBank.
5 *
6 * HomeBank is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * HomeBank is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21 #include "homebank.h"
22
23 #include "hb-preferences.h"
24 #include "hb-filter.h"
25 #include "gtk-chart-colors.h"
26
27 #ifdef G_OS_WIN32
28 #include <windows.h>
29 #endif
30
31 /****************************************************************************/
32 /* Debug macros */
33 /****************************************************************************/
34 #define MYDEBUG 0
35
36 #if MYDEBUG
37 #define DB(x) (x);
38 #else
39 #define DB(x);
40 #endif
41
42 /* our global datas */
43 extern struct HomeBank *GLOBALS;
44 extern struct Preferences *PREFS;
45
46 /* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
47
48 static void homebank_pref_init_monetary(void)
49 {
50
51 DB( g_print("\n[system] get currency code\n") );
52
53 #ifdef G_OS_UNIX
54 struct lconv *lc = localeconv();
55
56 g_stpcpy (PREFS->IntCurrSymbol, lc->int_curr_symbol);
57 g_strstrip(PREFS->IntCurrSymbol);
58
59 DB( g_print("- stored '%s' from linux system\n", PREFS->IntCurrSymbol) );
60 #else
61
62 #ifdef G_OS_WIN32
63 #define BUFFER_SIZE 512
64 char buffer[BUFFER_SIZE];
65 //LPWSTR wcBuffer = buffer;
66 LPSTR wcBuffer = buffer;
67 int iResult;
68
69 //https://msdn.microsoft.com/en-us/library/windows/desktop/dd464799%28v=vs.85%29.aspx
70
71 //LOCALE_SINTLSYMBOL
72 iResult = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SINTLSYMBOL, wcBuffer, BUFFER_SIZE);
73 if(iResult > 0)
74 {
75 DB( g_print("LOCALE_SINTLSYMBOL='%s'\n", buffer) );
76 g_stpcpy (PREFS->IntCurrSymbol, buffer);
77 g_strstrip(PREFS->IntCurrSymbol);
78
79 DB( g_print("- stored '%s' from windows system\n", PREFS->IntCurrSymbol) );
80 }
81 #else
82
83 g_stpcpy (PREFS->IntCurrSymbol, "USD");
84
85 DB( g_print("- stored '%s' as default\n", PREFS->IntCurrSymbol) );
86
87 #endif
88
89 #endif
90
91
92 }
93
94
95 /*
96 static void homebank_pref_init_monetary(void)
97 {
98 DB( g_print("\n[preferences] monetary\n") );
99
100
101 #ifdef G_OS_UNIX
102
103 struct lconv *lc = localeconv();
104
105 DB( g_print("\n[preferences] monetary unix\n") );
106
107 DB( g_print("int_curr_symbol '%s'\n", lc->int_curr_symbol) );
108
109 DB( g_print("mon_decimal_point is utf8: %d\n", g_utf8_validate(lc->mon_decimal_point, -1, NULL)) );
110 DB( g_print("mon_decimal_point '%s'\n", lc->mon_decimal_point) );
111 DB( g_print("mon_decimal_point %x %x %x %x\n", lc->mon_decimal_point[0], lc->mon_decimal_point[1], lc->mon_decimal_point[2], lc->mon_decimal_point[3]) );
112
113 DB( g_print("mon_thousands_sep is utf8: %d\n", g_utf8_validate(lc->mon_thousands_sep, -1, NULL)) );
114 DB( g_print("mon_thousands_sep '%s'\n", lc->mon_thousands_sep) );
115 DB( g_print("mon_thousands_sep %x %x %x %x\n", lc->mon_thousands_sep[0], lc->mon_thousands_sep[1], lc->mon_thousands_sep[2], lc->mon_thousands_sep[3]) );
116
117
118 DB( g_print("frac_digits '%d'\n", (gint)lc->frac_digits) );
119
120 DB( g_print("currency_symbol '%s'\n", lc->currency_symbol) );
121
122 DB( g_print("p_cs_precedes '%d'\n", lc->p_cs_precedes) );
123
124 DB( g_print("n_cs_precedes '%d'\n", lc->n_cs_precedes) );
125
126 //PREFS->base_cur.iso_code = g_strdup(g_strstrip(lc->int_curr_symbol));
127
128 if( lc->p_cs_precedes || lc->n_cs_precedes )
129 {
130 PREFS->base_cur.symbol = g_strdup(lc->currency_symbol);
131 PREFS->base_cur.sym_prefix = TRUE;
132 DB( g_print("locale mon cs is a prefix\n") );
133 }
134 else
135 {
136 PREFS->base_cur.symbol = g_strdup(lc->currency_symbol);
137 PREFS->base_cur.sym_prefix = FALSE;
138 }
139
140 PREFS->base_cur.decimal_char = g_strdup(lc->mon_decimal_point);
141
142 PREFS->base_cur.grouping_char = g_strdup(lc->mon_thousands_sep);
143
144 //todo:fix
145 //PREFS->base_cur.grouping_char = g_locale_to_utf8(lc->mon_thousands_sep, -1, NULL, NULL, NULL);
146 //PREFS->base_cur.grouping_char = g_convert (lc->mon_thousands_sep, -1, "UTF-8", "ISO-8859-1", NULL, NULL, NULL);
147
148 DB( g_print(" -> grouping_char: '%s'\n", PREFS->base_cur.grouping_char) );
149
150 PREFS->base_cur.frac_digits = lc->frac_digits;
151
152 //fix 378992/421228
153 if( PREFS->base_cur.frac_digits > MAX_FRAC_DIGIT )
154 {
155 PREFS->base_cur.frac_digits = 2;
156 g_free(PREFS->base_cur.decimal_char);
157 PREFS->base_cur.decimal_char = g_strdup(".");
158 }
159
160 #else
161 #ifdef G_OS_WIN32
162
163 #define BUFFER_SIZE 512
164 char buffer[BUFFER_SIZE];
165 //LPWSTR wcBuffer = buffer;
166 LPSTR wcBuffer = buffer;
167 int iResult;
168 gsize toto;
169
170 //https://msdn.microsoft.com/en-us/library/windows/desktop/dd464799%28v=vs.85%29.aspx
171
172 //LOCALE_SINTLSYMBOL
173
174
175 //see g_locale_to_utf8 here
176 iResult = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SCURRENCY, wcBuffer, BUFFER_SIZE);
177 if(iResult > 0)
178 {
179 DB( g_print("LOCALE_SCURRENCY='%s'\n", buffer) );
180 PREFS->base_cur.symbol = g_locale_to_utf8(buffer, -1, NULL, &toto, NULL);
181 }
182
183 // LOCALE_ICURRENCY
184 //PREFS->base_cur.sym_prefix =
185
186 iResult = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, wcBuffer, BUFFER_SIZE);
187 if(iResult > 0)
188 {
189 DB( g_print("LOCALE_SDECIMAL='%s'\n", buffer) );
190 PREFS->base_cur.decimal_char = g_locale_to_utf8(buffer, -1, NULL, &toto, NULL);
191 }
192
193 iResult = GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_STHOUSAND, wcBuffer, BUFFER_SIZE);
194 if(iResult > 0)
195 {
196 DB( g_print("LOCALE_STHOUSAND='%s'\n", buffer) );
197 PREFS->base_cur.grouping_char = g_locale_to_utf8(buffer, -1, NULL, &toto, NULL);
198 }
199
200 // LOCALE_ICURRDIGITS
201 PREFS->base_cur.frac_digits = 2;
202
203 #else
204
205 PREFS->base_cur.iso_code = g_strdup("USD");
206 PREFS->base_cur.symbol = NULL; //g_strdup("");
207 PREFS->base_cur.sym_prefix = FALSE;
208 PREFS->base_cur.decimal_char = g_strdup(".");
209 PREFS->base_cur.grouping_char = NULL; //g_strdup("");
210 PREFS->base_cur.frac_digits = 2;
211
212 #endif
213 #endif
214
215 }
216 */
217
218
219
220 static void homebank_pref_init_wingeometry(struct WinGeometry *wg, gint l, gint t, gint w, gint h)
221 {
222 wg->l = l;
223 wg->t = t;
224 wg->w = w;
225 wg->h = h;
226 wg->s = 0;
227 }
228
229
230 //vehicle_unit_100
231 //vehicle_unit_distbyvol
232 //=> used for column title
233
234 static void _homebank_pref_init_measurement_units(void)
235 {
236 // unit is kilometer
237 if(!PREFS->vehicle_unit_ismile)
238 {
239 PREFS->vehicle_unit_dist = "%d km";
240 PREFS->vehicle_unit_100 = "100 km";
241 }
242 // unit is miles
243 else
244 {
245 PREFS->vehicle_unit_dist = "%d mi.";
246 PREFS->vehicle_unit_100 = "100 mi.";
247 }
248
249 // unit is Liters
250 if(!PREFS->vehicle_unit_isgal)
251 {
252 //TRANSLATORS: format a liter number with l/L as abbreviation
253 PREFS->vehicle_unit_vol = _("%.2f l");
254 if(!PREFS->vehicle_unit_ismile)
255 //TRANSLATORS: kilometer per liter
256 PREFS->vehicle_unit_distbyvol = _("km/l");
257 else
258 //TRANSLATORS: miles per liter
259 PREFS->vehicle_unit_distbyvol = _("mi./l");
260 }
261 // unit is gallon
262 else
263 {
264 PREFS->vehicle_unit_vol = "%.2f gal.";
265 if(!PREFS->vehicle_unit_ismile)
266 PREFS->vehicle_unit_distbyvol = "km/gal.";
267 else
268 PREFS->vehicle_unit_distbyvol = "mi./gal.";
269 }
270
271 }
272
273
274 void homebank_pref_free(void)
275 {
276 DB( g_print("\n[preferences] free\n") );
277
278
279 g_free(PREFS->date_format);
280
281 g_free(PREFS->color_exp);
282 g_free(PREFS->color_inc);
283 g_free(PREFS->color_warn);
284
285 g_free(PREFS->path_hbfile);
286 g_free(PREFS->path_import);
287 g_free(PREFS->path_export);
288 //g_free(PREFS->path_navigator);
289
290 g_free(PREFS->language);
291
292 g_free(PREFS->pnl_list_tab);
293
294 g_free(PREFS->minor_cur.symbol);
295 g_free(PREFS->minor_cur.decimal_char);
296 g_free(PREFS->minor_cur.grouping_char);
297
298 memset(PREFS, 0, sizeof(struct Preferences));
299 }
300
301
302 void homebank_pref_setdefault(void)
303 {
304 gint i;
305
306 DB( g_print("\n[preferences] pref init\n") );
307
308 homebank_pref_free();
309
310 PREFS->language = NULL;
311
312 PREFS->date_format = g_strdup(DEFAULT_FORMAT_DATE);
313
314 PREFS->path_hbfile = g_strdup_printf("%s", g_get_home_dir ());
315 PREFS->path_import = g_strdup_printf("%s", g_get_home_dir ());
316 PREFS->path_export = g_strdup_printf("%s", g_get_home_dir ());
317 //PREFS->path_navigator = g_strdup(DEFAULT_PATH_NAVIGATOR);
318
319 PREFS->showsplash = TRUE;
320 PREFS->loadlast = TRUE;
321 PREFS->appendscheduled = FALSE;
322 PREFS->do_update_currency = FALSE;
323
324 PREFS->bak_is_automatic = TRUE;
325 PREFS->bak_max_num_copies = 5;
326
327 PREFS->heritdate = FALSE;
328 PREFS->hidereconciled = FALSE;
329 PREFS->showremind = TRUE;
330 //#1673048
331 PREFS->txn_memoacp = TRUE;
332 PREFS->txn_memoacp_days = 365;
333
334 PREFS->toolbar_style = 4; //text beside icons
335 PREFS->custom_colors = TRUE;
336 PREFS->color_exp = g_strdup(DEFAULT_EXP_COLOR);
337 PREFS->color_inc = g_strdup(DEFAULT_INC_COLOR);
338 PREFS->color_warn = g_strdup(DEFAULT_WARN_COLOR);
339 PREFS->grid_lines = GTK_TREE_VIEW_GRID_LINES_NONE;
340
341 /* fiscal year */
342 PREFS->fisc_year_day = 1;
343 PREFS->fisc_year_month = 1;
344
345 /* windows position/size */
346 homebank_pref_init_wingeometry(&PREFS->wal_wg, 0, 0, 1024, 600);
347 homebank_pref_init_wingeometry(&PREFS->acc_wg, 0, 0, 1024, 600);
348 homebank_pref_init_wingeometry(&PREFS->sta_wg, 0, 0, 800, 494);
349 homebank_pref_init_wingeometry(&PREFS->tme_wg, 0, 0, 800, 494);
350 homebank_pref_init_wingeometry(&PREFS->ove_wg, 0, 0, 800, 494);
351 homebank_pref_init_wingeometry(&PREFS->bud_wg, 0, 0, 800, 494);
352 homebank_pref_init_wingeometry(&PREFS->cst_wg, 0, 0, 800, 494);
353
354 homebank_pref_init_wingeometry(&PREFS->txn_wg, 0, 0, -1, -1);
355
356 homebank_pref_init_monetary();
357
358 PREFS->wal_toolbar = TRUE;
359 PREFS->wal_spending = TRUE;
360 PREFS->wal_upcoming = TRUE;
361 PREFS->wal_vpaned = 600/2;
362 PREFS->wal_hpaned = 1024/2;
363
364 PREFS->pnl_acc_col_acc_width = -1;
365 PREFS->pnl_acc_show_by = 0;
366 PREFS->pnl_upc_col_pay_width = -1;
367 PREFS->pnl_upc_col_mem_width = -1;
368
369 i = 0;
370 PREFS->lst_impope_columns[i++] = LST_DSPOPE_DATE; //always displayed
371 PREFS->lst_impope_columns[i++] = LST_DSPOPE_MEMO;
372 PREFS->lst_impope_columns[i++] = LST_DSPOPE_AMOUNT;
373 PREFS->lst_impope_columns[i++] = LST_DSPOPE_INFO;
374 PREFS->lst_impope_columns[i++] = LST_DSPOPE_PAYEE;
375 PREFS->lst_impope_columns[i++] = LST_DSPOPE_CATEGORY;
376 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_TAGS;
377 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_CLR;
378 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_STATUS; //always displayed
379 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_EXPENSE;
380 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_INCOME;
381 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_BALANCE;
382 PREFS->lst_impope_columns[i++] = -LST_DSPOPE_ACCOUNT;
383
384 i = 0;
385 PREFS->lst_ope_columns[i++] = LST_DSPOPE_STATUS; //always displayed
386 PREFS->lst_ope_columns[i++] = LST_DSPOPE_DATE; //always displayed
387 PREFS->lst_ope_columns[i++] = LST_DSPOPE_INFO;
388 PREFS->lst_ope_columns[i++] = LST_DSPOPE_PAYEE;
389 PREFS->lst_ope_columns[i++] = LST_DSPOPE_CATEGORY;
390 PREFS->lst_ope_columns[i++] = LST_DSPOPE_TAGS;
391 PREFS->lst_ope_columns[i++] = LST_DSPOPE_CLR;
392 PREFS->lst_ope_columns[i++] = -LST_DSPOPE_AMOUNT;
393 PREFS->lst_ope_columns[i++] = LST_DSPOPE_EXPENSE;
394 PREFS->lst_ope_columns[i++] = LST_DSPOPE_INCOME;
395 PREFS->lst_ope_columns[i++] = LST_DSPOPE_BALANCE;
396 PREFS->lst_ope_columns[i++] = LST_DSPOPE_MEMO;
397 PREFS->lst_ope_columns[i++] = -LST_DSPOPE_ACCOUNT;
398
399 PREFS->lst_ope_sort_id = LST_DSPOPE_DATE;
400 PREFS->lst_ope_sort_order = GTK_SORT_ASCENDING;
401
402 for( i=0;i<NUM_LST_DSPOPE;i++)
403 PREFS->lst_ope_col_width[i] = -1;
404
405 //PREFS->base_cur.nbdecimal = 2;
406 //PREFS->base_cur.separator = TRUE;
407
408 //PREFS->date_range_wal = FLT_RANGE_LASTMONTH;
409 //PREFS->date_range_txn = FLT_RANGE_LAST12MONTHS;
410 //PREFS->date_range_rep = FLT_RANGE_THISYEAR;
411
412 //v5.2 change to let the example file show things
413 PREFS->date_range_wal = FLT_RANGE_ALLDATE;
414 PREFS->date_range_txn = FLT_RANGE_ALLDATE;
415 PREFS->date_range_rep = FLT_RANGE_ALLDATE;
416 PREFS->date_future_nbdays = 0;
417
418 //import/export
419 PREFS->dtex_nointro = TRUE;
420 PREFS->dtex_ucfirst = FALSE;
421 //PREFS->dtex_datefmt
422 PREFS->dtex_ofxname = 1;
423 PREFS->dtex_ofxmemo = 2;
424 PREFS->dtex_qifmemo = TRUE;
425 PREFS->dtex_qifswap = FALSE;
426 PREFS->dtex_csvsep = PRF_DTEX_CSVSEP_SEMICOLON;
427
428 //todo: add intelligence here
429 PREFS->euro_active = FALSE;
430
431 PREFS->euro_country = 0;
432 PREFS->euro_value = 1.0;
433
434 da_cur_initformat(&PREFS->minor_cur);
435
436 //PREFS->euro_nbdec = 2;
437 //PREFS->euro_thsep = TRUE;
438 //PREFS->euro_symbol = g_strdup("??");
439
440 PREFS->stat_byamount = FALSE;
441 PREFS->stat_showdetail = FALSE;
442 PREFS->stat_showrate = FALSE;
443 PREFS->budg_showdetail = FALSE;
444 PREFS->report_color_scheme = CHART_COLMAP_HOMEBANK;
445
446 //PREFS->chart_legend = FALSE;
447
448 PREFS->vehicle_unit_ismile = FALSE;
449 PREFS->vehicle_unit_isgal = FALSE;
450
451 _homebank_pref_init_measurement_units();
452
453 }
454
455
456 /*
457 ** load preference from homedir/.homebank (HB_DATA_PATH)
458 */
459 static void homebank_pref_get_wingeometry(
460 GKeyFile *key_file,
461 const gchar *group_name,
462 const gchar *key,
463 struct WinGeometry *storage)
464 {
465 if( g_key_file_has_key(key_file, group_name, key, NULL) )
466 {
467 gint *wg;
468 gsize length;
469
470 wg = g_key_file_get_integer_list(key_file, group_name, key, &length, NULL);
471 memcpy(storage, wg, 5*sizeof(gint));
472 g_free(wg);
473 // #606613 ensure left/top to be > 0
474 if(storage->l < 0)
475 storage->l = 0;
476
477 if(storage->t < 0)
478 storage->t = 0;
479 }
480 }
481
482
483
484
485 static void homebank_pref_get_boolean(
486 GKeyFile *key_file,
487 const gchar *group_name,
488 const gchar *key,
489 gboolean *storage)
490 {
491 DB( g_print(" search %s in %s\n", key, group_name) );
492
493 if( g_key_file_has_key(key_file, group_name, key, NULL) )
494 {
495 *storage = g_key_file_get_boolean(key_file, group_name, key, NULL);
496 DB( g_print(" stored boolean %d for %s at %x\n", *storage, key, *storage) );
497 }
498 }
499
500 static void homebank_pref_get_integer(
501 GKeyFile *key_file,
502 const gchar *group_name,
503 const gchar *key,
504 gint *storage)
505 {
506 DB( g_print(" search %s in %s\n", key, group_name) );
507
508 if( g_key_file_has_key(key_file, group_name, key, NULL) )
509 {
510 *storage = g_key_file_get_integer(key_file, group_name, key, NULL);
511 DB( g_print(" stored integer %d for %s at %x\n", *storage, key, *storage) );
512 }
513 }
514
515 static void homebank_pref_get_guint32(
516 GKeyFile *key_file,
517 const gchar *group_name,
518 const gchar *key,
519 guint32 *storage)
520 {
521 DB( g_print(" search %s in %s\n", key, group_name) );
522
523 if( g_key_file_has_key(key_file, group_name, key, NULL) )
524 {
525 *storage = g_key_file_get_integer(key_file, group_name, key, NULL);
526 DB( g_print(" stored guint32 %d for %s at %x\n", *storage, key, *storage) );
527 }
528 }
529
530 static void homebank_pref_get_short(
531 GKeyFile *key_file,
532 const gchar *group_name,
533 const gchar *key,
534 gshort *storage)
535 {
536 DB( g_print(" search %s in %s\n", key, group_name) );
537
538 if( g_key_file_has_key(key_file, group_name, key, NULL) )
539 {
540 *storage = (gshort)g_key_file_get_integer(key_file, group_name, key, NULL);
541 DB( g_print(" stored short %d for %s at %x\n", *storage, key, *storage) );
542 }
543 }
544
545 static void homebank_pref_get_string(
546 GKeyFile *key_file,
547 const gchar *group_name,
548 const gchar *key,
549 gchar **storage)
550 {
551 gchar *string;
552
553 if( g_key_file_has_key(key_file, group_name, key, NULL) )
554 {
555 /* free any previous string */
556 if( *storage != NULL )
557 {
558 //DB( g_print(" storage was not null, freeing\n") );
559
560 g_free(*storage);
561 }
562
563 *storage = NULL;
564
565 string = g_key_file_get_string(key_file, group_name, key, NULL);
566 if( string != NULL )
567 {
568 //*storage = g_strdup(string);
569 //leak
570 *storage = string; //already a new allocated string
571
572 //DB( g_print(" store '%s' for %s at %x\n", string, key, *storage) );
573 }
574 }
575
576 /*
577 if (error)
578 {
579 g_warning ("error: %s\n", error->message);
580 g_error_free(error);
581 error = NULL;
582 }
583 */
584
585
586 }
587
588
589 static void homebank_pref_currfmt_convert(Currency *cur, gchar *prefix, gchar *suffix)
590 {
591
592 if( (prefix != NULL) && (strlen(prefix) > 0) )
593 {
594 cur->symbol = g_strdup(prefix);
595 cur->sym_prefix = TRUE;
596 }
597 else if( (suffix != NULL) )
598 {
599 cur->symbol = g_strdup(suffix);
600 cur->sym_prefix = FALSE;
601 }
602 }
603
604
605 gboolean homebank_pref_load(void)
606 {
607 GKeyFile *keyfile;
608 gboolean retval = FALSE;
609 gchar *group, *filename;
610 guint32 version;
611 gboolean loaded;
612 GError *error = NULL;
613
614 DB( g_print("\n[preferences] pref load\n") );
615
616 keyfile = g_key_file_new();
617 if(keyfile)
618 {
619 filename = g_build_filename(homebank_app_get_config_dir(), "preferences", NULL );
620
621 DB( g_print(" - filename: %s\n", filename) );
622
623 error = NULL;
624 loaded = g_key_file_load_from_file (keyfile, filename, G_KEY_FILE_NONE, &error);
625 if( error )
626 {
627 g_warning("unable to load file %s: %s", filename, error->message);
628 g_error_free (error);
629 }
630
631 if( loaded == TRUE )
632 {
633
634 group = "General";
635
636 DB( g_print(" -> ** General\n") );
637
638 //since 4.51 version is integer
639 homebank_pref_get_guint32 (keyfile, group, "Version", &version);
640 if(version == 0) // old double number
641 {
642 gdouble v = g_key_file_get_double (keyfile, group, "Version", NULL);
643 version = (guint32)(v * 10);
644 }
645
646 DB( g_print(" - version: %d\n", version) );
647
648 homebank_pref_get_string(keyfile, group, "Language", &PREFS->language);
649
650 homebank_pref_get_short(keyfile, group, "BarStyle" , &PREFS->toolbar_style);
651
652 if(version <= 6 && PREFS->toolbar_style == 0) // force system to text beside
653 {
654 PREFS->toolbar_style = 4;
655 }
656
657 if(version <= 2) // retrieve old settings
658 {
659 guint32 color;
660
661 homebank_pref_get_guint32(keyfile, group, "ColorExp" , &color);
662 g_free(PREFS->color_exp);
663 PREFS->color_exp = g_strdup_printf("#%06x", color);
664
665 homebank_pref_get_guint32(keyfile, group, "ColorInc" , &color);
666 g_free(PREFS->color_inc);
667 PREFS->color_inc = g_strdup_printf("#%06x", color);
668
669 homebank_pref_get_guint32(keyfile, group, "ColorWarn", &color);
670 g_free(PREFS->color_warn);
671 PREFS->color_warn = g_strdup_printf("#%06x", color);
672 }
673 else
674 {
675 homebank_pref_get_boolean(keyfile, group, "CustomColors", &PREFS->custom_colors);
676
677 homebank_pref_get_string(keyfile, group, "ColorExp" , &PREFS->color_exp);
678 homebank_pref_get_string(keyfile, group, "ColorInc" , &PREFS->color_inc);
679 homebank_pref_get_string(keyfile, group, "ColorWarn", &PREFS->color_warn);
680
681 if( version <= 500 )
682 {
683 gboolean rules_hint;
684 homebank_pref_get_boolean(keyfile, group, "RulesHint", &rules_hint);
685 if( rules_hint == TRUE )
686 PREFS->grid_lines = GTK_TREE_VIEW_GRID_LINES_HORIZONTAL;
687
688 }
689 else
690 homebank_pref_get_short(keyfile, group, "GridLines", &PREFS->grid_lines);
691 }
692
693 DB( g_print(" - color exp: %s\n", PREFS->color_exp) );
694 DB( g_print(" - color inc: %s\n", PREFS->color_inc) );
695 DB( g_print(" - color wrn: %s\n", PREFS->color_warn) );
696
697
698 homebank_pref_get_string(keyfile, group, "WalletPath", &PREFS->path_hbfile);
699 homebank_pref_get_string(keyfile, group, "ImportPath", &PREFS->path_import);
700 homebank_pref_get_string(keyfile, group, "ExportPath", &PREFS->path_export);
701
702 homebank_pref_get_boolean(keyfile, group, "ShowSplash", &PREFS->showsplash);
703 homebank_pref_get_boolean(keyfile, group, "LoadLast", &PREFS->loadlast);
704 homebank_pref_get_boolean(keyfile, group, "AppendScheduled", &PREFS->appendscheduled);
705 homebank_pref_get_boolean(keyfile, group, "UpdateCurrency", &PREFS->do_update_currency);
706
707 homebank_pref_get_boolean(keyfile, group, "BakIsAutomatic", &PREFS->bak_is_automatic);
708 homebank_pref_get_short(keyfile, group, "BakMaxNumCopies", &PREFS->bak_max_num_copies);
709
710 homebank_pref_get_boolean(keyfile, group, "HeritDate", &PREFS->heritdate);
711 homebank_pref_get_boolean(keyfile, group, "HideReconciled", &PREFS->hidereconciled);
712 homebank_pref_get_boolean(keyfile, group, "ShowRemind", &PREFS->showremind);
713 homebank_pref_get_boolean(keyfile, group, "TxnMemoAcp", &PREFS->txn_memoacp);
714 homebank_pref_get_short(keyfile, group, "TxnMemoAcpDays", &PREFS->txn_memoacp_days);
715
716
717 if( g_key_file_has_key(keyfile, group, "ColumnsOpe", NULL) )
718 {
719 gboolean *bsrc;
720 gint *src, i, j;
721 gsize length;
722
723 if(version <= 2) //retrieve old 0.1 or 0.2 visibility boolean
724 {
725 bsrc = g_key_file_get_boolean_list(keyfile, group, "ColumnsOpe", &length, NULL);
726 if( length == NUM_LST_DSPOPE-1 )
727 {
728 //and convert
729 for(i=0; i<NUM_LST_DSPOPE-1 ; i++)
730 {
731 PREFS->lst_ope_columns[i] = (bsrc[i] == TRUE) ? i+1 : -(i+1);
732 }
733 }
734 g_free(bsrc);
735 }
736 else
737 {
738 src = g_key_file_get_integer_list(keyfile, group, "ColumnsOpe", &length, NULL);
739
740 DB( g_print(" - length %d (max=%d)\n", length, NUM_LST_DSPOPE) );
741
742 if( length == NUM_LST_DSPOPE )
743 {
744 DB( g_print(" - copying column order from pref file\n") );
745 memcpy(PREFS->lst_ope_columns, src, length*sizeof(gint));
746 }
747 else
748 {
749 if(version <= 7)
750 {
751 if( length == NUM_LST_DSPOPE-2 ) //1 less column before v4.5.1
752 {
753 DB( g_print(" - upgrade from v7\n") );
754 DB( g_print(" - copying column order from pref file\n") );
755 memcpy(PREFS->lst_ope_columns, src, length*sizeof(gint));
756 //append balance column
757 PREFS->lst_ope_columns[10] = LST_DSPOPE_BALANCE;
758 }
759 }
760
761 if(version < 500)
762 {
763 if( length == NUM_LST_DSPOPE-2 ) //1 less column before v4.5.1
764 {
765 DB( g_print(" - upgrade prior v5.0\n") );
766 DB( g_print(" - copying column order from pref file\n") );
767 gboolean added = FALSE;
768 for(i=0,j=0; i<NUM_LST_DSPOPE-1 ; i++)
769 {
770 if( added == FALSE &&
771 (ABS(src[i]) == LST_DSPOPE_AMOUNT ||
772 ABS(src[i]) == LST_DSPOPE_EXPENSE ||
773 ABS(src[i]) == LST_DSPOPE_INCOME) )
774 {
775 PREFS->lst_ope_columns[j++] = LST_DSPOPE_CLR;
776 added = TRUE;
777 }
778 PREFS->lst_ope_columns[j++] = src[i];
779 }
780 }
781 }
782
783 }
784
785 g_free(src);
786 }
787
788 }
789
790 if( g_key_file_has_key(keyfile, group, "ColumnsOpeWidth", NULL) )
791 {
792 gint *src;
793 gsize length;
794
795 src = g_key_file_get_integer_list(keyfile, group, "ColumnsOpeWidth", &length, NULL);
796
797 DB( g_print(" - length %d (max=%d)\n", length, NUM_LST_DSPOPE) );
798
799 if( length == NUM_LST_DSPOPE )
800 {
801 DB( g_print(" - copying column width from pref file\n") );
802 memcpy(PREFS->lst_ope_col_width, src, length*sizeof(gint));
803 }
804
805 //leak
806 g_free(src);
807
808 }
809
810 homebank_pref_get_integer(keyfile, group, "OpeSortId", &PREFS->lst_ope_sort_id);
811 homebank_pref_get_integer(keyfile, group, "OpeSortOrder", &PREFS->lst_ope_sort_order);
812
813 DB( g_print(" - set sort to %d %d\n", PREFS->lst_ope_sort_id, PREFS->lst_ope_sort_order) );
814
815 homebank_pref_get_short(keyfile, group, "FiscYearDay", &PREFS->fisc_year_day);
816 homebank_pref_get_short(keyfile, group, "FiscYearMonth", &PREFS->fisc_year_month);
817
818
819 group = "Windows";
820
821 DB( g_print(" -> ** Windows\n") );
822
823 homebank_pref_get_wingeometry(keyfile, group, "Wal", &PREFS->wal_wg);
824 homebank_pref_get_wingeometry(keyfile, group, "Acc", &PREFS->acc_wg);
825 homebank_pref_get_wingeometry(keyfile, group, "Sta", &PREFS->sta_wg);
826 homebank_pref_get_wingeometry(keyfile, group, "Tme", &PREFS->tme_wg);
827 homebank_pref_get_wingeometry(keyfile, group, "Ove", &PREFS->ove_wg);
828 homebank_pref_get_wingeometry(keyfile, group, "Bud", &PREFS->bud_wg);
829 homebank_pref_get_wingeometry(keyfile, group, "Car", &PREFS->cst_wg);
830
831 homebank_pref_get_wingeometry(keyfile, group, "Txn", &PREFS->txn_wg);
832
833 if(version <= 7) //set maximize to 0
834 {
835 PREFS->wal_wg.s = 0;
836 PREFS->acc_wg.s = 0;
837 PREFS->txn_wg.s = 0;
838 PREFS->sta_wg.s = 0;
839 PREFS->tme_wg.s = 0;
840 PREFS->ove_wg.s = 0;
841 PREFS->bud_wg.s = 0;
842 PREFS->cst_wg.s = 0;
843 }
844 homebank_pref_get_integer(keyfile, group, "WalVPaned", &PREFS->wal_vpaned);
845 homebank_pref_get_integer(keyfile, group, "WalHPaned", &PREFS->wal_hpaned);
846 homebank_pref_get_boolean(keyfile, group, "WalToolbar", &PREFS->wal_toolbar);
847 homebank_pref_get_boolean(keyfile, group, "WalSpending", &PREFS->wal_spending);
848 homebank_pref_get_boolean(keyfile, group, "WalUpcoming", &PREFS->wal_upcoming);
849
850 //since 5.1.3
851 group = "Panels";
852
853 DB( g_print(" -> ** Panels\n") );
854
855 homebank_pref_get_short(keyfile, group, "AccColAccW", &PREFS->pnl_acc_col_acc_width);
856 homebank_pref_get_short(keyfile, group, "AccShowBy" , &PREFS->pnl_acc_show_by);
857
858 homebank_pref_get_short(keyfile, group, "UpcColPayW", &PREFS->pnl_upc_col_pay_width);
859 homebank_pref_get_short(keyfile, group, "UpcColMemW", &PREFS->pnl_upc_col_mem_width);
860
861 homebank_pref_get_string(keyfile, group, "PnlLstTab", &PREFS->pnl_list_tab);
862
863 group = "Format";
864
865 DB( g_print(" -> ** Format\n") );
866
867 homebank_pref_get_string(keyfile, group, "DateFmt", &PREFS->date_format);
868
869 if(version < 460)
870 {
871 gboolean useimperial;
872
873 homebank_pref_get_boolean(keyfile, group, "UKUnits", &useimperial);
874 if(useimperial)
875 {
876 PREFS->vehicle_unit_ismile = TRUE;
877 PREFS->vehicle_unit_isgal = TRUE;
878 }
879 }
880
881 homebank_pref_get_boolean(keyfile, group, "UnitIsMile", &PREFS->vehicle_unit_ismile);
882 homebank_pref_get_boolean(keyfile, group, "UnitIsGal", &PREFS->vehicle_unit_isgal);
883
884
885 group = "Filter";
886
887 DB( g_print(" -> ** Filter\n") );
888
889 homebank_pref_get_integer(keyfile, group, "DateRangeWal", &PREFS->date_range_wal);
890 homebank_pref_get_integer(keyfile, group, "DateRangeTxn", &PREFS->date_range_txn);
891 homebank_pref_get_integer(keyfile, group, "DateFutureNbDays", &PREFS->date_future_nbdays);
892 homebank_pref_get_integer(keyfile, group, "DateRangeRep", &PREFS->date_range_rep);
893
894 if(version <= 7)
895 {
896 // shift date range >= 5, since we inserted a new one at position 5
897 if(PREFS->date_range_wal >= FLT_RANGE_LASTYEAR)
898 PREFS->date_range_wal++;
899 if(PREFS->date_range_txn >= FLT_RANGE_LASTYEAR)
900 PREFS->date_range_txn++;
901 if(PREFS->date_range_rep >= FLT_RANGE_LASTYEAR)
902 PREFS->date_range_rep++;
903 }
904
905
906 group = "Euro";
907
908 DB( g_print(" -> ** Euro\n") );
909
910 //homebank_pref_get_string(keyfile, group, "DefCurrency" , &PREFS->curr_default);
911
912 homebank_pref_get_boolean(keyfile, group, "Active", &PREFS->euro_active);
913 homebank_pref_get_integer(keyfile, group, "Country", &PREFS->euro_country);
914
915 gchar *ratestr = g_key_file_get_string (keyfile, group, "ChangeRate", NULL);
916 if(ratestr != NULL) PREFS->euro_value = g_ascii_strtod(ratestr, NULL);
917
918 if(version <= 1)
919 {
920 homebank_pref_get_string(keyfile, group, "Symbol", &PREFS->minor_cur.symbol);
921 PREFS->minor_cur.frac_digits = g_key_file_get_integer (keyfile, group, "NBDec", NULL);
922
923 //PREFS->euro_nbdec = g_key_file_get_integer (keyfile, group, "NBDec", NULL);
924 //PREFS->euro_thsep = g_key_file_get_boolean (keyfile, group, "Sep", NULL);
925 //gchar *tmpstr = g_key_file_get_string (keyfile, group, "Symbol", &error);
926 }
927 else
928 {
929 if(version < 460)
930 {
931 gchar *prefix = NULL;
932 gchar *suffix = NULL;
933
934 homebank_pref_get_string(keyfile, group, "PreSymbol", &prefix);
935 homebank_pref_get_string(keyfile, group, "SufSymbol", &suffix);
936 homebank_pref_currfmt_convert(&PREFS->minor_cur, prefix, suffix);
937 g_free(prefix);
938 g_free(suffix);
939 }
940 else
941 {
942 homebank_pref_get_string(keyfile, group, "Symbol", &PREFS->minor_cur.symbol);
943 homebank_pref_get_boolean(keyfile, group, "IsPrefix", &PREFS->minor_cur.sym_prefix);
944 }
945 homebank_pref_get_string(keyfile, group, "DecChar" , &PREFS->minor_cur.decimal_char);
946 homebank_pref_get_string(keyfile, group, "GroupChar", &PREFS->minor_cur.grouping_char);
947 homebank_pref_get_short(keyfile, group, "FracDigits", &PREFS->minor_cur.frac_digits);
948
949 //fix 378992/421228
950 if( PREFS->minor_cur.frac_digits > MAX_FRAC_DIGIT )
951 PREFS->minor_cur.frac_digits = MAX_FRAC_DIGIT;
952
953 da_cur_initformat(&PREFS->minor_cur);
954 }
955
956 //PREFS->euro_symbol = g_locale_to_utf8(tmpstr, -1, NULL, NULL, NULL);
957
958 group = "Report";
959
960 DB( g_print(" -> ** Report\n") );
961
962 homebank_pref_get_boolean(keyfile, group, "StatByAmount", &PREFS->stat_byamount);
963 homebank_pref_get_boolean(keyfile, group, "StatDetail", &PREFS->stat_showdetail);
964 homebank_pref_get_boolean(keyfile, group, "StatRate", &PREFS->stat_showrate);
965 homebank_pref_get_boolean(keyfile, group, "BudgDetail", &PREFS->budg_showdetail);
966 homebank_pref_get_integer(keyfile, group, "ColorScheme", &PREFS->report_color_scheme);
967
968 group = "Exchange";
969
970 DB( g_print(" -> ** Exchange\n") );
971
972 homebank_pref_get_boolean(keyfile, group, "DoIntro", &PREFS->dtex_nointro);
973 homebank_pref_get_boolean(keyfile, group, "UcFirst", &PREFS->dtex_ucfirst);
974 homebank_pref_get_integer(keyfile, group, "DateFmt", &PREFS->dtex_datefmt);
975 homebank_pref_get_integer(keyfile, group, "OfxName", &PREFS->dtex_ofxname);
976 homebank_pref_get_integer(keyfile, group, "OfxMemo", &PREFS->dtex_ofxmemo);
977 homebank_pref_get_boolean(keyfile, group, "QifMemo", &PREFS->dtex_qifmemo);
978 homebank_pref_get_boolean(keyfile, group, "QifSwap", &PREFS->dtex_qifswap);
979 homebank_pref_get_integer(keyfile, group, "CsvSep", &PREFS->dtex_csvsep);
980
981 //group = "Chart";
982 //PREFS->chart_legend = g_key_file_get_boolean (keyfile, group, "Legend", NULL);
983
984
985 /*
986 #if MYDEBUG == 1
987 gsize length;
988 gchar *contents = g_key_file_to_data (keyfile, &length, NULL);
989 //g_print(" keyfile:\n%s\n len=%d\n", contents, length);
990 g_free(contents);
991 #endif
992 */
993
994 }
995 g_free(filename);
996 g_key_file_free (keyfile);
997
998 _homebank_pref_init_measurement_units();
999 }
1000
1001 return retval;
1002 }
1003
1004
1005 static void homebank_pref_set_string(
1006 GKeyFile *key_file,
1007 const gchar *group_name,
1008 const gchar *key,
1009 gchar *string)
1010 {
1011
1012 DB( g_print(" - homebank_pref_set_string :: group='%s' key='%s' value='%s'\n", group_name, key, string) );
1013
1014 if( string != NULL && *string != '\0')
1015 g_key_file_set_string (key_file, group_name, key, string);
1016 else
1017 g_key_file_set_string (key_file, group_name, key, "");
1018
1019 }
1020
1021
1022 /*
1023 ** save preference to homedir/.homebank (HB_DATA_PATH)
1024 */
1025 gboolean homebank_pref_save(void)
1026 {
1027 GKeyFile *keyfile;
1028 gboolean retval = FALSE;
1029 gchar *group, *filename;
1030 gsize length;
1031 GError *error = NULL;
1032
1033 DB( g_print("\n[preferences] pref save\n") );
1034
1035 keyfile = g_key_file_new();
1036 if(keyfile )
1037 {
1038
1039 DB( g_print(" -> ** general\n") );
1040
1041
1042 group = "General";
1043 g_key_file_set_integer (keyfile, group, "Version", PREF_VERSION);
1044
1045 homebank_pref_set_string (keyfile, group, "Language", PREFS->language);
1046
1047 g_key_file_set_integer (keyfile, group, "BarStyle", PREFS->toolbar_style);
1048 //g_key_file_set_integer (keyfile, group, "BarImageSize", PREFS->image_size);
1049
1050
1051
1052 g_key_file_set_boolean (keyfile, group, "CustomColors", PREFS->custom_colors);
1053 g_key_file_set_string (keyfile, group, "ColorExp" , PREFS->color_exp);
1054 g_key_file_set_string (keyfile, group, "ColorInc" , PREFS->color_inc);
1055 g_key_file_set_string (keyfile, group, "ColorWarn", PREFS->color_warn);
1056
1057 g_key_file_set_integer (keyfile, group, "GridLines", PREFS->grid_lines);
1058
1059 homebank_pref_set_string (keyfile, group, "WalletPath" , PREFS->path_hbfile);
1060 homebank_pref_set_string (keyfile, group, "ImportPath" , PREFS->path_import);
1061 homebank_pref_set_string (keyfile, group, "ExportPath" , PREFS->path_export);
1062 //g_key_file_set_string (keyfile, group, "NavigatorPath", PREFS->path_navigator);
1063
1064 g_key_file_set_boolean (keyfile, group, "BakIsAutomatic", PREFS->bak_is_automatic);
1065 g_key_file_set_integer (keyfile, group, "BakMaxNumCopies", PREFS->bak_max_num_copies);
1066
1067 g_key_file_set_boolean (keyfile, group, "ShowSplash", PREFS->showsplash);
1068 g_key_file_set_boolean (keyfile, group, "LoadLast", PREFS->loadlast);
1069 g_key_file_set_boolean (keyfile, group, "AppendScheduled", PREFS->appendscheduled);
1070 g_key_file_set_boolean (keyfile, group, "UpdateCurrency", PREFS->do_update_currency);
1071
1072 g_key_file_set_boolean (keyfile, group, "HeritDate", PREFS->heritdate);
1073 g_key_file_set_boolean (keyfile, group, "HideReconciled", PREFS->hidereconciled);
1074 g_key_file_set_boolean (keyfile, group, "ShowRemind", PREFS->showremind);
1075 g_key_file_set_boolean (keyfile, group, "TxnMemoAcp", PREFS->txn_memoacp);
1076 g_key_file_set_integer (keyfile, group, "TxnMemoAcpDays" , PREFS->txn_memoacp_days);
1077
1078 g_key_file_set_integer_list(keyfile, group, "ColumnsOpe", PREFS->lst_ope_columns, NUM_LST_DSPOPE);
1079 g_key_file_set_integer_list(keyfile, group, "ColumnsOpeWidth", PREFS->lst_ope_col_width, NUM_LST_DSPOPE);
1080 g_key_file_set_integer (keyfile, group, "OpeSortId" , PREFS->lst_ope_sort_id);
1081 g_key_file_set_integer (keyfile, group, "OpeSortOrder" , PREFS->lst_ope_sort_order);
1082
1083 g_key_file_set_integer (keyfile, group, "FiscYearDay" , PREFS->fisc_year_day);
1084 g_key_file_set_integer (keyfile, group, "FiscYearMonth" , PREFS->fisc_year_month);
1085
1086 // added v3.4
1087 DB( g_print(" -> ** windows\n") );
1088
1089 group = "Windows";
1090 g_key_file_set_integer_list(keyfile, group, "Wal", (gint *)&PREFS->wal_wg, 5);
1091 g_key_file_set_integer_list(keyfile, group, "Acc", (gint *)&PREFS->acc_wg, 5);
1092 g_key_file_set_integer_list(keyfile, group, "Sta", (gint *)&PREFS->sta_wg, 5);
1093 g_key_file_set_integer_list(keyfile, group, "Tme", (gint *)&PREFS->tme_wg, 5);
1094 g_key_file_set_integer_list(keyfile, group, "Ove", (gint *)&PREFS->ove_wg, 5);
1095 g_key_file_set_integer_list(keyfile, group, "Bud", (gint *)&PREFS->bud_wg, 5);
1096 g_key_file_set_integer_list(keyfile, group, "Car", (gint *)&PREFS->cst_wg, 5);
1097
1098 g_key_file_set_integer_list(keyfile, group, "Txn", (gint *)&PREFS->txn_wg, 5);
1099
1100 g_key_file_set_integer (keyfile, group, "WalVPaned" , PREFS->wal_vpaned);
1101 g_key_file_set_integer (keyfile, group, "WalHPaned" , PREFS->wal_hpaned);
1102 g_key_file_set_boolean (keyfile, group, "WalToolbar", PREFS->wal_toolbar);
1103 g_key_file_set_boolean (keyfile, group, "WalSpending", PREFS->wal_spending);
1104 g_key_file_set_boolean (keyfile, group, "WalUpcoming", PREFS->wal_upcoming);
1105
1106 //since 5.1.3
1107 DB( g_print(" -> ** Panels\n") );
1108
1109 group = "Panels";
1110 g_key_file_set_integer(keyfile, group, "AccColAccW", PREFS->pnl_acc_col_acc_width);
1111 g_key_file_set_integer(keyfile, group, "AccShowBy" , PREFS->pnl_acc_show_by);
1112
1113 g_key_file_set_integer(keyfile, group, "UpcColPayW", PREFS->pnl_upc_col_pay_width);
1114 g_key_file_set_integer(keyfile, group, "UpcColMemW", PREFS->pnl_upc_col_mem_width);
1115
1116 homebank_pref_set_string (keyfile, group, "PnlLstTab", PREFS->pnl_list_tab);
1117
1118 DB( g_print(" -> ** format\n") );
1119
1120 group = "Format";
1121 homebank_pref_set_string (keyfile, group, "DateFmt" , PREFS->date_format);
1122
1123 //g_key_file_set_boolean (keyfile, group, "UKUnits" , PREFS->imperial_unit);
1124 g_key_file_set_boolean (keyfile, group, "UnitIsMile" , PREFS->vehicle_unit_ismile);
1125 g_key_file_set_boolean (keyfile, group, "UnitIsGal" , PREFS->vehicle_unit_isgal);
1126
1127
1128 DB( g_print(" -> ** filter\n") );
1129
1130 group = "Filter";
1131 g_key_file_set_integer (keyfile, group, "DateRangeWal", PREFS->date_range_wal);
1132 g_key_file_set_integer (keyfile, group, "DateRangeTxn", PREFS->date_range_txn);
1133 g_key_file_set_integer (keyfile, group, "DateFutureNbDays", PREFS->date_future_nbdays);
1134 g_key_file_set_integer (keyfile, group, "DateRangeRep", PREFS->date_range_rep);
1135
1136 DB( g_print(" -> ** euro\n") );
1137
1138 //euro options
1139 group = "Euro";
1140
1141 //homebank_pref_set_string(keyfile, group, "DefCurrency" , PREFS->curr_default);
1142
1143 g_key_file_set_boolean (keyfile, group, "Active" , PREFS->euro_active);
1144 if( PREFS->euro_active )
1145 {
1146 g_key_file_set_integer (keyfile, group, "Country", PREFS->euro_country);
1147 gchar ratestr[64];
1148 g_ascii_dtostr(ratestr, 63, PREFS->euro_value);
1149 homebank_pref_set_string (keyfile, group, "ChangeRate", ratestr);
1150 homebank_pref_set_string (keyfile, group, "Symbol" , PREFS->minor_cur.symbol);
1151 g_key_file_set_boolean (keyfile, group, "IsPrefix" , PREFS->minor_cur.sym_prefix);
1152 homebank_pref_set_string (keyfile, group, "DecChar" , PREFS->minor_cur.decimal_char);
1153 homebank_pref_set_string (keyfile, group, "GroupChar" , PREFS->minor_cur.grouping_char);
1154 g_key_file_set_integer (keyfile, group, "FracDigits", PREFS->minor_cur.frac_digits);
1155 }
1156
1157 //report options
1158 DB( g_print(" -> ** report\n") );
1159
1160 group = "Report";
1161 g_key_file_set_boolean (keyfile, group, "StatByAmount", PREFS->stat_byamount);
1162 g_key_file_set_boolean (keyfile, group, "StatDetail" , PREFS->stat_showdetail);
1163 g_key_file_set_boolean (keyfile, group, "StatRate" , PREFS->stat_showrate);
1164 g_key_file_set_boolean (keyfile, group, "BudgDetail" , PREFS->budg_showdetail);
1165 g_key_file_set_integer (keyfile, group, "ColorScheme" , PREFS->report_color_scheme);
1166
1167
1168 group = "Exchange";
1169 g_key_file_set_boolean (keyfile, group, "DoIntro", PREFS->dtex_nointro);
1170 g_key_file_set_boolean (keyfile, group, "UcFirst", PREFS->dtex_ucfirst);
1171 g_key_file_set_integer (keyfile, group, "DateFmt", PREFS->dtex_datefmt);
1172 g_key_file_set_integer (keyfile, group, "OfxName", PREFS->dtex_ofxname);
1173 g_key_file_set_integer (keyfile, group, "OfxMemo", PREFS->dtex_ofxmemo);
1174 g_key_file_set_boolean (keyfile, group, "QifMemo", PREFS->dtex_qifmemo);
1175 g_key_file_set_boolean (keyfile, group, "QifSwap", PREFS->dtex_qifswap);
1176 g_key_file_set_integer (keyfile, group, "CsvSep", PREFS->dtex_csvsep);
1177
1178 //group = "Chart";
1179 //g_key_file_set_boolean (keyfile, group, "Legend", PREFS->chart_legend);
1180
1181 //g_key_file_set_string (keyfile, group, "", PREFS->);
1182 //g_key_file_set_boolean (keyfile, group, "", PREFS->);
1183 //g_key_file_set_integer (keyfile, group, "", PREFS->);
1184
1185 DB( g_print(" -> ** g_key_file_to_data\n") );
1186
1187 gchar *contents = g_key_file_to_data (keyfile, &length, NULL);
1188
1189 //DB( g_print(" keyfile:\n%s\nlen=%d\n", contents, length) );
1190
1191 filename = g_build_filename(homebank_app_get_config_dir(), "preferences", NULL );
1192
1193 DB( g_print(" -> filename: %s\n", filename) );
1194
1195 g_file_set_contents(filename, contents, length, &error);
1196 if( error )
1197 {
1198 g_warning("unable to save file %s: %s", filename, error->message);
1199 g_error_free (error);
1200 error = NULL;
1201 }
1202
1203 DB( g_print(" -> contents: %s\n", contents) );
1204
1205 DB( g_print(" -> freeing filename\n") );
1206 g_free(filename);
1207
1208 DB( g_print(" -> freeing buffer\n") );
1209
1210 g_free(contents);
1211
1212 DB( g_print(" -> freeing keyfile\n") );
1213
1214 g_key_file_free (keyfile);
1215 }
1216
1217 _homebank_pref_init_measurement_units();
1218
1219 return retval;
1220 }
1221
This page took 0.089322 seconds and 5 git commands to generate.