]> err.no Git - mapper/blob - src/settings.h
Map widget:
[mapper] / src / settings.h
1 #include "config.h"
2
3 #include <glib.h>
4
5 #ifndef _MAPPER_SETTINGS_H
6 #define _MAPPER_SETTINGS_H
7
8 #include "settings-gconf.h"
9 #include "mapper-types.h"
10
11 /** CONFIGURATION INFORMATION. */
12 gchar *_route_dir_uri;
13 gchar *_track_file_uri;
14 gchar *_route_dl_url;
15
16 guint _route_dl_radius;
17 guint _track_dl_radius;
18
19 gboolean _track_store;
20
21 gboolean _always_keep_on;
22 gboolean _fullscreen;
23
24 gboolean _enable_gps;
25 gboolean _gps_info;
26 gboolean _satdetails_on;
27
28 gboolean _auto_download;
29
30 gboolean _enable_voice;
31 guint _announce_notice_ratio;
32 guint _voice_speed;
33 guint _voice_pitch;
34
35 gboolean _announce_waypoints;
36 gboolean _announce_overspeed;
37 gboolean _announce_destination;
38
39 gboolean _speed_on;
40 gboolean _speed_excess;
41 guint _speed_limit;
42
43 guint _map_location_sens;
44
45 gchar *_http_proxy_host;
46 gint _http_proxy_port;
47
48 GSList *_loc_list;
49 GtkListStore *_loc_model;
50
51 CustomAction _action[CUSTOM_KEY_ENUM_COUNT];
52 guint _degformat;
53 SpeedLocation _speed_location;
54 InfoFontSize _info_font_size;
55
56 #endif