]> err.no Git - mapper/blob - src/settings.h
Fixes so it builds again under maemo scratchbox.
[mapper] / src / settings.h
1 #include "config.h"
2
3 #define _GNU_SOURCE
4
5 #include <glib.h>
6
7 #ifndef _MAPPER_SETTINGS_H
8 #define _MAPPER_SETTINGS_H
9
10 #include "mapper-types.h"
11 #include "settings-gconf.h"
12
13 /** CONFIGURATION INFORMATION. */
14 gchar *_rcvr_mac;
15 gchar *_route_dir_uri;
16 gchar *_track_file_uri;
17 gchar *_route_dl_url;
18 guint _route_dl_radius;
19
20 gboolean _track_store;
21
22 gboolean _always_keep_on;
23 gboolean _fullscreen;
24 gboolean _enable_gps;
25 gboolean _gps_info;
26
27 gboolean _gps_filter;
28 gfloat  _filter_hdop;
29 gfloat _filter_vdop;
30 gfloat _filter_angle;
31
32 gint _show_tracks;
33 gboolean _show_scale;
34 gboolean _show_velvec;
35 gboolean _show_poi;
36 gboolean _auto_download;
37
38 gboolean _iap_connecting;
39 gboolean _iap_connected;
40
41 guint _lead_ratio;
42 guint _center_ratio;
43 guint _draw_width;
44
45 gboolean _enable_voice;
46 guint _announce_notice_ratio;
47 gdouble _voice_speed;
48 gint _voice_pitch;
49
50 gboolean _speed_limit_on;
51 gboolean _speed_excess;
52 guint _speed_limit;
53
54 gboolean _satdetails_on;
55
56 gchar *_http_proxy_host;
57 gint _http_proxy_port;
58
59 GSList *_loc_list;
60 GtkListStore *_loc_model;
61
62 CustomAction _action[CUSTOM_KEY_ENUM_COUNT];
63 CenterMode _center_mode;
64 UnitType _units;
65 guint _degformat;
66 SpeedLocation _speed_location;
67 InfoFontSize _info_font_size;
68
69 GList *_repo_list;
70 RepoData *_curr_repo;
71
72 #endif