Diff of /trunk/src/gpxview.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 158 by harbaum, Wed Nov 4 14:54:52 2009 UTC revision 211 by harbaum, Wed Nov 25 10:13:26 2009 UTC
# Line 24  Line 24 
24  #if MAEMO_VERSION_MAJOR < 5  #if MAEMO_VERSION_MAJOR < 5
25  #define USE_BREAD_CRUMB_TRAIL  #define USE_BREAD_CRUMB_TRAIL
26  #else  #else
27    #define FREMANTLE
28    
29  // these are on maemo fremantle  // these are on maemo fremantle
30  #include <hildon/hildon-button.h>  #include <hildon/hildon-button.h>
31  #include <hildon/hildon-text-view.h>  #include <hildon/hildon-text-view.h>
# Line 134  typedef struct { Line 136  typedef struct {
136    gboolean compass_locked;    gboolean compass_locked;
137    int compass_damping;    int compass_damping;
138    
139      gboolean disable_gcvote;
140    
141    struct gps_state *gps_state;    struct gps_state *gps_state;
142    
143    /* keep track of all html views so zoom events can be delivered */    /* keep track of all html views so zoom events can be delivered */
# Line 215  typedef struct { Line 219  typedef struct {
219    } map;    } map;
220  #endif  #endif
221    
222      /* username is also used to detect own caches (by log entry) */
223      char *username;
224    
225      /* stuff to call geotoad */
226      struct {
227        char *password, *filename;
228        float distance, lat, lon;
229        int flags;
230      } gt;
231    
232    GtkWidget *vbox;    GtkWidget *vbox;
233  } appdata_t;  } appdata_t;
234    
# Line 233  typedef struct { Line 247  typedef struct {
247  #include "mm_poi.h"  #include "mm_poi.h"
248  #include "precpos.h"  #include "precpos.h"
249  #include "garmin_export.h"  #include "garmin_export.h"
250    #include "geotoad.h"
251    
252  #ifdef ENABLE_OSM_GPS_MAP  #ifdef ENABLE_OSM_GPS_MAP
253  #include "map-tool.h"  #include "map-tool.h"
# Line 274  HildonAppMenu *menu_create(appdata_t *ap Line 289  HildonAppMenu *menu_create(appdata_t *ap
289  #endif  #endif
290  void cachelist_goto_cache(appdata_t *appdata, cache_t *cache);  void cachelist_goto_cache(appdata_t *appdata, cache_t *cache);
291  void gpxlist_goto_cachelist(appdata_t *appdata, gpx_t *gpx);  void gpxlist_goto_cachelist(appdata_t *appdata, gpx_t *gpx);
292    gboolean gpxlist_find(appdata_t *appdata, GtkTreeIter *iter, gpx_t *gpx);
293    void gpxlist_set(GtkListStore *store, GtkTreeIter *iter, gpx_t *gpx);
294    
295  #endif // GPXVIEW_H  #endif // GPXVIEW_H

Legend:
Removed from v.158  
changed lines
  Added in v.211