]> err.no Git - mapper/blob - src/config-gconf.h
Remove old map sources
[mapper] / src / config-gconf.h
1 #ifndef _CONFIG_GCONF_H
2 #define _CONFIG_GCONF_H
3
4 #include <gconf/gconf-client.h>
5 #include <gtk/gtk.h>
6 #include "filter.h"
7 #include "mapper-types.h"
8 #include "map-repo.h"
9 #include "position.h"
10
11 GConfClient *gconf_client;
12
13 void config_init(void);
14 gboolean config_save(void);
15
16 gboolean config_save_repo(void);
17 gboolean config_load_repo(void);
18 RepoData *config_parse_repo(gchar *str);
19
20 gboolean config_load_position(Position *pos, const gchar *key);
21 gboolean config_save_position(Position *pos, const gchar *key);
22
23 gboolean config_save_filter(GpsTrackFilter *f);
24
25 gboolean config_load_string_list(const gchar *gconf_key, GSList **list, GtkListStore **model);
26
27 void config_update_proxy(void);
28
29 #endif