]> err.no Git - mapper/blob - src/settings.h
Remodelling of GPS handling for hildon. Work in progress still.
[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 guint _route_dl_radius;
16
17 gboolean _track_store;
18
19 gboolean _always_keep_on;
20 gboolean _fullscreen;
21 gboolean _enable_gps;
22 gboolean _gps_info;
23
24 gint _show_tracks;
25 gboolean _show_scale;
26 gboolean _show_velvec;
27 gboolean _show_poi;
28 gboolean _auto_download;
29
30 guint _lead_ratio;
31 guint _center_ratio;
32 guint _draw_width;
33
34 gboolean _enable_voice;
35 guint _announce_notice_ratio;
36 guint _voice_speed;
37 guint _voice_pitch;
38
39 gboolean _speed_on;
40 gboolean _speed_excess;
41 guint _speed_limit;
42
43 gboolean _satdetails_on;
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 CenterMode _center_mode;
53 UnitType _units;
54 guint _degformat;
55 SpeedLocation _speed_location;
56 InfoFontSize _info_font_size;
57
58 GList *_repo_list;
59 RepoData *_curr_repo;
60
61 #endif