Diff of /trunk/src/map-tool.c

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

revision 56 by harbaum, Fri Aug 14 12:19:45 2009 UTC revision 143 by harbaum, Mon Oct 26 19:55:00 2009 UTC
# Line 17  Line 17 
17   * along with GPXView.  If not, see <http://www.gnu.org/licenses/>.   * along with GPXView.  If not, see <http://www.gnu.org/licenses/>.
18   */   */
19    
20    /*
21     * http://topo.geofabrik.de/relief/${z}/${x}/${y}.png  8-15
22     * http://topo.geofabrik.de/trail/${z}/${x}/${y}.png   8-15
23     */
24    
25  #include "gpxview.h"  #include "gpxview.h"
26    #include "converter.h"
27  #include <math.h>    // for isnan  #include <math.h>    // for isnan
28    
29  #ifdef ENABLE_OSM_GPS_MAP  #ifdef ENABLE_OSM_GPS_MAP
30  #include "osm-gps-map.h"  #include "osm-gps-map.h"
31    #include "osm-gps-map-osd-classic.h"
32  #endif  #endif
33    
34  #define MAP_SOURCE  OSM_GPS_MAP_SOURCE_OPENSTREETMAP  #if defined(USE_MAEMO) && (MAEMO_VERSION_MAJOR == 5)
35  #define GPS_DEFAULT_ZOOM 13  #include <gdk/gdkx.h>
36    #include <X11/Xatom.h>
37  /* equatorial radius in meters */  #endif
 #define EQ_RADIUS     (6378137.0)  
38    
39  #define RAD2DEG(a)  (((a)*180.0)/M_PI)  /* default values */
40  #define DEG2RAD(a)  (((a)*M_PI)/180.0)  #define MAP_SOURCE  OSM_GPS_MAP_SOURCE_OPENCYCLEMAP
41    #define GPS_DEFAULT_ZOOM 13
42    
43  #define PROXY_KEY  "/system/http_proxy/"  #define PROXY_KEY  "/system/http_proxy/"
44    
45  static const char *get_proxy_uri(appdata_t *appdata) {  static const char *get_proxy_uri(appdata_t *appdata) {
46    static char proxy_buffer[64] = "";    static char proxy_buffer[64] = "";
47    
48      printf("get_proxy_uri in\n");
49    
50    /* use environment settings if preset */    /* use environment settings if preset */
51    const char *proxy = g_getenv("http_proxy");    const char *proxy = g_getenv("http_proxy");
52    if(proxy) {    if(proxy) {
# Line 68  static const char *get_proxy_uri(appdata Line 77  static const char *get_proxy_uri(appdata
77      return proxy_buffer;      return proxy_buffer;
78    }    }
79    
80      printf("get_proxy_uri out\n");
81    return NULL;    return NULL;
82  }  }
83    
84  static void map_zoom(map_context_t *context, int step) {  static void
85    gint zoom;  cb_map_gps(osd_button_t but, map_context_t *context) {
86    OsmGpsMap *map = OSM_GPS_MAP(context->widget);    printf("cb_map_gps in\n");
   g_object_get(map, "zoom", &zoom, NULL);  
   zoom = osm_gps_map_set_zoom(map, zoom+step);  
   
   /* enable/disable zoom buttons as required */  
   gtk_widget_set_sensitive(context->zoomin,  
            zoom < osm_gps_map_source_get_max_zoom(MAP_SOURCE));  
   gtk_widget_set_sensitive(context->zoomout,  
            zoom > osm_gps_map_source_get_min_zoom(MAP_SOURCE));  
   
   /* hmm ... this doesn't really work */  
   osm_gps_map_osd_speed(map, zoom);  
   
   /* save new zoom */  
   context->appdata->map.zoom = zoom;  
 }  
   
 static gboolean  
 cb_map_zoomin(GtkButton *button, map_context_t *context) {  
   map_zoom(context, +1);  
   return FALSE;  
 }  
87    
88  static gboolean    if(but == OSD_GPS) {
89  cb_map_zoomout(GtkButton *button, map_context_t *context) {      pos_t *refpos = get_pos(context->appdata);
90    map_zoom(context, -1);      if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {
91    return FALSE;        gint zoom;
92  }        g_object_get(OSM_GPS_MAP(context->widget), "zoom", &zoom, NULL);
93          if(zoom < 10)
94            osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
95                                      refpos->lat, refpos->lon, GPS_DEFAULT_ZOOM);
96          else
97            osm_gps_map_set_center(OSM_GPS_MAP(context->widget),
98                                   refpos->lat, refpos->lon);
99    
100  static gboolean        /* re-enable centering */
101  cb_map_gps(GtkButton *button, map_context_t *context) {        g_object_set(context->widget, "auto-center", TRUE, NULL);
102    pos_t *refpos = get_pos(context->appdata);      } else {
103    if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {        /* no coordinates given: display the entire world */
104      osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),        osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
105                        refpos->lat, refpos->lon, GPS_DEFAULT_ZOOM);                                  0.0, 0.0, 1);
106    } else {      }
     /* no coordinates given: display the entire world */  
     osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),  
                               0.0, 0.0, 1);  
107    }    }
108      printf("cb_map_gps out\n");
   return FALSE;  
 }  
   
 static GtkWidget  
 *map_add_button(int icon, GCallback cb, gpointer data,  
                 char *tooltip) {  
   GtkWidget *button = gtk_button_new();  
   gtk_button_set_image(GTK_BUTTON(button), icon_get_widget(ICON_MISC, icon));  
   g_signal_connect(button, "clicked", cb, data);  
 #ifndef USE_MAEMO  
   gtk_widget_set_tooltip_text(button, tooltip);  
 #endif  
   return button;  
109  }  }
110    
111  static int dist2pixel(map_context_t *context, float km, float lat) {  static int dist2pixel(map_context_t *context, float km, float lat) {
# Line 136  static int dist2pixel(map_context_t *con Line 115  static int dist2pixel(map_context_t *con
115  static gboolean map_gps_update(gpointer data) {  static gboolean map_gps_update(gpointer data) {
116    map_context_t *context = (map_context_t*)data;    map_context_t *context = (map_context_t*)data;
117    
118      printf("map_gps_update in\n");
119    
120    /* get reference position ... */    /* get reference position ... */
121    pos_t *refpos = get_pos(context->appdata);    pos_t *refpos = get_pos(context->appdata);
122    gboolean ok = (refpos!= NULL) && !isnan(refpos->lat) && !isnan(refpos->lon);    gboolean ok = (refpos!= NULL) && !isnan(refpos->lat) && !isnan(refpos->lon);
123    
124    /* ... and enable "goto" button if it's valid */    /* ... and enable "goto" button if it's valid */
125    gtk_widget_set_sensitive(context->gps, ok);    osm_gps_map_osd_enable_gps (OSM_GPS_MAP(context->widget),
126                     OSM_GPS_MAP_OSD_CALLBACK(ok?cb_map_gps:NULL), context);
127    
128    if(ok) {    if(ok) {
129      float heading = NAN;      float heading = NAN;
# Line 162  static gboolean map_gps_update(gpointer Line 144  static gboolean map_gps_update(gpointer
144    } else    } else
145      osm_gps_map_clear_gps(OSM_GPS_MAP(context->widget));      osm_gps_map_clear_gps(OSM_GPS_MAP(context->widget));
146    
147      printf("map_gps_update out\n");
148    return TRUE;    return TRUE;
149  }  }
150    
151  static gboolean on_map_configure(GtkWidget *widget,  static void map_draw_cache(GtkWidget *map, cache_t *cache) {
152                                   GdkEventConfigure *event,    printf("map_draw_cache in\n");
                                  map_context_t *context) {  
153    
154    /* set default values if they are invalid */    GdkPixbuf *icon = icon_get(ICON_CACHE_TYPE, cache->type);
   if(!context->appdata->map.zoom ||  
      isnan(context->appdata->map.pos.lat) ||  
      isnan(context->appdata->map.pos.lon)) {  
     printf("no valid map position found\n");  
   
     pos_t *refpos = get_pos(context->appdata);  
     if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {  
       /* use gps position if present */  
       context->appdata->map.pos = *refpos;  
       context->appdata->map.zoom = GPS_DEFAULT_ZOOM;  
     } else {  
       /* use world map otherwise */  
       context->appdata->map.pos.lat = 0.0;  
       context->appdata->map.pos.lon = 0.0;  
       context->appdata->map.zoom = 1;  
     }  
   }  
155    
156    /* jump to initial position */    /* check if there's also an overwritten coordinate */
157    osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),    if(cache->notes && cache->notes->override) {
158                              context->appdata->map.pos.lat,      GdkPixbuf *over = icon_get(ICON_MISC, 1);
                             context->appdata->map.pos.lon,  
                             context->appdata->map.zoom);  
   
   return FALSE;  
 }  
159    
 static void map_draw_cachelist(GtkWidget *map, cache_t *cache) {  
   while(cache) {  
     GdkPixbuf *icon = icon_get(ICON_CACHE_TYPE, cache->type);  
   
160      osm_gps_map_add_image(OSM_GPS_MAP(map),      osm_gps_map_add_image(OSM_GPS_MAP(map),
161                            cache->pos.lat, cache->pos.lon, icon);            cache->notes->pos.lat, cache->notes->pos.lon, icon);
162    
163      cache = cache->next;      osm_gps_map_add_image(OSM_GPS_MAP(map),
164              cache->notes->pos.lat, cache->notes->pos.lon, over);
165      } else {
166        if(!isnan(cache->pos.lat) && !isnan(cache->pos.lon))
167          osm_gps_map_add_image(OSM_GPS_MAP(map),
168                                cache->pos.lat, cache->pos.lon, icon);
169    }    }
170      printf("map_draw_cache out\n");
171  }  }
172    
173  /* draw a nice popup */  static void map_draw_gpx(appdata_t *appdata, GtkWidget *map, gpx_t *gpx) {
174  typedef struct {    printf("map_draw_gpx in\n");
   appdata_t *appdata;  
   GtkWidget *window;  
   GMainLoop *loop;  
   cache_t *cache;  
 } popup_context_t;  
   
 /* draw shape */  
 #define ARROW_BORDER   20  
 #define CORNER_RADIUS  10  
   
 #ifndef USE_MAEMO  
 #define POPUP_WIDTH  300  
 #define POPUP_HEIGHT 100  
 #else  
 #define POPUP_WIDTH  360  
 #define POPUP_HEIGHT 120  
 #endif  
175    
176  static gboolean    if(!gpx->notes_loaded) {
177  pointer_in_window(GtkWidget *widget, gint x_root, gint y_root) {      notes_load_all(appdata, gpx);
178    if(GTK_WIDGET_MAPPED(gtk_widget_get_toplevel(widget))) {      gpx->notes_loaded = TRUE;
     gint window_x, window_y;  
   
     gdk_window_get_position(gtk_widget_get_toplevel(widget)->window,  
                             &window_x, &window_y);  
   
     if(x_root >= window_x && x_root < window_x + widget->allocation.width &&  
         y_root >= window_y && y_root < window_y + widget->allocation.height)  
       return TRUE;  
179    }    }
   
   return FALSE;  
 }  
   
 static gboolean  
 on_button_press_event(GtkWidget *widget,  
                           GdkEventButton *event, popup_context_t *context) {  
   gboolean in = pointer_in_window(widget, event->x_root, event->y_root);  
180    
181    printf("overlay button press (in = %d)\n", in);    cache_t *cache = gpx->cache;
182    return !in;    while(cache) {
183  }      map_draw_cache(map, cache);
184        cache = cache->next;
 static gboolean  
 on_button_release_event(GtkWidget *widget,  
                           GdkEventButton *event, popup_context_t *context) {  
   gboolean in = pointer_in_window(widget, event->x_root, event->y_root);  
   
   printf("overlay button release (in = %d)\n", in);  
   
   if(!in) {  
     printf("destroying popup\n");  
     gtk_widget_destroy(gtk_widget_get_toplevel(widget));  
185    }    }
186      printf("map_draw_gpx out\n");
   return !in;  
 }  
   
 static void  
 shutdown_loop(popup_context_t *context) {  
   if(g_main_loop_is_running(context->loop))  
     g_main_loop_quit(context->loop);  
 }  
   
 static gint  
 run_delete_handler(GtkWindow *window, GdkEventAny *event,  
                    popup_context_t *context) {  
   shutdown_loop(context);  
   return TRUE; /* Do not destroy */  
 }  
   
 static void  
 run_destroy_handler(GtkWindow *window, popup_context_t *context) {  
   /* shutdown_loop will be called by run_unmap_handler */  
   printf("popup destroyed\n");  
187  }  }
188    
189  static void  /* draw geocaches and set window title */
190  run_unmap_handler(GtkWindow *window, popup_context_t *context) {  static void map_setup(map_context_t *context) {
191    shutdown_loop(context);    char *name = NULL;
 }  
   
 static void popup_window_shape(GtkWidget *window, int tip_x, int tip_y) {  
   GdkBitmap *mask = gdk_pixmap_new(NULL, POPUP_WIDTH, POPUP_HEIGHT, 1);  
   
   GdkGC *gc = gdk_gc_new(mask);  
   GdkColormap *colormap;  
   GdkColor black;  
   GdkColor white;  
   
   /* get black/white color values */  
   colormap = gdk_colormap_get_system();  
   gdk_color_black(colormap, &black);  
   gdk_color_white(colormap, &white);  
   
   /* erase */  
   gdk_gc_set_foreground(gc, &black);  
   gdk_gc_set_background(gc, &white);  
   
   /* erase background */  
   gdk_draw_rectangle(mask, gc, TRUE, 0, 0, POPUP_WIDTH, POPUP_HEIGHT);  
   
   gdk_gc_set_foreground(gc, &white);  
   gdk_gc_set_background(gc, &black);  
   
   /* the tip is always above or below the "bubble" but never at its side */  
   guint tip_offset = (tip_y == 0)?ARROW_BORDER:0;  
   
   gdk_draw_rectangle(mask, gc, TRUE,  
                      0, tip_offset + CORNER_RADIUS,  
                      POPUP_WIDTH,  
                      POPUP_HEIGHT - 2*CORNER_RADIUS - ARROW_BORDER);  
   
   gdk_draw_rectangle(mask, gc, TRUE,  
                      CORNER_RADIUS, tip_offset,  
                      POPUP_WIDTH  - 2*CORNER_RADIUS,  
                      POPUP_HEIGHT - ARROW_BORDER);  
   
   int off[][2] = {  
           { CORNER_RADIUS,               tip_offset + CORNER_RADIUS },  
           { POPUP_WIDTH - CORNER_RADIUS, tip_offset + CORNER_RADIUS },  
           { POPUP_WIDTH - CORNER_RADIUS,  
             POPUP_HEIGHT - CORNER_RADIUS - ARROW_BORDER + tip_offset},  
           { CORNER_RADIUS,  
             POPUP_HEIGHT - CORNER_RADIUS  - ARROW_BORDER + tip_offset}};  
   
   int i;  
   for(i=0;i<4;i++) {  
     gdk_draw_arc(mask, gc, TRUE,  
                  off[i][0]-CORNER_RADIUS, off[i][1]-CORNER_RADIUS,  
                  2*CORNER_RADIUS,         2*CORNER_RADIUS,  
                  0, 360*64);  
   }  
   
   GdkPoint points[3] = { {POPUP_WIDTH*1/3, POPUP_HEIGHT/2},  
                          {POPUP_WIDTH*2/3, POPUP_HEIGHT/2},  
                          {tip_x,tip_y} };  
   gdk_draw_polygon(mask, gc, TRUE, points, 3);  
   
192    
193    gdk_window_shape_combine_mask(window->window, mask, 0, 0);    printf("map_setup in\n");
 }  
194    
195  /* create a left aligned label (normal ones are centered) */    if(!context->appdata->cur_gpx && !context->appdata->cur_cache) {
196  static GtkWidget *gtk_label_left_new(char *str) {      if(context->state != MAP_ALL) {
197    GtkWidget *label = gtk_label_new(str);        printf("map_setup(ALL)\n");
198    gtk_misc_set_alignment(GTK_MISC(label), 0.f, .5f);  
199    return label;  #ifdef OSD_NAV
200  }        /* no navigation in this mode */
201          osm_gps_map_osd_clear_nav (OSM_GPS_MAP(context->widget));
202    #endif
203    
204          /* clear all existing ccahe images */
205          osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
206    
207          /* draw all geocaches */
208          gpx_t *gpx = context->appdata->gpx;
209          while(gpx) {
210            map_draw_gpx(context->appdata, context->widget, gpx);
211            gpx = gpx->next;
212          }
213          name = g_strdup(_("all"));
214          context->state = MAP_ALL;
215        }
216      } else if(!context->appdata->cur_cache) {
217        if(context->state != MAP_GPX) {
218          printf("map_setup(GPX)\n");
219    
220    #ifdef OSD_NAV
221          /* no navigation in this mode */
222          osm_gps_map_osd_clear_nav (OSM_GPS_MAP(context->widget));
223    #endif
224    
225          /* clear all existing ccahe images */
226          osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
227    
228          map_draw_gpx(context->appdata, context->widget,
229                       context->appdata->cur_gpx);
230          name = g_strdup(context->appdata->cur_gpx->name);
231          context->state = MAP_GPX;
232        }
233      } else {
234        cache_t *cache = context->appdata->cur_cache;
235    
236        printf("map_setp(CACHE)\n");
237    
238        /* no balloons in this mode */
239        context->balloon = NULL;
240        osm_gps_map_osd_clear_balloon (OSM_GPS_MAP(context->widget));
241    
242        /* clear all existing ccahe images */
243        osm_gps_map_clear_images (OSM_GPS_MAP(context->widget));
244    
245        map_draw_cache(context->widget, cache);
246        name = g_strdup(cache->name);
247        context->state = MAP_CACHE;
248    
249        /* navigation in this mode! */
250        pos_t cpos = gpx_cache_pos(cache);
251    
252  /* the small labels are actually only on maemo small */  #ifdef OSD_NAV
253  #ifdef USE_MAEMO      osm_gps_map_osd_draw_nav (OSM_GPS_MAP(context->widget),
254  #define MARKUP_SMALL "<span size='small'>%s</span>"                                context->appdata->imperial,
255  GtkWidget *gtk_label_small_left_new(char *str) {                                cpos.lat, cpos.lon, cache->name);
   GtkWidget *label = gtk_label_new("");  
   char *markup = g_markup_printf_escaped(MARKUP_SMALL, str);  
   gtk_label_set_markup(GTK_LABEL(label), markup);  
   g_free(markup);  
   gtk_misc_set_alignment(GTK_MISC(label), 0.f, .5f);  
   return label;  
 }  
 #define gtk_label_big_left_new(a) gtk_label_left_new(a)  
256  #else  #else
257  #define gtk_label_small_left_new(a) gtk_label_left_new(a)  #warning OSD_NAV not defined!
 #define MARKUP_BIG "<span size='x-large'>%s</span>"  
 GtkWidget *gtk_label_big_left_new(char *str) {  
   GtkWidget *label = gtk_label_new("");  
   char *markup = g_markup_printf_escaped(MARKUP_BIG, str);  
   gtk_label_set_markup(GTK_LABEL(label), markup);  
   g_free(markup);  
   gtk_misc_set_alignment(GTK_MISC(label), 0.f, .5f);  
   return label;  
 }  
 #endif  
   
 static gboolean  
 on_cache_button_clicked(GtkButton *button, popup_context_t *context) {  
   printf("clicked %s\n", context->cache->name);  
   return FALSE;  
 }  
   
 void cache_popup(map_context_t *mcontext, cache_t *cache) {  
   popup_context_t pcontext;  
   pcontext.appdata = mcontext->appdata;  
   pcontext.cache = cache;  
   
   pcontext.window = gtk_window_new(GTK_WINDOW_POPUP);  
   gtk_widget_realize(pcontext.window);  
   gtk_window_set_default_size(GTK_WINDOW(pcontext.window),  
                               POPUP_WIDTH, POPUP_HEIGHT);  
   gtk_window_resize(GTK_WINDOW(pcontext.window), POPUP_WIDTH, POPUP_HEIGHT);  
   //  gtk_window_set_resizable(GTK_WINDOW(pcontext.window), FALSE);  
   gtk_window_set_transient_for(GTK_WINDOW(pcontext.window),  
                                GTK_WINDOW(mcontext->appdata->window));  
   gtk_window_set_keep_above(GTK_WINDOW(pcontext.window), TRUE);  
   gtk_window_set_destroy_with_parent(GTK_WINDOW(pcontext.window), TRUE);  
   gtk_window_set_gravity(GTK_WINDOW(pcontext.window), GDK_GRAVITY_STATIC);  
   gtk_window_set_modal(GTK_WINDOW(pcontext.window), TRUE);  
   
   /* connect events */  
   g_signal_connect(G_OBJECT(pcontext.window), "button-press-event",  
                    G_CALLBACK(on_button_press_event), &pcontext);  
   g_signal_connect(G_OBJECT(pcontext.window), "button-release-event",  
                    G_CALLBACK(on_button_release_event), &pcontext);  
   g_signal_connect(G_OBJECT(pcontext.window), "delete-event",  
                    G_CALLBACK(run_delete_handler), &pcontext);  
   g_signal_connect(G_OBJECT(pcontext.window), "destroy",  
                    G_CALLBACK(run_destroy_handler), &pcontext);  
   g_signal_connect(G_OBJECT(pcontext.window), "unmap",  
                    G_CALLBACK(run_unmap_handler), &pcontext);  
   
   gdk_pointer_grab(pcontext.window->window, TRUE,  
      GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_BUTTON_MOTION_MASK,  
                    NULL, NULL, GDK_CURRENT_TIME);  
   gtk_grab_add(pcontext.window);  
   
   /* check whether cache is in upper or lower half of window */  
   gint x, y, sx, sy;  
   osm_gps_map_geographic_to_screen(OSM_GPS_MAP(mcontext->widget),  
                                    cache->pos.lat, cache->pos.lon,  
                                    &sx, &sy);  
   
   gdk_window_get_origin(mcontext->widget->window, &x, &y);  
   
   gint ax = 0, ay = 0;  
   if(sx > mcontext->widget->allocation.width/2)  
     ax = POPUP_WIDTH;  
   
   if(sy > mcontext->widget->allocation.height/2)  
     ay = POPUP_HEIGHT;  
   
 #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)  
   GdkColor color;  
   gdk_color_parse("darkgray", &color);  
   gtk_widget_modify_bg(GTK_WIDGET(pcontext.window), GTK_STATE_NORMAL, &color);  
 #endif  
   
   gtk_window_move(GTK_WINDOW(pcontext.window),  
                   x + mcontext->widget->allocation.x + sx - ax,  
                   y + mcontext->widget->allocation.y + sy - ay);  
   
   
   GtkWidget *alignment = gtk_alignment_new(0.5, 0.5, 1.0, 1.0);  
   gtk_alignment_set_padding(GTK_ALIGNMENT(alignment),  
                             CORNER_RADIUS/2 + (ay?0:ARROW_BORDER),  
                             CORNER_RADIUS/2 + (ay?ARROW_BORDER:0),  
                             CORNER_RADIUS, CORNER_RADIUS);  
   
   /* --- actual content ---- */  
   GtkWidget *vbox = gtk_vbox_new(FALSE, 0);  
   GtkWidget *hbox = gtk_hbox_new(FALSE, 0);  
   
   gtk_box_pack_start(GTK_BOX(hbox),  
                      icon_get_widget(ICON_CACHE_TYPE, cache->type),  
                      FALSE, FALSE, 5);  
   
   if(cache->id)  
     gtk_box_pack_start_defaults(GTK_BOX(hbox),  
                                 gtk_label_big_left_new(cache->id));  
   
 #if 0  
   GtkWidget *button = gtk_button_new();  
   gtk_button_set_image(GTK_BUTTON(button), icon_get_widget(ICON_MISC, 12));  
   g_signal_connect(button, "clicked",  
                    G_CALLBACK(on_cache_button_clicked), &pcontext);  
   gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);  
258  #endif  #endif
   
   gtk_box_pack_start_defaults(GTK_BOX(vbox), hbox);  
   
   if(cache->name) {  
     GtkWidget *label = gtk_label_small_left_new(cache->name);  
     gtk_label_set_ellipsize(GTK_LABEL(label), PANGO_ELLIPSIZE_END);  
     gtk_box_pack_start_defaults(GTK_BOX(vbox), label);  
259    }    }
260    
261    hbox = gtk_hbox_new(FALSE, 0);    if(name) {
262    if(cache->terrain) {      char *title = g_strdup_printf(_("Map - %s"), name);
263      GtkWidget *ihbox = gtk_hbox_new(FALSE, 0);      g_free(name);
     gtk_box_pack_start(GTK_BOX(ihbox),  
        gtk_label_small_left_new(_("Terrain:")), FALSE, FALSE, 0);  
     gtk_box_pack_start(GTK_BOX(ihbox),  
        icon_get_widget(ICON_STARS, (int)(cache->terrain*2-2)),  
        FALSE, FALSE, 5);  
     gtk_box_pack_start_defaults(GTK_BOX(hbox), ihbox);  
   }  
   
   if(cache->difficulty) {  
     GtkWidget *ihbox = gtk_hbox_new(FALSE, 0);  
     gtk_box_pack_start(GTK_BOX(ihbox),  
        gtk_label_small_left_new(_("Difficulty:")), FALSE, FALSE, 0);  
     gtk_box_pack_start(GTK_BOX(ihbox),  
        icon_get_widget(ICON_STARS, (int)(cache->difficulty*2-2)),  
        FALSE, FALSE, 5);  
     gtk_box_pack_start_defaults(GTK_BOX(hbox), ihbox);  
   }  
   
   gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);  
   
   gtk_container_add(GTK_CONTAINER(alignment), vbox);  
   /* ----------------------- */  
264    
265        gtk_window_set_title(GTK_WINDOW(context->window), title);
266    
267        g_free(title);
268      } else
269        printf("map_setup(keep)\n");
270    
271    gtk_container_add(GTK_CONTAINER(pcontext.window), alignment);    printf("map_setup out\n");
272    }
   /* give window its shape */  
   popup_window_shape(pcontext.window, ax, ay);  
   
   gtk_widget_show_all(pcontext.window);  
273    
274    /* handle this popup until it's gone */  static gboolean on_map_configure(GtkWidget *widget,
275                                     GdkEventConfigure *event,
276    pcontext.loop = g_main_loop_new(NULL, FALSE);                                   map_context_t *context) {
277    
278    GDK_THREADS_LEAVE();    /* for some reason there's a configure event with 1/1 */
279    g_main_loop_run(pcontext.loop);    /* on diablo. We just ignore this! */
   GDK_THREADS_ENTER();  
280    
281    g_main_loop_unref(pcontext.loop);    printf("on_map_configure %d %d\n",
282             widget->allocation.width,
283             widget->allocation.height);
284    
285      if(!context->map_complete &&
286         (widget->allocation.width > 100) &&
287         (widget->allocation.height > 100)) {
288    
289        /* setup cache state */
290        map_setup(context);
291    
292        /* set default values if they are invalid */
293        if(!context->appdata->map.zoom ||
294           isnan(context->appdata->map.pos.lat) ||
295           isnan(context->appdata->map.pos.lon)) {
296          printf("no valid map position found\n");
297    
298          pos_t *refpos = get_pos(context->appdata);
299          if(refpos && !isnan(refpos->lat) && !isnan(refpos->lon)) {
300            printf("use refpos\n");
301    
302            /* use gps position if present */
303            context->appdata->map.pos = *refpos;
304            context->appdata->map.zoom = GPS_DEFAULT_ZOOM;
305          } else {
306            printf("use zero pos\n");
307    
308            /* use world map otherwise */
309            context->appdata->map.pos.lat = 0.0;
310            context->appdata->map.pos.lon = 0.0;
311            context->appdata->map.zoom = 1;
312          }
313        }
314    
315        /* jump to initial position */
316        printf("osm_gps_map_set_mapcenter(%f,%f,%d)\n",
317               context->appdata->map.pos.lat,
318               context->appdata->map.pos.lon,
319               context->appdata->map.zoom);
320    
321        osm_gps_map_set_mapcenter(OSM_GPS_MAP(context->widget),
322                                  context->appdata->map.pos.lat,
323                                  context->appdata->map.pos.lon,
324                                  context->appdata->map.zoom);
325        context->map_complete = TRUE;
326      }
327    
328    printf("cache popup removed\n");    printf("map configure done\n");
329      return FALSE;
330  }  }
331    
332  static void  static void
333  map_cachelist_nearest(cache_t *cache, pos_t *pos,  map_cachelist_nearest(cache_t *cache, pos_t *pos,
334                        cache_t **result, float *distance) {                        cache_t **result, float *distance) {
335      printf("map_cachelist_nearest in\n");
336    while(cache) {    while(cache) {
337        pos_t cpos = gpx_cache_pos(cache);
338    
339      float dist =      float dist =
340        pow(cache->pos.lat - pos->lat, 2) +        pow(cpos.lat - pos->lat, 2) +
341        pow(cache->pos.lon - pos->lon, 2);        pow(cpos.lon - pos->lon, 2);
342    
343      if(!(dist > *distance)) {      if(!(dist > *distance)) {
344        *result = cache;        *result = cache;
# Line 548  map_cachelist_nearest(cache_t *cache, po Line 347  map_cachelist_nearest(cache_t *cache, po
347    
348      cache = cache->next;      cache = cache->next;
349    }    }
350      printf("map_cachelist_nearest out\n");
351  }  }
352    
353  static cache_t *map_closest(map_context_t *context, pos_t *pos) {  static cache_t *map_closest(map_context_t *context, pos_t *pos) {
354    cache_t *result = NULL;    cache_t *result = NULL;
355    float distance = NAN;    float distance = NAN;
356    
357  #ifdef USE_MAEMO    printf("map_closest in\n");
358    if(!context->appdata->cur_gpx) {  
359  #endif    if(!context->appdata->cur_gpx && !context->appdata->cur_cache) {
360      /* search all geocaches */      /* search all geocaches */
361      gpx_t *gpx = context->appdata->gpx;      gpx_t *gpx = context->appdata->gpx;
362      while(gpx) {      while(gpx) {
363        map_cachelist_nearest(gpx->cache, pos, &result, &distance);        map_cachelist_nearest(gpx->cache, pos, &result, &distance);
364        gpx = gpx->next;        gpx = gpx->next;
365      }      }
366  #ifdef USE_MAEMO    } else if(context->appdata->cur_gpx) {
   } else {  
367      map_cachelist_nearest(context->appdata->cur_gpx->cache,      map_cachelist_nearest(context->appdata->cur_gpx->cache,
368                            pos, &result, &distance);                            pos, &result, &distance);
369    }    } else
370  #endif      result = context->appdata->cur_gpx->cache;
371    
372      printf("map_closest out\n");
373    return result;    return result;
374  }  }
375    
376  /* translate between osm-gps-map positions and gpxview ones */  /* translate between osm-gps-map positions and gpxview ones */
377  pos_t coord2pos(coord_t coo) {  pos_t coord2pos(coord_t coo) {
378    pos_t pos;    pos_t pos;
379    pos.lat = RAD2DEG(coo.rlat);    pos.lat = rad2deg(coo.rlat);
380    pos.lon = RAD2DEG(coo.rlon);    pos.lon = rad2deg(coo.rlon);
381    return pos;    return pos;
382  }  }
383    
# Line 586  pos_t coord2pos(coord_t coo) { Line 386  pos_t coord2pos(coord_t coo) {
386  static gboolean  static gboolean
387  on_map_button_press_event(GtkWidget *widget,  on_map_button_press_event(GtkWidget *widget,
388                              GdkEventButton *event, map_context_t *context) {                              GdkEventButton *event, map_context_t *context) {
389      printf("on_map_button_press_event in\n");
390    
391    OsmGpsMap *map = OSM_GPS_MAP(context->widget);    OsmGpsMap *map = OSM_GPS_MAP(context->widget);
392    
393      /* check if we actually clicked parts of the OSD */
394      if(osm_gps_map_osd_check(map, event->x, event->y) != OSD_NONE) {
395        printf("on_map_button_press_event out 1\n");
396        return FALSE;
397      }
398    
399    /* got a press event without release event? eat it! */    /* got a press event without release event? eat it! */
400    if(context->press_on != NULL) {    if(context->press_on != NULL) {
401      printf("PRESS: already\n");      printf("PRESS: already\n");
402      return TRUE;      return FALSE;
403    }    }
404    
405    pos_t pos =    pos_t pos =
# Line 599  on_map_button_press_event(GtkWidget *wid Line 407  on_map_button_press_event(GtkWidget *wid
407    
408    cache_t *nearest = map_closest(context, &pos);    cache_t *nearest = map_closest(context, &pos);
409    if(nearest) {    if(nearest) {
410      float dist = gpx_pos_get_distance(pos, nearest->pos, FALSE);      pos_t cpos = gpx_cache_pos(nearest);
411      if(dist2pixel(context, dist, nearest->pos.lat) < CLICK_FUZZ)  
412        float dist = gpx_pos_get_distance(pos, cpos, FALSE);
413        if(dist2pixel(context, dist, cpos.lat) < CLICK_FUZZ)
414        context->press_on = nearest;        context->press_on = nearest;
415    }    }
416    
417      printf("on_map_button_press_event out\n");
418    return FALSE;    return FALSE;
419  }  }
420    
421    static void
422    cairo_draw_pixbuf(cairo_t *cr, GdkPixbuf *buf, gint x, gint y) {
423      /* convert the pixbuf into something cairo can handle */
424    
425      printf("cairo_draw_pixbuf in\n");
426    
427      // Create a new ImageSurface
428      cairo_surface_t *image_surface =
429        cairo_image_surface_create(CAIRO_FORMAT_ARGB32,
430                                   gdk_pixbuf_get_width(buf),
431                                   gdk_pixbuf_get_height(buf));
432    
433      // Create the new Context for the ImageSurface
434      cairo_t *context = cairo_create(image_surface);
435    
436      // Draw the image on the new Context
437      gdk_cairo_set_source_pixbuf(context, buf, 0.0, 0.0);
438      cairo_paint(context);
439    
440      // now draw this onto the original context
441      cairo_set_source_surface(cr, image_surface, x, y);
442    
443      cairo_paint(cr);
444      printf("cairo_draw_pixbuf out\n");
445    }
446    
447    #ifndef BIG_BALLOONS
448    #define LINE_SKIP  7
449    #else
450    #define LINE_SKIP  12
451    #endif
452    
453    static void
454    balloon_cb(osm_gps_map_balloon_event_t *event, gpointer data) {
455      printf("balloon event:\n");
456    
457      map_context_t *context = (map_context_t*)data;
458      cache_t *cache = context->balloon;
459    
460      if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_DRAW) {
461        printf("draw\n");
462    
463    #if 0
464        /* draw pink background to check clipping */
465        cairo_rectangle (event->data.draw.cr,
466                         event->data.draw.rect->x-20, event->data.draw.rect->y-20,
467                         event->data.draw.rect->w+40, event->data.draw.rect->h+40);
468        cairo_set_source_rgba (event->data.draw.cr, 1, 0, 0, 0.3);
469        cairo_fill_preserve (event->data.draw.cr);
470        cairo_set_line_width (event->data.draw.cr, 0);
471        cairo_stroke (event->data.draw.cr);
472    #endif
473    
474        /* leave a little border top and left */
475        gint x = event->data.draw.rect->x, y = event->data.draw.rect->y;
476    
477        /* draw the cache type icon ... */
478        GdkPixbuf *icon = icon_get(ICON_CACHE_TYPE, cache->type);
479        cairo_draw_pixbuf(event->data.draw.cr, icon, x, y);
480    
481        if(cache->notes && cache->notes->override) {
482          GdkPixbuf *over = icon_get(ICON_MISC, 1);
483          cairo_draw_pixbuf(event->data.draw.cr, over, x, y);
484        }
485    
486        /* ... and right of it the waypoint id */
487        cairo_text_extents_t extents;
488    
489        if(cache->id) {
490          cairo_select_font_face (event->data.draw.cr, "Sans",
491                                  CAIRO_FONT_SLANT_NORMAL,
492                                  CAIRO_FONT_WEIGHT_BOLD);
493    
494    #ifndef BIG_BALLOONS
495          cairo_set_font_size (event->data.draw.cr, 20.0);
496    #else
497          cairo_set_font_size (event->data.draw.cr, 36.0);
498    #endif
499    
500          cairo_text_extents (event->data.draw.cr, cache->id, &extents);
501    
502          /* display id right of icon vertically centered */
503          x += gdk_pixbuf_get_width(icon) + 5;
504          y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
505          cairo_move_to (event->data.draw.cr, x, y);
506          cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
507          cairo_show_text (event->data.draw.cr, cache->id);
508          cairo_stroke (event->data.draw.cr);
509    
510          y += (gdk_pixbuf_get_height(icon) - extents.height)/2 + LINE_SKIP;
511        } else
512          y += gdk_pixbuf_get_height(icon);
513    
514        /* return to the left border and below icon/text */
515        x = event->data.draw.rect->x;
516    
517        /* everything from here uses the same font */
518        cairo_select_font_face (event->data.draw.cr, "Sans", CAIRO_FONT_SLANT_NORMAL,
519                                CAIRO_FONT_WEIGHT_NORMAL);
520    #ifndef BIG_BALLOONS
521        cairo_set_font_size (event->data.draw.cr, 14.0);
522    #else
523        cairo_set_font_size (event->data.draw.cr, 22.0);
524    #endif
525    
526        if(cache->name) {
527          /* draw cache name */
528          cairo_text_extents (event->data.draw.cr, cache->name, &extents);
529          y += extents.height;
530          cairo_move_to (event->data.draw.cr, x, y);
531          cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
532          cairo_show_text (event->data.draw.cr, cache->name);
533          cairo_stroke (event->data.draw.cr);
534    
535          /* return to the left border and below text */
536          y += LINE_SKIP;
537          x = event->data.draw.rect->x;
538        }
539    
540        if(cache->terrain) {
541          /* draw cache rating */
542          const char *terrain = "Terrain:";
543          icon = icon_get(ICON_STARS, (int)(cache->terrain*2-2));
544          cairo_text_extents (event->data.draw.cr, _(terrain), &extents);
545          y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
546    
547          /* draw "Terrain:" string */
548          cairo_move_to (event->data.draw.cr, x, y);
549          cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
550          cairo_show_text (event->data.draw.cr, _(terrain));
551          cairo_stroke (event->data.draw.cr);
552          x += extents.width + 2;
553    
554          /* draw terrain stars */
555          cairo_draw_pixbuf(event->data.draw.cr, icon, x, y -
556                            (gdk_pixbuf_get_height(icon) + extents.height)/2);
557    
558          x += gdk_pixbuf_get_width(icon) + LINE_SKIP;
559        y -= (gdk_pixbuf_get_height(icon) + extents.height)/2;
560        }
561    
562        if(cache->difficulty) {
563          const char *difficulty = "Difficulty:";
564          cairo_text_extents (event->data.draw.cr, _(difficulty), &extents);
565          y += (gdk_pixbuf_get_height(icon) + extents.height)/2;
566    
567          /* draw "Difficulty:" string */
568          cairo_move_to (event->data.draw.cr, x, y);
569          cairo_set_source_rgba (event->data.draw.cr, 0, 0, 0, 1);
570          cairo_show_text (event->data.draw.cr, _(difficulty));
571          cairo_stroke (event->data.draw.cr);
572          x += extents.width + 2;
573    
574          icon = icon_get(ICON_STARS, (int)(cache->difficulty*2-2));
575          cairo_draw_pixbuf(event->data.draw.cr, icon, x, y -
576                          (gdk_pixbuf_get_height(icon) + extents.height)/2);
577        }
578      } else if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_CLICK) {
579        printf("click %s event at %d %d\n",
580               event->data.click.down?"down":"up",
581               event->data.click.x, event->data.click.y);
582    
583        /* make the main screen jump to that cache */
584        if(!event->data.click.down) {
585          if(context->appdata->cur_cache) {
586            printf("ERROR: no current cache should be visible!\n");
587          } else {
588            gpx_t *is_in = NULL;
589    
590            if(!context->appdata->cur_gpx) {
591              printf("click while in \"all\" view\n");
592    
593              /* we first need to figure out which gpx file this cache */
594              /* is in so we can open it first */
595              gpx_t *gpx = context->appdata->gpx;
596              while(gpx && !is_in) {
597                cache_t *cur = gpx->cache;
598                while(cur && !is_in) {
599                  if(cur == cache)
600                    is_in = gpx;
601                  cur = cur->next;
602                }
603                gpx = gpx->next;
604              }
605    
606              if(is_in)
607                gpxlist_goto_cachelist(context->appdata, is_in);
608    
609            } else
610              /* the simple case: there already is an open gpx file and */
611              /* we just jump into the "cache" view */
612              is_in = context->appdata->cur_gpx;
613    
614            if(is_in) {
615              printf("selecting %s in %s\n",
616                     cache->id,
617                     context->appdata->cur_gpx->name);
618    
619              cachelist_goto_cache(context->appdata, cache);
620    
621              /* give focus to main screen (important for maemo) */
622              printf("raising main window\n");
623              gtk_window_present(GTK_WINDOW(context->appdata->window));
624            }
625          }
626        }
627      } else if(event->type == OSM_GPS_MAP_BALLOON_EVENT_TYPE_REMOVED) {
628        printf("removed\n");
629        context->balloon = NULL;
630      }
631      printf("balloon out\n");
632    }
633    
634  static gboolean  static gboolean
635  on_map_button_release_event(GtkWidget *widget,  on_map_button_release_event(GtkWidget *widget,
636                              GdkEventButton *event, map_context_t *context) {                              GdkEventButton *event, map_context_t *context) {
637    OsmGpsMap *map = OSM_GPS_MAP(context->widget);    OsmGpsMap *map = OSM_GPS_MAP(context->widget);
638    
639    if(context->press_on) {    printf("on_map_button_release_event in\n");
640    
641      /* in "MAP_CACHE" state only one cache is visible */
642      /* and the map is in navigation mode. the balloon is */
643      /* pretty useless there */
644      if(context->press_on && (context->state != MAP_CACHE)) {
645    
646        coord_t coo;
647        coo = osm_gps_map_get_co_ordinates(map, event->x, event->y);
648    
649      pos_t pos =      pos_t pos =
650        coord2pos(osm_gps_map_get_co_ordinates(map, event->x, event->y));        coord2pos(osm_gps_map_get_co_ordinates(map, event->x, event->y));
651    
652      cache_t *nearest = map_closest(context, &pos);      cache_t *nearest = map_closest(context, &pos);
653      if(nearest && nearest == context->press_on) {      if(nearest && nearest == context->press_on) {
654        float dist = gpx_pos_get_distance(pos, nearest->pos, FALSE);        pos_t cpos = gpx_cache_pos(nearest);
655        if(dist2pixel(context, dist, nearest->pos.lat) < CLICK_FUZZ)  
656          cache_popup(context, nearest);        float dist = gpx_pos_get_distance(pos, cpos, FALSE);
657          if(dist2pixel(context, dist, cpos.lat) < CLICK_FUZZ) {
658    
659            context->balloon = nearest;
660            osm_gps_map_osd_draw_balloon(map, cpos.lat, cpos.lon,
661                                         balloon_cb, context);
662          }
663      }      }
664      context->press_on = NULL;      context->press_on = NULL;
665    } else {    } else {
# Line 631  on_map_button_release_event(GtkWidget *w Line 670  on_map_button_release_event(GtkWidget *w
670      context->appdata->map.pos.lon = lon;      context->appdata->map.pos.lon = lon;
671    }    }
672    
673      printf("on_map_button_release_event out\n");
674    return FALSE;    return FALSE;
675  }  }
676    
# Line 650  static void on_window_destroy(GtkWidget Line 690  static void on_window_destroy(GtkWidget
690    context->appdata->map.pos.lat = lat;    context->appdata->map.pos.lat = lat;
691    context->appdata->map.pos.lon = lon;    context->appdata->map.pos.lon = lon;
692    
693      gint source;
694      g_object_get(map, "map-source", &source, NULL);
695      context->appdata->map.source = source;
696    
697  #if MAEMO_VERSION_MAJOR == 5  #if MAEMO_VERSION_MAJOR == 5
698    /* restore cur_view */    /* restore cur_view */
699    context->appdata->cur_view = context->old_view;    context->appdata->cur_view = context->old_view;
# Line 661  static void on_window_destroy(GtkWidget Line 705  static void on_window_destroy(GtkWidget
705    appdata->map.context = NULL;    appdata->map.context = NULL;
706  }  }
707    
708    #if (MAEMO_VERSION_MAJOR == 5) && !defined(__i386__)
709    /* get access to zoom buttons */
710    static void
711    on_window_realize(GtkWidget *widget, gpointer data) {
712      if (widget->window) {
713        unsigned char value = 1;
714        Atom hildon_zoom_key_atom =
715          gdk_x11_get_xatom_by_name("_HILDON_ZOOM_KEY_ATOM"),
716          integer_atom = gdk_x11_get_xatom_by_name("INTEGER");
717        Display *dpy =
718          GDK_DISPLAY_XDISPLAY(gdk_drawable_get_display(widget->window));
719        Window w = GDK_WINDOW_XID(widget->window);
720    
721        XChangeProperty(dpy, w, hildon_zoom_key_atom,
722                        integer_atom, 8, PropModeReplace, &value, 1);
723      }
724    }
725    #endif
726    
727    /* on maemo a window is either on top or completely invisible. this */
728    /* means that we only need to update the map window if its raised.  */
729    /* on ordinary desktops this is different and we always update */
730    
731    static gboolean on_focus_in(GtkWidget *widget, GdkEventFocus *event,
732                             gpointer data) {
733      printf("map got focus\n");
734      map_setup((map_context_t*)data);
735      return FALSE;
736    }
737    
738    void map_update(appdata_t *appdata) {
739      printf("map_update\n");
740    #ifndef USE_MAEMO
741      if(appdata->map.context)
742        map_setup(appdata->map.context);
743    #endif
744    }
745    
746  void map(appdata_t *appdata) {  void map(appdata_t *appdata) {
747    map_context_t *context = NULL;    map_context_t *context = NULL;
748    
749      printf("map 1\n");
750    
751    /* if the map window already exists, just raise it */    /* if the map window already exists, just raise it */
752    if(appdata->map.context) {    if(appdata->map.context) {
753        printf("using existing map!\n");
754      gtk_window_present(GTK_WINDOW(appdata->map.context->window));      gtk_window_present(GTK_WINDOW(appdata->map.context->window));
755        map_setup(appdata->map.context);
756      return;      return;
757    }    }
758    
759      printf("map 2\n");
760    
761    context = appdata->map.context = g_new0(map_context_t, 1);    context = appdata->map.context = g_new0(map_context_t, 1);
762    context->appdata = appdata;    context->appdata = appdata;
763      context->map_complete = FALSE;
764      context->state = MAP_NONE;
765    
766    GtkWidget *hbox = gtk_hbox_new(FALSE, 0);    /* cleanup old (pre 0.8.7) path if it exists */
767      char *old_path = g_strdup_printf("%s/map/", appdata->image_path);
768      if(g_file_test(old_path, G_FILE_TEST_IS_DIR)) {
769        printf("old file path %s exists\n", old_path);
770        rmdir_recursive(old_path);
771      }
772    
773      printf("map 3\n");
774    
775      /* It is recommanded that all applications share these same */
776      /* map path, so data is only cached once. The path should be: */
777      /* ~/.osm-gps-map on standard PC     (users home) */
778      /* /home/user/.osm-gps-map on Maemo5 (ext3 on internal card) */
779      /* /media/mmc2/osm-gps-map on Maemo4 (vfat on internal card) */
780    #if !defined(USE_MAEMO)
781      char *p = getenv("HOME");
782      if(!p) p = "/tmp";
783      char *path = g_strdup_printf("%s/.osm-gps-map", p);
784    #else
785    #if MAEMO_VERSION_MAJOR == 5
786      char *path = g_strdup("/home/user/.osm-gps-map");
787    #else
788      char *path = g_strdup("/media/mmc2/osm-gps-map");
789    #endif
790    #endif
791    
   char *path = g_strdup_printf("%s/map/", appdata->image_path);  
792    const char *proxy = get_proxy_uri(appdata);    const char *proxy = get_proxy_uri(appdata);
793    
794      gint source = context->appdata->map.source;
795      if(!source) source = MAP_SOURCE;
796    
797      printf("map 4\n");
798    
799    context->widget = g_object_new(OSM_TYPE_GPS_MAP,    context->widget = g_object_new(OSM_TYPE_GPS_MAP,
800                   "map-source",               MAP_SOURCE,                   "map-source",               source,
801                   "tile-cache",               path,                   "tile-cache",               path,
802                   "auto-center",              FALSE,                   "auto-center",              FALSE,
803                   "record-trip-history",      FALSE,                   "record-trip-history",      FALSE,
# Line 689  void map(appdata_t *appdata) { Line 807  void map(appdata_t *appdata) {
807    
808    g_free(path);    g_free(path);
809    
810    char *name = NULL;    osm_gps_map_osd_classic_init(OSM_GPS_MAP(context->widget));
 #ifdef USE_MAEMO  
   if(!appdata->cur_gpx) {  
 #endif  
     /* draw all geocaches */  
     gpx_t *gpx = appdata->gpx;  
     while(gpx) {  
       map_draw_cachelist(context->widget, gpx->cache);  
       gpx = gpx->next;  
     }  
     name = g_strdup(_("all geocaches"));  
 #ifdef USE_MAEMO  
   } else {  
     map_draw_cachelist(context->widget, appdata->cur_gpx->cache);  
     name = g_strdup(appdata->cur_gpx->name);  
   }  
 #endif  
811    
812    char *title = g_strdup_printf(_("Map - %s"), name);    printf("map 5\n");
   g_free(name);  
813    
814  #ifdef USE_MAEMO  #ifdef USE_MAEMO
815  #ifdef USE_STACKABLE_WINDOW    /* we don't use a stackable window here on fremantle, since */
816    context->window = hildon_stackable_window_new();    /* this leaves the main window independent from the map and */
817  #else    /* the user can e.g. still navigate the main menu */
818    context->window = hildon_window_new();    context->window = hildon_window_new();
819  #endif  
820    #if (MAEMO_VERSION_MAJOR == 5) && !defined(__i386__)
821      g_signal_connect(G_OBJECT(context->window), "realize",
822                       G_CALLBACK(on_window_realize), NULL);
823    #endif // MAEMO_VERSION
824  #else  #else
825    context->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);    context->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
826  #endif  #endif
827    
828    gtk_window_set_title(GTK_WINDOW(context->window), title);    printf("map 6\n");
829    
830  #ifndef USE_MAEMO  #ifndef USE_MAEMO
831    gtk_window_set_default_size(GTK_WINDOW(context->window), 640, 480);    gtk_window_set_default_size(GTK_WINDOW(context->window), 640, 480);
832  #endif  #endif
833    
834    g_free(title);    g_signal_connect(G_OBJECT(context->widget), "focus-in-event",
835                       G_CALLBACK(on_focus_in), context);
836    
837    g_signal_connect(G_OBJECT(context->widget), "configure-event",    g_signal_connect(G_OBJECT(context->widget), "configure-event",
838                     G_CALLBACK(on_map_configure), context);                     G_CALLBACK(on_map_configure), context);
# Line 737  void map(appdata_t *appdata) { Line 843  void map(appdata_t *appdata) {
843    g_signal_connect(G_OBJECT(context->widget), "button-release-event",    g_signal_connect(G_OBJECT(context->widget), "button-release-event",
844                     G_CALLBACK(on_map_button_release_event), context);                     G_CALLBACK(on_map_button_release_event), context);
845    
   gtk_box_pack_start_defaults(GTK_BOX(hbox), context->widget);  
   /* zoom button box */  
   GtkWidget *vbox = gtk_vbox_new(FALSE,0);  
   
   context->zoomin =  
     map_add_button(10, G_CALLBACK(cb_map_zoomin),  
                    context, _("Zoom in"));  
   gtk_box_pack_start(GTK_BOX(vbox), context->zoomin, FALSE, FALSE, 0);  
   
   context->zoomout =  
     map_add_button(11, G_CALLBACK(cb_map_zoomout),  
                    context, _("Zoom out"));  
   gtk_box_pack_start(GTK_BOX(vbox), context->zoomout, FALSE, FALSE, 0);  
   
   context->gps =  
     map_add_button(9, G_CALLBACK(cb_map_gps),  
                    context, _("Jump to GPS position"));  
   gtk_widget_set_sensitive(context->gps, FALSE);  
   
846    /* install handler for timed updates of the gps button */    /* install handler for timed updates of the gps button */
847    context->handler_id = gtk_timeout_add(1000, map_gps_update, context);    context->handler_id = gtk_timeout_add(1000, map_gps_update, context);
   gtk_box_pack_start(GTK_BOX(vbox), context->gps, FALSE, FALSE, 0);  
848    
849    gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0);    printf("map 7\n");
850    
851  #if MAEMO_VERSION_MAJOR == 5  #if MAEMO_VERSION_MAJOR == 5
852    /* prevent some of the main screen things */    /* prevent some of the main screen things */
# Line 768  void map(appdata_t *appdata) { Line 854  void map(appdata_t *appdata) {
854    appdata->cur_view = NULL;    appdata->cur_view = NULL;
855  #endif  #endif
856    
857      printf("map 8\n");
858    
859    g_signal_connect(G_OBJECT(context->window), "destroy",    g_signal_connect(G_OBJECT(context->window), "destroy",
860                     G_CALLBACK(on_window_destroy), context);                     G_CALLBACK(on_window_destroy), context);
861    
862    gtk_container_add(GTK_CONTAINER(context->window), hbox);    printf("map 9\n");
863      gtk_container_add(GTK_CONTAINER(context->window), context->widget);
864      printf("map 10\n");
865    gtk_widget_show_all(GTK_WIDGET(context->window));    gtk_widget_show_all(GTK_WIDGET(context->window));
866    
867      printf("map 11\n");
868  }  }

Legend:
Removed from v.56  
changed lines
  Added in v.143