~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/globals.c

  • Committer: Joshua Judson Rosen
  • Author(s): Marcus Bauer
  • Date: 2010-08-08 22:28:45 UTC
  • Revision ID: rozzin@geekspace.com-20100808222845-86w25l3qq5nlf5ib
Perl scripts to convert track-logs from tangoGPS format to GPX and OSM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
GtkWidget *window3 = NULL;
21
21
GtkWidget *menu1 = NULL;
22
 
GtkWidget *route_menu = NULL;
23
22
 
24
23
GList   *global_infopane_widgets = NULL;
25
24
GList   *global_infopane_current = NULL;
31
30
int global_zoom = 3;
32
31
int global_zoom_max = 20;
33
32
int global_detail_zoom = 0;
34
 
 
35
 
int mouse_dx = 0;
 
33
                
 
34
int mouse_dx = 0; 
36
35
int mouse_dy = 0;
37
 
 
 
36
                
38
37
int global_drawingarea_width  = 0;
39
38
int global_drawingarea_height = 0;
40
39
 
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;    
44
43
 
45
44
 
46
45
tangogps_gps_data_t *gpsdata = NULL;
47
 
hrm_data_t *hrmdata = NULL;
48
 
 
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;
54
 
 
55
 
float           trip_distance   = 0;
56
 
double          trip_maxspeed   = 0;
57
 
double          trip_time       = 0;
58
 
double          trip_starttime  = 0;
59
 
 
60
 
gboolean        trip_counter_on = TRUE;
61
 
gboolean        trip_logger_on  = FALSE;
62
 
gboolean        trip_livelog_on = FALSE;
63
 
gboolean        hrm_on          = FALSE;
 
46
 
 
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;
 
54
double          trip_time = 0;
 
55
double          trip_starttime = 0;
 
56
gboolean        trip_counter_on = TRUE;
 
57
gboolean        trip_logger_on = FALSE;
 
58
gboolean        trip_livelog_on = FALSE;
64
59
 
65
60
trackpoint_t    global_myposition;
66
61
 
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;
74
69
 
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;
83
77
 
84
78
gboolean        global_show_friends = FALSE;
101
95
gchar           *global_server  = NULL;
102
96
gchar           *global_port    = NULL;
103
97
 
104
 
gchar           *global_hrm_bt_addr = NULL;
105
 
 
106
98
gchar           *global_home_dir = NULL;
107
99
gchar           *foxtrotgps_dir = NULL;
108
100
 
109
101
int             mouse_x = 0;
110
102
int             mouse_y = 0;
111
 
 
112
 
int             drag_started = 0;