31
30
int global_zoom = 3;
32
31
int global_zoom_max = 20;
33
32
int global_detail_zoom = 0;
38
37
int global_drawingarea_width = 0;
39
38
int global_drawingarea_height = 0;
41
int global_speed_unit = 0;
42
int global_alt_unit = 0;
43
int global_latlon_unit = 0;
40
int global_speed_unit = 0;
41
int global_alt_unit = 0;
42
int global_latlon_unit = 0;
46
45
tangogps_gps_data_t *gpsdata = NULL;
47
hrm_data_t *hrmdata = NULL;
49
GQueue *trackpoint_list= NULL;
50
GSList *friends_list = NULL;
51
GSList *photo_list = NULL;
52
GSList *poi_list = NULL;
53
GSList *msg_list = NULL;
55
float trip_distance = 0;
56
double trip_maxspeed = 0;
58
double trip_starttime = 0;
60
gboolean trip_counter_on = TRUE;
61
gboolean trip_logger_on = FALSE;
62
gboolean trip_livelog_on = FALSE;
63
gboolean hrm_on = FALSE;
47
GQueue *trackpoint_list = NULL;
48
GSList *friends_list = NULL;
49
GSList *photo_list = NULL;
50
GSList *poi_list = NULL;
51
GSList *msg_list = NULL;
52
float trip_distance = 0;
53
double trip_maxspeed = 0;
55
double trip_starttime = 0;
56
gboolean trip_counter_on = TRUE;
57
gboolean trip_logger_on = FALSE;
58
gboolean trip_livelog_on = FALSE;
65
60
trackpoint_t global_myposition;
70
65
int global_repo_nr = 1;
71
66
GSList *global_repo_list = NULL;
72
67
GSList *global_curr_repo = NULL;
73
GSettings *global_settings = NULL;
68
GConfClient *global_gconfclient = NULL;
75
70
gboolean global_infopane_visible = FALSE;
76
71
gboolean global_landscape;
77
72
gboolean global_auto_download = TRUE;
78
gboolean global_no_redownload = FALSE;
79
73
gboolean global_mapmode = TRUE;
80
74
gboolean global_autocenter = TRUE;
81
gboolean global_reconnect_hrm = TRUE;
75
gboolean global_reconnect_gpsd = TRUE;
82
76
int global_tiles_in_dl_queue = 0;
84
78
gboolean global_show_friends = FALSE;
101
95
gchar *global_server = NULL;
102
96
gchar *global_port = NULL;
104
gchar *global_hrm_bt_addr = NULL;
106
98
gchar *global_home_dir = NULL;
107
99
gchar *foxtrotgps_dir = NULL;
112
int drag_started = 0;