Diff of /trunk/src/osm-gps-map-osd-classic.c

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

revision 70 by harbaum, Thu Aug 20 19:17:23 2009 UTC revision 88 by harbaum, Mon Aug 31 14:22:28 2009 UTC
# Line 1  Line 1 
1    /* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4; tab-width: 4 -*- */
2    /* vim:set et sw=4 ts=4 cino=t0,(0: */
3  /*  /*
4   * Copyright (C) Till Harbaum 2009 <till@harbaum.org>   * Copyright (C) Till Harbaum 2009 <till@harbaum.org>
5   *   *
# Line 15  Line 17 
17   * with this program.  If not, see <http://www.gnu.org/licenses/>.   * with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */   */
19    
20  #include "config.h"  #include "config.h"
21    #include <stdlib.h>  // abs
22    #include <math.h>    // M_PI/cos()
23    
24    /* parameters that can be overwritten from the config file: */
25    /* OSD_DIAMETER */
26    /* OSD_X, OSD_Y */
27    
28  #ifdef USE_CAIRO  #ifndef USE_CAIRO
29  #include <cairo.h>  #error "OSD control display lacks a non-cairo implementation!"
30  #endif  #endif
31    
32    #include <cairo.h>
33    
34    #include "osm-gps-map.h"
35    #include "osm-gps-map-osd-classic.h"
36    
37  //the osd controls  //the osd controls
38  typedef struct {  typedef struct {
39      GdkPixmap *backup;      /* the offscreen representation of the OSD */
40      cairo_surface_t *overlay;      cairo_surface_t *overlay;
     gint backup_x, backup_y;  
     OsmGpsMapOsdGpsCallback cb;  
     gpointer data;  
 } osd_priv_t;  
   
 typedef struct {  
   
41    
42    #ifdef OSD_SOURCE_SEL
43        /* values to handle the "source" menu */
44        cairo_surface_t *map_source;
45        gboolean expanded;
46        gint shift, dir, count;
47        gint handler_id;
48        gint width, height;
49    #endif
50    
51      gpointer priv;  } osd_priv_t;
 } osm_gps_map_osd_t;  
52    
53  /* position and extent of bounding box */  /* position and extent of bounding box */
54    #ifndef OSD_X
55  #define OSD_X      (10)  #define OSD_X      (10)
56  #define OSD_Y      (10)  #endif
57    
58  #define OSD_COLOR            0.5, 0.5, 1  #ifndef OSD_Y
59  #define OSD_COLOR_DISABLED   0.8, 0.8, 0.8  #define OSD_Y      (10)
60    #endif
61    
62  /* parameters of the direction shape */  /* parameters of the direction shape */
63  #ifndef OSM_GPS_MAP_OSD_DIAMETER  #ifndef OSD_DIAMETER
64  #define D_RAD  (30)         // diameter of dpad  #define D_RAD  (30)         // diameter of dpad
65  #else  #else
66  #define D_RAD  (OSM_GPS_MAP_OSD_DIAMETER)  #define D_RAD  (OSD_DIAMETER)
67  #endif  #endif
68  #define D_TIP  (4*D_RAD/5)  // distance of arrow tip from dpad center  #define D_TIP  (4*D_RAD/5)  // distance of arrow tip from dpad center
69  #define D_LEN  (D_RAD/4)    // length of arrow  #define D_LEN  (D_RAD/4)    // length of arrow
# Line 59  typedef struct { Line 73  typedef struct {
73  #define Z_STEP   (D_RAD/4)  // distance between dpad and zoom  #define Z_STEP   (D_RAD/4)  // distance between dpad and zoom
74  #define Z_RAD    (D_RAD/2)  // radius of "caps" of zoom bar  #define Z_RAD    (D_RAD/2)  // radius of "caps" of zoom bar
75    
76    #ifdef OSD_SHADOW_ENABLE
77  /* shadow also depends on control size */  /* shadow also depends on control size */
78  #define OSD_SHADOW (D_RAD/6)  #define OSD_SHADOW (D_RAD/6)
79    #else
80    #define OSD_SHADOW (0)
81    #endif
82    
83    /* normally the GPS button is in the center of the dpad. if there's */
84    /* no dpad it will go into the zoom area */
85    #if defined(OSD_GPS_BUTTON) && defined(OSD_NO_DPAD)
86    #define Z_GPS  1
87    #else
88    #define Z_GPS  0
89    #endif
90    
91  /* total width and height of controls incl. shadow */  /* total width and height of controls incl. shadow */
92  #define OSD_W    (2*D_RAD + OSD_SHADOW)  #define OSD_W    (2*D_RAD + OSD_SHADOW + Z_GPS * 2 * Z_RAD)
93    #if !Z_GPS
94  #define OSD_H    (2*D_RAD + Z_STEP + 2*Z_RAD + OSD_SHADOW)  #define OSD_H    (2*D_RAD + Z_STEP + 2*Z_RAD + OSD_SHADOW)
95    #else
96    #define OSD_H    (2*Z_RAD + OSD_SHADOW)
97    #endif
98    
99    #ifdef OSD_SHADOW_ENABLE
100  #define OSD_LBL_SHADOW (OSD_SHADOW/2)  #define OSD_LBL_SHADOW (OSD_SHADOW/2)
101    #endif
102    
103    #define Z_TOP    ((1-Z_GPS) * (2 * D_RAD + Z_STEP))
104    
 #define Z_TOP    (2 * D_RAD + Z_STEP)  
105  #define Z_MID    (Z_TOP + Z_RAD)  #define Z_MID    (Z_TOP + Z_RAD)
106  #define Z_BOT    (Z_MID + Z_RAD)  #define Z_BOT    (Z_MID + Z_RAD)
107  #define Z_LEFT   (Z_RAD)  #define Z_LEFT   (Z_RAD)
108  #define Z_RIGHT  (2 * D_RAD - Z_RAD)  #define Z_RIGHT  (2 * D_RAD - Z_RAD + Z_GPS * 2 * Z_RAD)
109    #define Z_CENTER ((Z_RIGHT + Z_LEFT)/2)
110    
111  /* create the cairo shape used for the zoom buttons */  /* create the cairo shape used for the zoom buttons */
112  static void  static void
113  osm_gps_map_osd_zoom_shape(cairo_t *cr, gint x, gint y) {  osd_zoom_shape(cairo_t *cr, gint x, gint y)
114    {
115      cairo_move_to (cr, x+Z_LEFT,    y+Z_TOP);      cairo_move_to (cr, x+Z_LEFT,    y+Z_TOP);
116      cairo_line_to (cr, x+Z_RIGHT,   y+Z_TOP);      cairo_line_to (cr, x+Z_RIGHT,   y+Z_TOP);
117      cairo_arc     (cr, x+Z_RIGHT,   y+Z_MID, Z_RAD, -M_PI/2,  M_PI/2);      cairo_arc     (cr, x+Z_RIGHT,   y+Z_MID, Z_RAD, -M_PI/2,  M_PI/2);
# Line 84  osm_gps_map_osd_zoom_shape(cairo_t *cr, Line 119  osm_gps_map_osd_zoom_shape(cairo_t *cr,
119      cairo_arc     (cr, x+Z_LEFT,    y+Z_MID, Z_RAD,  M_PI/2, -M_PI/2);      cairo_arc     (cr, x+Z_LEFT,    y+Z_MID, Z_RAD,  M_PI/2, -M_PI/2);
120  }  }
121    
122    /* ------------------- color/shadow functions ----------------- */
123    
124    #ifndef OSD_COLOR
125    /* if no color has been specified we just use the gdks default colors */
126    static void
127    osd_labels(cairo_t *cr, gint width, gboolean enabled,
128                           GdkColor *fg, GdkColor *disabled) {
129        if(enabled)  gdk_cairo_set_source_color(cr, fg);
130        else         gdk_cairo_set_source_color(cr, disabled);
131        cairo_set_line_width (cr, width);
132    }
133    #else
134    static void
135    osd_labels(cairo_t *cr, gint width, gboolean enabled) {
136        if(enabled)  cairo_set_source_rgb (cr, OSD_COLOR);
137        else         cairo_set_source_rgb (cr, OSD_COLOR_DISABLED);
138        cairo_set_line_width (cr, width);
139    }
140    #endif
141    
142    #ifdef OSD_SHADOW_ENABLE
143    static void
144    osd_labels_shadow(cairo_t *cr, gint width, gboolean enabled) {
145        cairo_set_source_rgba (cr, 0, 0, 0, enabled?0.3:0.15);
146        cairo_set_line_width (cr, width);
147    }
148    #endif
149    
150    #ifndef OSD_NO_DPAD
151  /* create the cairo shape used for the dpad */  /* create the cairo shape used for the dpad */
152  static void  static void
153  osm_gps_map_osd_dpad_shape(cairo_t *cr, gint x, gint y) {  osd_dpad_shape(cairo_t *cr, gint x, gint y)
154    {
155      cairo_arc (cr, x+D_RAD, y+D_RAD, D_RAD, 0, 2 * M_PI);      cairo_arc (cr, x+D_RAD, y+D_RAD, D_RAD, 0, 2 * M_PI);
156  }  }
157    #endif
158    
159    #ifdef OSD_SHADOW_ENABLE
160    static void
161    osd_shape_shadow(cairo_t *cr) {
162        cairo_set_source_rgba (cr, 0, 0, 0, 0.2);
163        cairo_fill (cr);
164        cairo_stroke (cr);
165    }
166    #endif
167    
168    #ifndef OSD_COLOR
169    /* if no color has been specified we just use the gdks default colors */
170    static void
171    osd_shape(cairo_t *cr, GdkColor *bg, GdkColor *fg) {
172        gdk_cairo_set_source_color(cr, bg);
173        cairo_fill_preserve (cr);
174        gdk_cairo_set_source_color(cr, fg);
175        cairo_set_line_width (cr, 1);
176        cairo_stroke (cr);
177    }
178    #else
179    static void
180    osd_shape(cairo_t *cr) {
181        cairo_set_source_rgb (cr, OSD_COLOR_BG);
182        cairo_fill_preserve (cr);
183        cairo_set_source_rgb (cr, OSD_COLOR);
184        cairo_set_line_width (cr, 1);
185        cairo_stroke (cr);
186    }
187    #endif
188    
 typedef enum {  
     OSD_NONE = 0,  
     OSD_BG,  
     OSD_UP,  
     OSD_DOWN,  
     OSD_LEFT,  
     OSD_RIGHT,  
     OSD_IN,  
     OSD_OUT,  
     OSD_GPS  
 } osd_button_t;  
189    
190  static gboolean  static gboolean
191  osm_gps_map_in_circle(gint x, gint y, gint cx, gint cy, gint rad)  osm_gps_map_in_circle(gint x, gint y, gint cx, gint cy, gint rad)
# Line 108  osm_gps_map_in_circle(gint x, gint y, gi Line 193  osm_gps_map_in_circle(gint x, gint y, gi
193      return( pow(cx - x, 2) + pow(cy - y, 2) < rad * rad);      return( pow(cx - x, 2) + pow(cy - y, 2) < rad * rad);
194  }  }
195    
196    #ifndef OSD_NO_DPAD
197  /* check whether x/y is within the dpad */  /* check whether x/y is within the dpad */
198  static osd_button_t  static osd_button_t
199  osm_gps_map_osd_check_dpad(gint x, gint y)  osd_check_dpad(gint x, gint y)
200  {  {
201      /* within entire dpad circle */      /* within entire dpad circle */
202      if( osm_gps_map_in_circle(x, y, OSD_X + D_RAD, OSD_Y + D_RAD, D_RAD))      if( osm_gps_map_in_circle(x, y, D_RAD, D_RAD, D_RAD))
203      {      {
204          /* convert into position relative to dpads centre */          /* convert into position relative to dpads centre */
205          x -= (OSD_X + D_RAD);          x -= D_RAD;
206          y -= (OSD_Y + D_RAD);          y -= D_RAD;
207    
208    #ifdef OSD_GPS_BUTTON
209          /* check for dpad center goes here! */          /* check for dpad center goes here! */
210          if( osm_gps_map_in_circle(x, y, 0, 0, D_RAD/3))          if( osm_gps_map_in_circle(x, y, 0, 0, D_RAD/3))
211              return OSD_GPS;              return OSD_GPS;
212    #endif
213    
214          if( y < 0 && abs(x) < abs(y))          if( y < 0 && abs(x) < abs(y))
215              return OSD_UP;              return OSD_UP;
# Line 139  osm_gps_map_osd_check_dpad(gint x, gint Line 227  osm_gps_map_osd_check_dpad(gint x, gint
227      }      }
228      return OSD_NONE;      return OSD_NONE;
229  }  }
230    #endif
231    
232  /* check whether x/y is within the zoom pads */  /* check whether x/y is within the zoom pads */
233  static osd_button_t  static osd_button_t
234  osm_gps_map_osd_check_zoom(gint x, gint y) {  osd_check_zoom(gint x, gint y) {
235      if( x > OSD_X && x < (OSD_X + OSD_W) && y > Z_TOP && y < (OSD_Y+Z_BOT)) {      if( x > 0 && x < OSD_W && y > Z_TOP && y < Z_BOT) {
236    
237          /* within circle around (-) label */          /* within circle around (-) label */
238          if( osm_gps_map_in_circle(x, y, OSD_X + Z_LEFT, OSD_Y + Z_MID, Z_RAD))          if( osm_gps_map_in_circle(x, y, Z_LEFT, Z_MID, Z_RAD))
             return OSD_OUT;  
   
         /* between center of (-) button and center of entire zoom control area */  
         if(x > OSD_LEFT && x < OSD_X + D_RAD)  
239              return OSD_OUT;              return OSD_OUT;
240    
241          /* within circle around (+) label */          /* within circle around (+) label */
242          if( osm_gps_map_in_circle(x, y, OSD_X + Z_RIGHT, OSD_Y + Z_MID, Z_RAD))          if( osm_gps_map_in_circle(x, y, Z_RIGHT, Z_MID, Z_RAD))
243              return OSD_IN;              return OSD_IN;
244    
245    #if Z_GPS == 1
246            /* within square around center */
247            if( x > Z_CENTER - Z_RAD && x < Z_CENTER + Z_RAD)
248                return OSD_GPS;
249    #endif
250    
251            /* between center of (-) button and center of entire zoom control area */
252            if(x > OSD_LEFT && x < D_RAD)
253                return OSD_OUT;
254    
255          /* between center of (+) button and center of entire zoom control area */          /* between center of (+) button and center of entire zoom control area */
256          if(x < OSD_RIGHT && x > OSD_X + D_RAD)          if(x < OSD_RIGHT && x > D_RAD)
257              return OSD_IN;              return OSD_IN;
258      }      }
259    
260      return OSD_NONE;      return OSD_NONE;
261  }  }
262    
263    #ifdef OSD_SOURCE_SEL
264    
265    /* place source selection at right border */
266    #define OSD_S_RAD (Z_RAD)
267    #define OSD_S_X   (-OSD_X)
268    #define OSD_S_Y   (OSD_Y)
269    #define OSD_S_PW  (2 * Z_RAD)
270    #define OSD_S_W   (OSD_S_PW)
271    #define OSD_S_PH  (2 * Z_RAD)
272    #define OSD_S_H   (OSD_S_PH + OSD_SHADOW)
273    
274    /* size of usable area when expanded */
275    #define OSD_S_AREA_W (priv->width)
276    #define OSD_S_AREA_H (priv->height)
277    #define OSD_S_EXP_W  (OSD_S_PW + OSD_S_AREA_W + OSD_SHADOW)
278    #define OSD_S_EXP_H  (OSD_S_AREA_H + OSD_SHADOW)
279    
280    /* internal value to draw the arrow on the "puller" */
281    #define OSD_S_D0  (OSD_S_RAD/2)
282    #ifndef OSD_FONT_SIZE
283    #define OSD_FONT_SIZE 16.0
284    #endif
285    #define OSD_TEXT_BORDER   (OSD_FONT_SIZE/2)
286    #define OSD_TEXT_SKIP     (OSD_FONT_SIZE/8)
287    
288    /* draw the shape of the source selection OSD, either only the puller (not expanded) */
289    /* or the entire menu incl. the puller (expanded) */
290    static void
291    osd_source_shape(osd_priv_t *priv, cairo_t *cr, gint x, gint y) {
292        if(!priv->expanded) {
293            /* just draw the puller */
294            cairo_move_to (cr, x + OSD_S_PW, y + OSD_S_PH);
295            cairo_arc (cr, x+OSD_S_RAD, y+OSD_S_RAD, OSD_S_RAD, M_PI/2, -M_PI/2);
296            cairo_line_to (cr, x + OSD_S_PW, y);
297        } else {
298            /* draw the puller and the area itself */
299            cairo_move_to (cr, x + OSD_S_PW + OSD_S_AREA_W, y + OSD_S_AREA_H);
300            cairo_line_to (cr, x + OSD_S_PW, y + OSD_S_AREA_H);
301            if(OSD_S_Y > 0) {
302                cairo_line_to (cr, x + OSD_S_PW, y + OSD_S_PH);
303                cairo_arc (cr, x+OSD_S_RAD, y+OSD_S_RAD, OSD_S_RAD, M_PI/2, -M_PI/2);
304            } else {
305                cairo_arc (cr, x+OSD_S_RAD, y+OSD_S_AREA_H-OSD_S_RAD, OSD_S_RAD, M_PI/2, -M_PI/2);
306                cairo_line_to (cr, x + OSD_S_PW, y + OSD_S_AREA_H - OSD_S_PH);
307                cairo_line_to (cr, x + OSD_S_PW, y);
308            }
309            cairo_line_to (cr, x + OSD_S_PW + OSD_S_AREA_W, y);
310            cairo_close_path (cr);
311        }
312    }
313    
314    static void
315    osd_source_content(osm_gps_map_osd_t *osd, cairo_t *cr, gint offset) {
316        osd_priv_t *priv = (osd_priv_t*)osd->priv;
317    
318        int py = offset + OSD_S_RAD - OSD_S_D0;
319    
320        if(!priv->expanded) {
321            /* draw the "puller" open (<) arrow */
322            cairo_move_to (cr, offset + OSD_S_RAD + OSD_S_D0/2, py);
323            cairo_rel_line_to (cr, -OSD_S_D0, +OSD_S_D0);
324            cairo_rel_line_to (cr, +OSD_S_D0, +OSD_S_D0);
325        } else {
326            if(OSD_S_Y < 0)
327                py += OSD_S_AREA_H - OSD_S_PH;
328    
329            /* draw the "puller" close (>) arrow */
330            cairo_move_to (cr, offset + OSD_S_RAD - OSD_S_D0/2, py);
331            cairo_rel_line_to (cr, +OSD_S_D0, +OSD_S_D0);
332            cairo_rel_line_to (cr, -OSD_S_D0, +OSD_S_D0);
333            cairo_stroke(cr);
334    
335            /* don't draw a shadow for the text content */
336            if(offset == 1) {
337                gint source;
338                g_object_get(osd->widget, "map-source", &source, NULL);
339    
340                cairo_select_font_face (cr, "Sans",
341                                        CAIRO_FONT_SLANT_NORMAL,
342                                        CAIRO_FONT_WEIGHT_BOLD);
343                cairo_set_font_size (cr, OSD_FONT_SIZE);
344    
345                int i, step = (priv->height - 2*OSD_TEXT_BORDER)
346                    / OSM_GPS_MAP_SOURCE_LAST;
347                for(i=OSM_GPS_MAP_SOURCE_NULL+1;i<=OSM_GPS_MAP_SOURCE_LAST;i++) {
348                    cairo_text_extents_t extents;
349                    const char *src = osm_gps_map_source_get_friendly_name(i);
350                    cairo_text_extents (cr, src, &extents);
351    
352                    int x = offset + OSD_S_PW + OSD_TEXT_BORDER;
353                    int y = offset + step * (i-1) + OSD_TEXT_BORDER;
354    
355                    /* draw filled rectangle if selected */
356                    if(source == i) {
357                        cairo_rectangle(cr, x - OSD_TEXT_BORDER/2,
358                                        y - OSD_TEXT_SKIP,
359                                        priv->width - OSD_TEXT_BORDER,
360                                        step + OSD_TEXT_SKIP);
361                        cairo_fill(cr);
362    
363                        /* temprarily draw with background color */
364    #ifndef OSD_COLOR
365                        GdkColor bg = osd->widget->style->bg[GTK_STATE_NORMAL];
366                        gdk_cairo_set_source_color(cr, &bg);
367    #else
368                        cairo_set_source_rgb (cr, OSD_COLOR_BG);
369    #endif
370                    }
371    
372                    cairo_move_to (cr, x, y + OSD_TEXT_SKIP - extents.y_bearing);
373                    cairo_show_text (cr, src);
374    
375                    /* restore color */
376                    if(source == i) {
377    #ifndef OSD_COLOR
378                        GdkColor fg = osd->widget->style->fg[GTK_STATE_NORMAL];
379                        gdk_cairo_set_source_color(cr, &fg);
380    #else
381                        cairo_set_source_rgb (cr, OSD_COLOR);
382    #endif
383                    }
384                }
385            }
386        }
387    }
388    
389    static void
390    osd_render_source_sel(osm_gps_map_osd_t *osd) {
391        osd_priv_t *priv = (osd_priv_t*)osd->priv;
392    
393    #ifndef OSD_COLOR
394        GdkColor bg = GTK_WIDGET(osd->widget)->style->bg[GTK_STATE_NORMAL];
395        GdkColor fg = GTK_WIDGET(osd->widget)->style->fg[GTK_STATE_NORMAL];
396        GdkColor da = GTK_WIDGET(osd->widget)->style->fg[GTK_STATE_INSENSITIVE];
397    #endif
398    
399        /* draw source selector */
400        cairo_t *cr = cairo_create(priv->map_source);
401        cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
402        cairo_set_source_rgba(cr, 1.0, 0.0, 0.0, 0.0);
403        cairo_paint(cr);
404        cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
405    
406    #ifdef OSD_SHADOW_ENABLE
407        osd_source_shape(priv, cr, 1+OSD_SHADOW, 1+OSD_SHADOW);
408        osd_shape_shadow(cr);
409    #endif
410    
411        osd_source_shape(priv, cr, 1, 1);
412    #ifndef OSD_COLOR
413        osd_shape(cr, &bg, &fg);
414    #else
415        osd_shape(cr);
416    #endif
417    
418    #ifdef OSD_SHADOW_ENABLE
419        osd_labels_shadow(cr, Z_RAD/3, TRUE);
420        osd_source_content(osd, cr, 1+OSD_LBL_SHADOW);
421        cairo_stroke (cr);
422    #endif
423    #ifndef OSD_COLOR
424        osd_labels(cr, Z_RAD/3, TRUE, &fg, &da);
425    #else
426        osd_labels(cr, Z_RAD/3, TRUE);
427    #endif
428        osd_source_content(osd, cr, 1);
429        cairo_stroke (cr);
430    
431        cairo_destroy(cr);
432    }
433    
434    static void
435    osd_source_reallocate(osm_gps_map_osd_t *osd) {
436        osd_priv_t *priv = (osd_priv_t*)osd->priv;
437    
438        /* re-allocate offscreen bitmap */
439        g_assert (priv->map_source);
440    
441        int w = OSD_S_W, h = OSD_S_H;
442        if(priv->expanded) {
443            /* ... and right of it the waypoint id */
444            cairo_text_extents_t extents;
445    
446            /* determine content size */
447            cairo_t *cr = cairo_create(priv->map_source);
448            cairo_select_font_face (cr, "Sans",
449                                    CAIRO_FONT_SLANT_NORMAL,
450                                    CAIRO_FONT_WEIGHT_BOLD);
451            cairo_set_font_size (cr, OSD_FONT_SIZE);
452    
453            /* calculate menu size */
454            int i, max_h = 0, max_w = 0;
455            for(i=OSM_GPS_MAP_SOURCE_NULL+1;i<=OSM_GPS_MAP_SOURCE_LAST;i++) {
456                const char *src = osm_gps_map_source_get_friendly_name(i);
457                cairo_text_extents (cr, src, &extents);
458    
459                //            printf("Source %d: %s = %f %f\n", i, src,
460                //                   extents.width, extents.height);
461    
462                if(extents.width > max_w) max_w = extents.width;
463                if(extents.height > max_h) max_h = extents.height;
464            }
465            cairo_destroy(cr);
466    
467            priv->width  = max_w + 2*OSD_TEXT_BORDER;
468            priv->height = OSM_GPS_MAP_SOURCE_LAST *
469                (max_h + 2*OSD_TEXT_SKIP) + 2*OSD_TEXT_BORDER;
470    
471            w = OSD_S_EXP_W;
472            h = OSD_S_EXP_H;
473        }
474    
475        cairo_surface_destroy(priv->map_source);
476        priv->map_source =
477            cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w+2, h+2);
478    
479        osd_render_source_sel(osd);
480    
481    }
482    
483    #define OSD_HZ      15
484    #define OSD_TIME    500
485    
486    static gboolean osd_source_animate(gpointer data) {
487        osm_gps_map_osd_t *osd = (osm_gps_map_osd_t*)data;
488        osd_priv_t *priv = (osd_priv_t*)osd->priv;
489        int diff = OSD_S_EXP_W - OSD_S_W - OSD_S_X;
490        gboolean done = FALSE;
491        priv->count += priv->dir;
492    
493        /* shifting in */
494        if(priv->dir < 0) {
495            if(priv->count <= 0) {
496                priv->count = 0;
497                done = TRUE;
498            }
499        } else {
500            if(priv->count >= 1000) {
501                priv->expanded = FALSE;
502                osd_source_reallocate(osd);
503    
504                priv->count = 1000;
505                done = TRUE;
506            }
507        }
508    
509    
510        /* count runs linearly from 0 to 1000, map this nicely onto a position */
511    
512        /* simple linear mapping */
513        //    priv->shift = (osd->widget->allocation.width - OSD_S_EXP_W + OSD_S_X) +
514        //        (diff * priv->count)/1000;
515    
516        /* nicer sinoid mapping */
517        float m = 0.5-cos(priv->count * M_PI / 1000.0)/2;
518        priv->shift = (osd->widget->allocation.width - OSD_S_EXP_W + OSD_S_X) +
519            m * diff;
520    
521        osm_gps_map_repaint(OSM_GPS_MAP(osd->widget));
522    
523        if(done)
524            priv->handler_id = 0;
525    
526        return !done;
527    }
528    
529    /* switch between expand and collapse mode of source selection */
530    static void
531    osd_source_toggle(osm_gps_map_osd_t *osd)
532    {
533        osd_priv_t *priv = (osd_priv_t*)osd->priv;
534    
535        /* ignore clicks while animation is running */
536        if(priv->handler_id)
537            return;
538    
539        /* expand immediately, collapse is handle at the end of the collapse animation */
540        if(!priv->expanded) {
541            priv->expanded = TRUE;
542            osd_source_reallocate(osd);
543    
544            priv->count = 1000;
545            priv->shift = osd->widget->allocation.width - OSD_S_W;
546            priv->dir = -1000/OSD_HZ;
547        } else {
548            priv->count =  0;
549            priv->shift = osd->widget->allocation.width - OSD_S_EXP_W + OSD_S_X;
550            priv->dir = +1000/OSD_HZ;
551        }
552    
553        priv->handler_id = gtk_timeout_add(OSD_TIME/OSD_HZ, osd_source_animate, osd);
554    }
555    
556    static osd_button_t
557    osd_source_check(osm_gps_map_osd_t *osd, gint x, gint y) {
558        osd_priv_t *priv = (osd_priv_t*)osd->priv;
559    
560        if(!priv->expanded)
561            x -= osd->widget->allocation.width - OSD_S_W;
562        else
563            x -= osd->widget->allocation.width - OSD_S_EXP_W + OSD_S_X;
564    
565        if(OSD_S_Y > 0)
566            y -= OSD_S_Y;
567        else
568            y -= osd->widget->allocation.height - OSD_S_PH + OSD_S_Y;
569    
570        /* within square around puller? */
571        if(y > 0 && y < OSD_S_PH && x > 0 && x < OSD_S_PW) {
572            /* really within puller shape? */
573            if(x > Z_RAD || osm_gps_map_in_circle(x, y, Z_RAD, Z_RAD, Z_RAD)) {
574                /* expand source selector */
575                osd_source_toggle(osd);
576    
577                /* tell upper layers that user clicked some background element */
578                /* of the OSD */
579                return OSD_BG;
580            }
581        }
582    
583        /* check for clicks into data area */
584        if(priv->expanded) {
585            if(x > OSD_S_PW &&
586               x < OSD_S_PW + OSD_S_EXP_W &&
587               y > 0 &&
588               y < OSD_S_EXP_H) {
589    
590                printf("in OSD source menu area\n");
591    
592                return OSD_BG;
593            }
594        }
595    
596        return OSD_NONE;
597    }
598    #endif // OSD_SOURCE_SEL
599    
600  static osd_button_t  static osd_button_t
601  osm_gps_map_osd_check(gint x, gint y) {  osd_check(osm_gps_map_osd_t *osd, gint x, gint y) {
602      osd_button_t but = OSD_NONE;      osd_button_t but = OSD_NONE;
603    
604    #ifdef OSD_SOURCE_SEL
605        /* the source selection area is handles internally */
606        but = osd_source_check(osd, x, y);
607        if(but != OSD_NONE)
608            return but;
609    #endif
610    
611        x -= OSD_X;
612        y -= OSD_Y;
613    
614        if(OSD_X < 0)
615            x -= (osd->widget->allocation.width - OSD_W);
616    
617        if(OSD_Y < 0)
618            y -= (osd->widget->allocation.height - OSD_H);
619    
620      /* first do a rough test for the OSD area. */      /* first do a rough test for the OSD area. */
621      /* this is just to avoid an unnecessary detailed test */      /* this is just to avoid an unnecessary detailed test */
622      if(x > OSD_X && x < OSD_X + OSD_W &&      if(x > 0 && x < OSD_W && y > 0 && y < OSD_H) {
623         y > OSD_Y && y < OSD_Y + OSD_H) {  #ifndef OSD_NO_DPAD
624          but = osm_gps_map_osd_check_dpad(x, y);          but = osd_check_dpad(x, y);
625    #endif
626    
627          if(but == OSD_NONE)          if(but == OSD_NONE)
628              but = osm_gps_map_osd_check_zoom(x, y);              but = osd_check_zoom(x, y);
629      }      }
630    
631      return but;      return but;
632  }  }
633    
634  static void  #ifndef OSD_NO_DPAD
 osm_gps_map_osd_shape_shadow(cairo_t *cr) {  
     cairo_set_source_rgba (cr, 0, 0, 0, 0.2);  
     cairo_fill (cr);  
     cairo_stroke (cr);  
 }  
   
 static void  
 osm_gps_map_osd_shape(cairo_t *cr) {  
     cairo_set_source_rgb (cr, 1, 1, 1);  
     cairo_fill_preserve (cr);  
     cairo_set_source_rgb (cr, OSD_COLOR);  
     cairo_set_line_width (cr, 1);  
     cairo_stroke (cr);  
 }  
   
635  static void  static void
636  osm_gps_map_osd_dpad_labels(cairo_t *cr, gint x, gint y) {  osd_dpad_labels(cairo_t *cr, gint x, gint y) {
637      /* move reference to dpad center */      /* move reference to dpad center */
638      x += D_RAD;      x += D_RAD;
639      y += D_RAD;      y += D_RAD;
# Line 222  osm_gps_map_osd_dpad_labels(cairo_t *cr, Line 656  osm_gps_map_osd_dpad_labels(cairo_t *cr,
656          cairo_rel_line_to (cr, offset[i][2][0], offset[i][2][1]);          cairo_rel_line_to (cr, offset[i][2][0], offset[i][2][1]);
657      }      }
658  }  }
659    #endif
660    
661  /* draw the sattelite dish icon in the center of the dpad */  #ifdef OSD_GPS_BUTTON
662  #define GPS_V0  (D_RAD/8)  /* draw the satellite dish icon in the center of the dpad */
663    #define GPS_V0  (D_RAD/7)
664  #define GPS_V1  (D_RAD/10)  #define GPS_V1  (D_RAD/10)
665  #define GPS_V2  (D_RAD/5)  #define GPS_V2  (D_RAD/5)
666    
667  /* draw a satellite receiver dish */  /* draw a satellite receiver dish */
668    /* this is either drawn in the center of the dpad (if present) */
669    /* or in the middle of the zoom area */
670  static void  static void
671  osm_gps_map_osd_dpad_gps(cairo_t *cr, gint x, gint y) {  osd_dpad_gps(cairo_t *cr, gint x, gint y) {
672      /* move reference to dpad center */      /* move reference to dpad center */
673      x += D_RAD;      x += (1-Z_GPS) * D_RAD + Z_GPS * Z_RAD * 3;
674      y += D_RAD + GPS_V0;      y += (1-Z_GPS) * D_RAD + Z_GPS * Z_RAD + GPS_V0;
675    
676      cairo_move_to (cr, x-GPS_V0, y+GPS_V0);      cairo_move_to (cr, x-GPS_V0, y+GPS_V0);
677      cairo_rel_line_to (cr, +GPS_V0, -GPS_V0);      cairo_rel_line_to (cr, +GPS_V0, -GPS_V0);
# Line 248  osm_gps_map_osd_dpad_gps(cairo_t *cr, gi Line 686  osm_gps_map_osd_dpad_gps(cairo_t *cr, gi
686      cairo_move_to (cr, x, y-GPS_V2);      cairo_move_to (cr, x, y-GPS_V2);
687      cairo_rel_line_to (cr, +GPS_V1, -GPS_V1);      cairo_rel_line_to (cr, +GPS_V1, -GPS_V1);
688  }  }
689    #endif
690    
691  #define Z_LEN  (2*Z_RAD/3)  #define Z_LEN  (2*Z_RAD/3)
692    
693  static void  static void
694  osm_gps_map_osd_zoom_labels(cairo_t *cr, gint x, gint y) {  osd_zoom_labels(cairo_t *cr, gint x, gint y) {
695      cairo_move_to (cr, x + Z_LEFT  - Z_LEN, y + Z_MID);      cairo_move_to (cr, x + Z_LEFT  - Z_LEN, y + Z_MID);
696      cairo_line_to (cr, x + Z_LEFT  + Z_LEN, y + Z_MID);      cairo_line_to (cr, x + Z_LEFT  + Z_LEN, y + Z_MID);
697    
# Line 263  osm_gps_map_osd_zoom_labels(cairo_t *cr, Line 702  osm_gps_map_osd_zoom_labels(cairo_t *cr,
702  }  }
703    
704  static void  static void
705  osm_gps_map_osd_labels(cairo_t *cr, gint width, gboolean enabled) {  osd_render(osm_gps_map_osd_t *osd) {
706      if(enabled)  cairo_set_source_rgb (cr, OSD_COLOR);      osd_priv_t *priv = (osd_priv_t*)osd->priv;
     else         cairo_set_source_rgb (cr, OSD_COLOR_DISABLED);  
     cairo_set_line_width (cr, width);  
     cairo_stroke (cr);  
 }  
   
 static void  
 osm_gps_map_osd_labels_shadow(cairo_t *cr, gint width, gboolean enabled) {  
     cairo_set_source_rgba (cr, 0, 0, 0, enabled?0.3:0.15);  
     cairo_set_line_width (cr, width);  
     cairo_stroke (cr);  
 }  
707    
708  static void  #ifndef OSD_COLOR
709  osm_gps_map_osd_render(OsmGpsMapPrivate *priv) {      GdkColor bg = GTK_WIDGET(osd->widget)->style->bg[GTK_STATE_NORMAL];
710        GdkColor fg = GTK_WIDGET(osd->widget)->style->fg[GTK_STATE_NORMAL];
711        GdkColor da = GTK_WIDGET(osd->widget)->style->fg[GTK_STATE_INSENSITIVE];
712    #endif
713    
714      /* first fill with transparency */      /* first fill with transparency */
715      cairo_t *cr = cairo_create(priv->osd.overlay);      cairo_t *cr = cairo_create(priv->overlay);
716      cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);      cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
717      cairo_set_source_rgba(cr, 1.0, 0.0, 0.0, 0.0);      cairo_set_source_rgba(cr, 1.0, 0.0, 0.0, 0.0);
718      cairo_paint(cr);      cairo_paint(cr);
   
719      cairo_set_operator(cr, CAIRO_OPERATOR_OVER);      cairo_set_operator(cr, CAIRO_OPERATOR_OVER);
720    
721      /* --------- draw zoom and dpad shape shadow ----------- */      /* --------- draw zoom and dpad shape shadow ----------- */
722      gint x = 0, y = 0;  #ifdef OSD_SHADOW_ENABLE
723        osd_zoom_shape(cr, 1+OSD_SHADOW, 1+OSD_SHADOW);
724      osm_gps_map_osd_zoom_shape(cr, x + OSD_SHADOW, y + OSD_SHADOW);      osd_shape_shadow(cr);
725      osm_gps_map_osd_shape_shadow(cr);  #ifndef OSD_NO_DPAD
726      osm_gps_map_osd_dpad_shape(cr, x + OSD_SHADOW, y + OSD_SHADOW);      osd_dpad_shape(cr, 1+OSD_SHADOW, 1+OSD_SHADOW);
727      osm_gps_map_osd_shape_shadow(cr);      osd_shape_shadow(cr);
728    #endif
729    #endif
730    
731      /* --------- draw zoom and dpad shape ----------- */      /* --------- draw zoom and dpad shape ----------- */
732    
733      osm_gps_map_osd_zoom_shape(cr, x, y);      osd_zoom_shape(cr, 1, 1);
734      osm_gps_map_osd_shape(cr);  #ifndef OSD_COLOR
735      osm_gps_map_osd_dpad_shape(cr, x, y);      osd_shape(cr, &bg, &fg);
736      osm_gps_map_osd_shape(cr);  #else
737        osd_shape(cr);
738    #endif
739    #ifndef OSD_NO_DPAD
740        osd_dpad_shape(cr, 1, 1);
741    #ifndef OSD_COLOR
742        osd_shape(cr, &bg, &fg);
743    #else
744        osd_shape(cr);
745    #endif
746    #endif
747    
748      /* --------- draw zoom and dpad labels --------- */      /* --------- draw zoom and dpad labels --------- */
749    
750      osm_gps_map_osd_zoom_labels(cr, x + OSD_LBL_SHADOW, y + OSD_LBL_SHADOW);  #ifdef OSD_SHADOW_ENABLE
751      osm_gps_map_osd_dpad_labels(cr, x + OSD_LBL_SHADOW, y + OSD_LBL_SHADOW);      osd_labels_shadow(cr, Z_RAD/3, TRUE);
752      osm_gps_map_osd_labels_shadow(cr, Z_RAD/3, TRUE);      osd_zoom_labels(cr, 1+OSD_LBL_SHADOW, 1+OSD_LBL_SHADOW);
753      osm_gps_map_osd_dpad_gps(cr, x + OSD_LBL_SHADOW, y + OSD_LBL_SHADOW);  #ifndef OSD_NO_DPAD
754      osm_gps_map_osd_labels_shadow(cr, Z_RAD/6, priv->osd.cb != NULL);      osd_dpad_labels(cr, 1+OSD_LBL_SHADOW, 1+OSD_LBL_SHADOW);
755    #endif
756      osm_gps_map_osd_zoom_labels(cr, x, y);      cairo_stroke(cr);
757      osm_gps_map_osd_dpad_labels(cr, x, y);  #ifdef OSD_GPS_BUTTON
758      osm_gps_map_osd_labels(cr, Z_RAD/3, TRUE);      osd_labels_shadow(cr, Z_RAD/6, osd->cb != NULL);
759      osm_gps_map_osd_dpad_gps(cr, x, y);      osd_dpad_gps(cr, 1+OSD_LBL_SHADOW, 1+OSD_LBL_SHADOW);
760      osm_gps_map_osd_labels(cr, Z_RAD/6, priv->osd.cb != NULL);      cairo_stroke(cr);
761    #endif
762    #endif
763    
764    #ifndef OSD_COLOR
765        osd_labels(cr, Z_RAD/3, TRUE, &fg, &da);
766    #else
767        osd_labels(cr, Z_RAD/3, TRUE);
768    #endif
769        osd_zoom_labels(cr, 1, 1);
770    #ifndef OSD_NO_DPAD
771        osd_dpad_labels(cr, 1, 1);
772    #endif
773        cairo_stroke(cr);
774    
775    #ifndef OSD_COLOR
776        osd_labels(cr, Z_RAD/6, osd->cb != NULL, &fg, &da);
777    #else
778        osd_labels(cr, Z_RAD/6, osd->cb != NULL);
779    #endif
780    #ifdef OSD_GPS_BUTTON
781        osd_dpad_gps(cr, 1, 1);
782    #endif
783        cairo_stroke(cr);
784    
785      cairo_destroy(cr);      cairo_destroy(cr);
786    
787    #ifdef OSD_SOURCE_SEL
788        osd_render_source_sel(osd);
789    #endif
790  }  }
791    
792  static void  static void
793  osm_gps_map_osd_draw_controls (OsmGpsMap *map, gint xoffset, gint yoffset)  osd_draw(osm_gps_map_osd_t *osd, GdkDrawable *drawable)
794  {  {
795      OsmGpsMapPrivate *priv = map->priv;      osd_priv_t *priv = (osd_priv_t*)osd->priv;
   
     /* backup previous contents */  
     if(!priv->osd.backup)  
         priv->osd.backup = gdk_pixmap_new(priv->pixmap, OSD_W+2, OSD_H+2, -1);  
796    
     gint x = OSD_X + EXTRA_BORDER + xoffset;  
     gint y = OSD_Y + EXTRA_BORDER + yoffset;  
   
     /* create backup of background */  
     gdk_draw_drawable(priv->osd.backup,  
         GTK_WIDGET(map)->style->fg_gc[GTK_WIDGET_STATE(GTK_WIDGET(map))],  
                       priv->pixmap, x-1, y-1, 0, 0, OSD_W+2, OSD_H+2);  
   
     priv->osd.backup_x = x-1;  
     priv->osd.backup_y = y-1;  
   
   
 #ifdef USE_CAIRO  
797      /* OSD itself uses some off-screen rendering, so check if the */      /* OSD itself uses some off-screen rendering, so check if the */
798      /* offscreen buffer is present and create it if not */      /* offscreen buffer is present and create it if not */
799      if(!priv->osd.overlay) {      if(!priv->overlay) {
800          /* create overlay ... */          /* create overlay ... */
801          priv->osd.overlay =          priv->overlay =
802              cairo_image_surface_create(CAIRO_FORMAT_ARGB32, OSD_W, OSD_H);              cairo_image_surface_create(CAIRO_FORMAT_ARGB32, OSD_W+2, OSD_H+2);
803    
804    #ifdef OSD_SOURCE_SEL
805            /* the initial OSD state is alway not-expanded */
806            priv->map_source =
807                cairo_image_surface_create(CAIRO_FORMAT_ARGB32,
808                                               OSD_S_W+2, OSD_S_H+2);
809    #endif
810    
811          /* ... and render it */          /* ... and render it */
812          osm_gps_map_osd_render(priv);          osd_render(osd);
813      }      }
814    
815      // now draw this onto the original context      // now draw this onto the original context
816      cairo_t *cr = gdk_cairo_create(priv->pixmap);      cairo_t *cr = gdk_cairo_create(drawable);
817      cairo_set_source_surface(cr, priv->osd.overlay, x, y);  
818        int x = OSD_X, y = OSD_Y;
819        if(OSD_X < 0)
820            x = osd->widget->allocation.width - OSD_W + OSD_X;
821    
822        if(OSD_Y < 0)
823            y = osd->widget->allocation.height - OSD_H + OSD_Y;
824    
825        cairo_set_source_surface(cr, priv->overlay, x, y);
826      cairo_paint(cr);      cairo_paint(cr);
     cairo_destroy(cr);  
827    
828  #else  #ifdef OSD_SOURCE_SEL
829  #warning "OSD control display lacks a non-cairo implementation!"      if(!priv->handler_id) {
830            /* the OSD source selection is not being animated */
831            if(!priv->expanded)
832                x = osd->widget->allocation.width - OSD_S_W;
833            else
834                x = osd->widget->allocation.width - OSD_S_EXP_W + OSD_S_X;
835        } else
836            x = priv->shift;
837    
838        y = OSD_S_Y;
839        if(OSD_S_Y < 0) {
840            if(!priv->expanded)
841                y = osd->widget->allocation.height - OSD_S_H + OSD_S_Y;
842            else
843                y = osd->widget->allocation.height - OSD_S_EXP_H + OSD_S_Y;
844        }
845    
846        cairo_set_source_surface(cr, priv->map_source, x, y);
847        cairo_paint(cr);
848  #endif  #endif
849    
850        cairo_destroy(cr);
851  }  }
852    
853  static void  static void
854  osm_gps_map_osd_restore (OsmGpsMap *map)  osd_free(osm_gps_map_osd_t *osd)
855  {  {
856      OsmGpsMapPrivate *priv = map->priv;      osd_priv_t *priv = (osd_priv_t *)(osd->priv);
857    
858      /* restore backup of previous contents */      if (priv->overlay)
859      if(priv->osd.backup) {           cairo_surface_destroy(priv->overlay);
860          /* create backup of background */  
861          gdk_draw_drawable(priv->pixmap,  #ifdef OSD_SOURCE_SEL
862              GTK_WIDGET(map)->style->fg_gc[GTK_WIDGET_STATE(GTK_WIDGET(map))],      if(priv->handler_id)
863                        priv->osd.backup, 0, 0,          gtk_timeout_remove(priv->handler_id);
                       priv->osd.backup_x, priv->osd.backup_y, OSD_W+2, OSD_H+2);  
     }  
 }  
864    
865        if (priv->map_source)
866             cairo_surface_destroy(priv->map_source);
867  #endif  #endif
868    
869        g_free(priv);
870    }
871    
872  static gboolean  static gboolean
873  osm_gps_map_map_redraw (OsmGpsMap *map)  osd_busy(osm_gps_map_osd_t *osd)
874  {  {
875      OsmGpsMapPrivate *priv = map->priv;  #ifdef OSD_SOURCE_SEL
876        osd_priv_t *priv = (osd_priv_t *)(osd->priv);
877      priv->idle_map_redraw = 0;      return (priv->handler_id != 0);
   
     /* the motion_notify handler uses priv->pixmap to redraw the area; if we  
      * change it while we are dragging, we will end up showing it in the wrong  
      * place. This could be fixed by carefully recompute the coordinates, but  
      * for now it's easier just to disable redrawing the map while dragging */  
     if (priv->dragging)  
         return FALSE;  
   
     priv->redraw_cycle++;  
   
     /* draw white background to initialise pixmap */  
     gdk_draw_rectangle (  
                         priv->pixmap,  
                         GTK_WIDGET(map)->style->white_gc,  
                         TRUE,  
                         0, 0,  
                         GTK_WIDGET(map)->allocation.width + EXTRA_BORDER * 2,  
                         GTK_WIDGET(map)->allocation.height + EXTRA_BORDER * 2);  
   
     osm_gps_map_fill_tiles_pixel(map);  
   
     osm_gps_map_print_tracks(map);  
     osm_gps_map_draw_gps_point(map);  
     osm_gps_map_print_images(map);  
 #ifdef ENABLE_BALLOON  
     osm_gps_map_draw_balloon_int(map);  
 #endif  
 #ifdef ENABLE_OSD  
     osm_gps_map_osd_draw_controls(map, 0, 0);  
 #endif  
   
     //osm_gps_map_osd_speed(map, 1.5);  
     osm_gps_map_purge_cache(map);  
     gtk_widget_queue_draw (GTK_WIDGET (map));  
   
     return FALSE;  
 }  
   
 static void  
 osm_gps_map_map_redraw_idle (OsmGpsMap *map)  
 {  
     OsmGpsMapPrivate *priv = map->priv;  
   
     if (priv->idle_map_redraw == 0)  
         priv->idle_map_redraw = g_idle_add ((GSourceFunc)osm_gps_map_map_redraw, map);  
 }  
   
 static void  
 osm_gps_map_init (OsmGpsMap *object)  
 {  
     OsmGpsMapPrivate *priv;  
   
     priv = G_TYPE_INSTANCE_GET_PRIVATE (object, OSM_TYPE_GPS_MAP, OsmGpsMapPrivate);  
     object->priv = priv;  
   
     priv->pixmap = NULL;  
   
     priv->trip_history = NULL;  
     priv->gps = g_new0(coord_t, 1);  
     priv->gps_valid = FALSE;  
   
 #ifdef ENABLE_BALLOON  
     priv->balloon.coo = g_new0(coord_t, 1);  
     priv->balloon.valid = FALSE;  
     priv->balloon.cb = NULL;  
 #endif  
   
 #ifdef ENABLE_OSD  
     priv->osd.backup = NULL;  
     priv->osd.overlay = NULL;  
     priv->osd.cb = NULL;  
 #endif  
   
     priv->tracks = NULL;  
     priv->images = NULL;  
   
     priv->drag_counter = 0;  
     priv->drag_mouse_dx = 0;  
     priv->drag_mouse_dy = 0;  
     priv->drag_start_mouse_x = 0;  
     priv->drag_start_mouse_y = 0;  
   
     priv->uri_format = 0;  
     priv->the_google = FALSE;  
   
     priv->map_source = -1;  
   
 #ifndef LIBSOUP22  
     //Change naumber of concurrent connections option?  
     priv->soup_session = soup_session_async_new_with_options(  
                                                              SOUP_SESSION_USER_AGENT,  
                                                              "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11",  
                                                              NULL);  
 #else  
     /* libsoup-2.2 seems not to be able to set the user agent */  
     priv->soup_session = soup_session_async_new();  
 #endif  
   
     //Hash table which maps tile d/l URIs to SoupMessage requests  
     priv->tile_queue = g_hash_table_new (g_str_hash, g_str_equal);  
   
     //Some mapping providers (Google) have varying degrees of tiles at multiple  
     //zoom levels  
     priv->missing_tiles = g_hash_table_new (g_str_hash, g_str_equal);  
   
     /* memory cache for most recently used tiles */  
     priv->tile_cache = g_hash_table_new_full (g_str_hash, g_str_equal,  
                                               g_free, (GDestroyNotify)cached_tile_free);  
     priv->max_tile_cache_size = 20;  
   
     gtk_widget_add_events (GTK_WIDGET (object),  
                            GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |  
                            GDK_POINTER_MOTION_MASK |  
                            GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK);  
     GTK_WIDGET_SET_FLAGS (object, GTK_CAN_FOCUS);  
   
     g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_MASK, my_log_handler, NULL);  
 }  
   
 #ifndef G_CHECKSUM_MD5  
 /* simple hash algorithm hack if md5 is not present */  
 static char *simple_hash(char *str) {  
     union {  
         char str[4];  
         gulong val;  
     } hash = { .val = 0x55555555 };  
   
     while(*str) {  
         hash.str[(int)str & 3] ^= *str;  
         str++;  
     }  
     return g_strdup_printf("%08lX", hash.val);  
 }  
 #endif  
   
 static GObject *  
 osm_gps_map_constructor (GType gtype, guint n_properties, GObjectConstructParam *properties)  
 {  
     GObject *object;  
     OsmGpsMapPrivate *priv;  
     OsmGpsMap *map;  
     const char *uri;  
   
     //Always chain up to the parent constructor  
     object = G_OBJECT_CLASS(osm_gps_map_parent_class)->constructor(gtype, n_properties, properties);  
     map = OSM_GPS_MAP(object);  
     priv = OSM_GPS_MAP_PRIVATE(object);  
   
     //user can specify a map source ID, or a repo URI as the map source  
     uri = osm_gps_map_source_get_repo_uri(OSM_GPS_MAP_SOURCE_NULL);  
     if ( (priv->map_source == 0) || (strcmp(priv->repo_uri, uri) == 0) ) {  
         g_debug("Using null source");  
         priv->map_source = OSM_GPS_MAP_SOURCE_NULL;  
   
         priv->null_tile = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, 256, 256);  
         gdk_pixbuf_fill(priv->null_tile, 0xcccccc00);  
     }  
     else if (priv->map_source >= 0) {  
         //check if the source given is valid  
         uri = osm_gps_map_source_get_repo_uri(priv->map_source);  
         if (uri) {  
             g_debug("Setting map source from ID");  
             g_free(priv->repo_uri);  
   
             priv->repo_uri = g_strdup(uri);  
             priv->image_format = g_strdup(  
                 osm_gps_map_source_get_image_format(priv->map_source));  
             priv->max_zoom = osm_gps_map_source_get_max_zoom(priv->map_source);  
             priv->min_zoom = osm_gps_map_source_get_min_zoom(priv->map_source);  
         }  
     }  
   
     if (!priv->cache_dir_is_full_path) {  
 #ifdef G_CHECKSUM_MD5  
         char *md5 = g_compute_checksum_for_string (G_CHECKSUM_MD5, priv->repo_uri, -1);  
 #else  
         char *md5 = simple_hash(priv->repo_uri);  
 #endif  
   
         if (priv->cache_dir) {  
             char *old = priv->cache_dir;  
             //the new cachedir is the given cache dir + the md5 of the repo_uri  
             priv->cache_dir = g_strdup_printf("%s%c%s", old, G_DIR_SEPARATOR, md5);  
             g_debug("Adjusting cache dir %s -> %s", old, priv->cache_dir);  
             g_free(old);  
         } else {  
             //the new cachedir is the current dir + the md5 of the repo_uri  
             priv->cache_dir = g_strdup(md5);  
         }  
   
         g_free(md5);  
     }  
   
     inspect_map_uri(map);  
   
     return object;  
 }  
   
 static void  
 osm_gps_map_dispose (GObject *object)  
 {  
     OsmGpsMap *map = OSM_GPS_MAP(object);  
     OsmGpsMapPrivate *priv = map->priv;  
   
     if (priv->is_disposed)  
         return;  
   
     priv->is_disposed = TRUE;  
   
     soup_session_abort(priv->soup_session);  
     g_object_unref(priv->soup_session);  
   
     g_hash_table_destroy(priv->tile_queue);  
     g_hash_table_destroy(priv->missing_tiles);  
     g_hash_table_destroy(priv->tile_cache);  
   
     osm_gps_map_free_images(map);  
   
     if(priv->pixmap)  
         g_object_unref (priv->pixmap);  
   
     if (priv->null_tile)  
         g_object_unref (priv->null_tile);  
   
     if(priv->gc_map)  
         g_object_unref(priv->gc_map);  
   
     if (priv->idle_map_redraw != 0)  
         g_source_remove (priv->idle_map_redraw);  
   
     g_free(priv->gps);  
   
 #ifdef ENABLE_BALLOON  
     g_free(priv->balloon.coo);  
 #endif  
   
 #ifdef ENABLE_OSD  
     if (priv->osd.backup)  
         g_object_unref(priv->osd.backup);  
   
     if (priv->osd.overlay)  
          cairo_surface_destroy(priv->osd.overlay);  
 #endif  
   
     G_OBJECT_CLASS (osm_gps_map_parent_class)->dispose (object);  
 }  
   
 static void  
 osm_gps_map_finalize (GObject *object)  
 {  
     OsmGpsMap *map = OSM_GPS_MAP(object);  
     OsmGpsMapPrivate *priv = map->priv;  
   
     g_free(priv->cache_dir);  
     g_free(priv->repo_uri);  
     g_free(priv->image_format);  
   
     osm_gps_map_free_trip(map);  
     osm_gps_map_free_tracks(map);  
   
     G_OBJECT_CLASS (osm_gps_map_parent_class)->finalize (object);  
 }  
   
 static void  
 osm_gps_map_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)  
 {  
     g_return_if_fail (OSM_IS_GPS_MAP (object));  
     OsmGpsMap *map = OSM_GPS_MAP(object);  
     OsmGpsMapPrivate *priv = map->priv;  
   
     switch (prop_id)  
     {  
         case PROP_AUTO_CENTER:  
             priv->map_auto_center = g_value_get_boolean (value);  
             break;  
         case PROP_RECORD_TRIP_HISTORY:  
             priv->record_trip_history = g_value_get_boolean (value);  
             break;  
         case PROP_SHOW_TRIP_HISTORY:  
             priv->show_trip_history = g_value_get_boolean (value);  
             break;  
         case PROP_AUTO_DOWNLOAD:  
             priv->map_auto_download = g_value_get_boolean (value);  
             break;  
         case PROP_REPO_URI:  
             priv->repo_uri = g_value_dup_string (value);  
             break;  
         case PROP_PROXY_URI:  
             if ( g_value_get_string(value) ) {  
                 priv->proxy_uri = g_value_dup_string (value);  
                 g_debug("Setting proxy server: %s", priv->proxy_uri);  
   
 #ifndef LIBSOUP22  
                 GValue val = {0};  
   
                 SoupURI* uri = soup_uri_new(priv->proxy_uri);  
                 g_value_init(&val, SOUP_TYPE_URI);  
                 g_value_take_boxed(&val, uri);  
   
                 g_object_set_property(G_OBJECT(priv->soup_session),SOUP_SESSION_PROXY_URI,&val);  
878  #else  #else
                 SoupUri* uri = soup_uri_new(priv->proxy_uri);  
                 g_object_set(G_OBJECT(priv->soup_session), SOUP_SESSION_PROXY_URI, uri, NULL);  
 #endif  
             } else  
                 priv->proxy_uri = NULL;  
   
             break;  
         case PROP_TILE_CACHE_DIR:  
             if ( g_value_get_string(value) )  
                 priv->cache_dir = g_value_dup_string (value);  
             break;  
         case PROP_TILE_CACHE_DIR_IS_FULL_PATH:  
             priv->cache_dir_is_full_path = g_value_get_boolean (value);  
             break;  
         case PROP_ZOOM:  
             priv->map_zoom = g_value_get_int (value);  
             break;  
         case PROP_MAX_ZOOM:  
             priv->max_zoom = g_value_get_int (value);  
             break;  
         case PROP_MIN_ZOOM:  
             priv->min_zoom = g_value_get_int (value);  
             break;  
         case PROP_MAP_X:  
             priv->map_x = g_value_get_int (value);  
             priv->center_coord_set = FALSE;  
             break;  
         case PROP_MAP_Y:  
             priv->map_y = g_value_get_int (value);  
             priv->center_coord_set = FALSE;  
             break;  
         case PROP_GPS_TRACK_WIDTH:  
             priv->ui_gps_track_width = g_value_get_int (value);  
             break;  
         case PROP_GPS_POINT_R1:  
             priv->ui_gps_point_inner_radius = g_value_get_int (value);  
             break;  
         case PROP_GPS_POINT_R2:  
             priv->ui_gps_point_outer_radius = g_value_get_int (value);  
             break;  
         case PROP_MAP_SOURCE:  
             priv->map_source = g_value_get_int (value);  
             break;  
         case PROP_IMAGE_FORMAT:  
             priv->image_format = g_value_dup_string (value);  
             break;  
         default:  
             G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);  
             break;  
     }  
 }  
   
 static void  
 osm_gps_map_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)  
 {  
     g_return_if_fail (OSM_IS_GPS_MAP (object));  
     float lat,lon;  
     OsmGpsMap *map = OSM_GPS_MAP(object);  
     OsmGpsMapPrivate *priv = map->priv;  
   
     switch (prop_id)  
     {  
         case PROP_AUTO_CENTER:  
             g_value_set_boolean(value, priv->map_auto_center);  
             break;  
         case PROP_RECORD_TRIP_HISTORY:  
             g_value_set_boolean(value, priv->record_trip_history);  
             break;  
         case PROP_SHOW_TRIP_HISTORY:  
             g_value_set_boolean(value, priv->show_trip_history);  
             break;  
         case PROP_AUTO_DOWNLOAD:  
             g_value_set_boolean(value, priv->map_auto_download);  
             break;  
         case PROP_REPO_URI:  
             g_value_set_string(value, priv->repo_uri);  
             break;  
         case PROP_PROXY_URI:  
             g_value_set_string(value, priv->proxy_uri);  
             break;  
         case PROP_TILE_CACHE_DIR:  
             g_value_set_string(value, priv->cache_dir);  
             break;  
         case PROP_TILE_CACHE_DIR_IS_FULL_PATH:  
             g_value_set_boolean(value, priv->cache_dir_is_full_path);  
             break;  
         case PROP_ZOOM:  
             g_value_set_int(value, priv->map_zoom);  
             break;  
         case PROP_MAX_ZOOM:  
             g_value_set_int(value, priv->max_zoom);  
             break;  
         case PROP_MIN_ZOOM:  
             g_value_set_int(value, priv->min_zoom);  
             break;  
         case PROP_LATITUDE:  
             lat = pixel2lat(priv->map_zoom,  
                             priv->map_y + (GTK_WIDGET(map)->allocation.height / 2));  
             g_value_set_float(value, rad2deg(lat));  
             break;  
         case PROP_LONGITUDE:  
             lon = pixel2lon(priv->map_zoom,  
                             priv->map_x + (GTK_WIDGET(map)->allocation.width / 2));  
             g_value_set_float(value, rad2deg(lon));  
             break;  
         case PROP_MAP_X:  
             g_value_set_int(value, priv->map_x);  
             break;  
         case PROP_MAP_Y:  
             g_value_set_int(value, priv->map_y);  
             break;  
         case PROP_TILES_QUEUED:  
             g_value_set_int(value, g_hash_table_size(priv->tile_queue));  
             break;  
         case PROP_GPS_TRACK_WIDTH:  
             g_value_set_int(value, priv->ui_gps_track_width);  
             break;  
         case PROP_GPS_POINT_R1:  
             g_value_set_int(value, priv->ui_gps_point_inner_radius);  
             break;  
         case PROP_GPS_POINT_R2:  
             g_value_set_int(value, priv->ui_gps_point_outer_radius);  
             break;  
         case PROP_MAP_SOURCE:  
             g_value_set_int(value, priv->map_source);  
             break;  
         case PROP_IMAGE_FORMAT:  
             g_value_set_string(value, priv->image_format);  
             break;  
         default:  
             G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);  
             break;  
     }  
 }  
   
 static gboolean  
 osm_gps_map_scroll_event (GtkWidget *widget, GdkEventScroll  *event)  
 {  
     OsmGpsMap *map = OSM_GPS_MAP(widget);  
     OsmGpsMapPrivate *priv = map->priv;  
   
     if (event->direction == GDK_SCROLL_UP)  
     {  
         osm_gps_map_set_zoom(map, priv->map_zoom+1);  
     }  
     else  
     {  
         osm_gps_map_set_zoom(map, priv->map_zoom-1);  
     }  
   
     return FALSE;  
 }  
   
 static gboolean  
 osm_gps_map_button_press (GtkWidget *widget, GdkEventButton *event)  
 {  
     OsmGpsMapPrivate *priv = OSM_GPS_MAP_PRIVATE(widget);  
   
 #ifdef ENABLE_BALLOON  
     /* don't drag if the user clicked within the balloon */  
     if (osm_gps_map_in_balloon(priv,  
                    event->x + EXTRA_BORDER,  
                    event->y + EXTRA_BORDER))  
     {  
         priv->drag_counter = -1;  
         return FALSE;  
     }  
 #endif  
   
 #ifdef ENABLE_OSD  
     #define SCROLL_STEP 10  
   
     /* pressed inside OSD control? */  
     osd_button_t but = osm_gps_map_osd_check(event->x, event->y);  
     if(but != OSD_NONE)  
     {  
         priv->drag_counter = -1;  
   
         switch(but) {  
         case OSD_GPS:  
             priv->osd.cb(priv->osd.data);  
             break;  
   
         case OSD_UP:  
             priv->map_y -= GTK_WIDGET(widget)->allocation.height/SCROLL_STEP;  
             priv->center_coord_set = FALSE;  
             break;  
   
         case OSD_DOWN:  
             priv->map_y += GTK_WIDGET(widget)->allocation.height/SCROLL_STEP;  
             priv->center_coord_set = FALSE;  
             break;  
   
         case OSD_LEFT:  
             priv->map_x -= GTK_WIDGET(widget)->allocation.width/SCROLL_STEP;  
             priv->center_coord_set = FALSE;  
             break;  
   
         case OSD_RIGHT:  
             priv->map_x += GTK_WIDGET(widget)->allocation.width/SCROLL_STEP;  
             priv->center_coord_set = FALSE;  
             break;  
   
         case OSD_IN:  
             osm_gps_map_set_zoom(OSM_GPS_MAP(widget), priv->map_zoom+1);  
             break;  
   
         case OSD_OUT:  
             osm_gps_map_set_zoom(OSM_GPS_MAP(widget), priv->map_zoom-1);  
             break;  
   
         default:  
             break;  
         }  
   
         osm_gps_map_map_redraw_idle(OSM_GPS_MAP(widget));  
   
         return FALSE;  
     }  
 #endif  
   
     priv->drag_counter = 0;  
     priv->drag_start_mouse_x = (int) event->x;  
     priv->drag_start_mouse_y = (int) event->y;  
     priv->drag_start_map_x = priv->map_x;  
     priv->drag_start_map_y = priv->map_y;  
   
     return FALSE;  
 }  
   
 static gboolean  
 osm_gps_map_button_release (GtkWidget *widget, GdkEventButton *event)  
 {  
     OsmGpsMapPrivate *priv = OSM_GPS_MAP_PRIVATE(widget);  
   
 #ifdef ENABLE_BALLOON  
     /* released inside the balloon? */  
     if (osm_gps_map_in_balloon(priv,  
                    event->x + EXTRA_BORDER,  
                    event->y + EXTRA_BORDER))  
     {  
         osm_gps_map_handle_balloon_click(OSM_GPS_MAP(widget),  
              event->x - priv->balloon.rect.x + EXTRA_BORDER,  
              event->y - priv->balloon.rect.y + EXTRA_BORDER);  
     }  
 #endif  
   
     if (priv->dragging)  
     {  
         priv->dragging = FALSE;  
   
         priv->map_x = priv->drag_start_map_x;  
         priv->map_y = priv->drag_start_map_y;  
   
         priv->map_x += (priv->drag_start_mouse_x - (int) event->x);  
         priv->map_y += (priv->drag_start_mouse_y - (int) event->y);  
   
         priv->center_coord_set = FALSE;  
   
         osm_gps_map_map_redraw_idle(OSM_GPS_MAP(widget));  
     }  
   
     priv->drag_mouse_dx = 0;  
     priv->drag_mouse_dy = 0;  
     priv->drag_counter = -1;  
   
     return FALSE;  
 }  
   
 static gboolean  
 osm_gps_map_expose (GtkWidget *widget, GdkEventExpose  *event);  
   
 static gboolean  
 osm_gps_map_motion_notify (GtkWidget *widget, GdkEventMotion  *event)  
 {  
     int x, y;  
     GdkModifierType state;  
     OsmGpsMapPrivate *priv = OSM_GPS_MAP_PRIVATE(widget);  
   
     if (event->is_hint)  
         gdk_window_get_pointer (event->window, &x, &y, &state);  
     else  
     {  
         x = event->x;  
         y = event->y;  
         state = event->state;  
     }  
   
     // are we being dragged  
     if (!(state & GDK_BUTTON1_MASK))  
         return FALSE;  
   
     if (priv->drag_counter < 0)  
         return FALSE;  
   
     priv->drag_counter++;  
   
     // we havent dragged more than 6 pixels  
     if (priv->drag_counter < 6)  
         return FALSE;  
   
 #ifdef USE_MAEMO  
     /* reduce update frequency on maemo to keep screen update fluid */  
     static guint32 last_time = 0;  
   
     if(event->time - last_time < 100) return FALSE;  
     last_time = event->time;  
 #endif  
   
     priv->dragging = TRUE;  
   
     if (priv->map_auto_center)  
         g_object_set(G_OBJECT(widget), "auto-center", FALSE, NULL);  
   
     priv->drag_mouse_dx = x - priv->drag_start_mouse_x;  
     priv->drag_mouse_dy = y - priv->drag_start_mouse_y;  
   
 #ifdef ENABLE_OSD  
     /* undo OSD */  
     osm_gps_map_osd_restore (OSM_GPS_MAP(widget));  
   
     /* draw new OSD */  
     osm_gps_map_osd_draw_controls (OSM_GPS_MAP(widget),  
                                    -priv->drag_mouse_dx,  
                                    -priv->drag_mouse_dy);  
 #endif  
   
     osm_gps_map_expose (widget, NULL);  
   
   
     return FALSE;  
 }  
   
 static gboolean  
 osm_gps_map_configure (GtkWidget *widget, GdkEventConfigure *event)  
 {  
     OsmGpsMapPrivate *priv = OSM_GPS_MAP_PRIVATE(widget);  
   
     /* create pixmap */  
     if (priv->pixmap)  
         g_object_unref (priv->pixmap);  
   
     priv->pixmap = gdk_pixmap_new (  
                                    widget->window,  
                                    widget->allocation.width + EXTRA_BORDER * 2,  
                                    widget->allocation.height + EXTRA_BORDER * 2,  
                                    -1);  
   
     /* and gc, used for clipping (I think......) */  
     if(priv->gc_map)  
         g_object_unref(priv->gc_map);  
   
     priv->gc_map = gdk_gc_new(priv->pixmap);  
   
     osm_gps_map_map_redraw(OSM_GPS_MAP(widget));  
   
879      return FALSE;      return FALSE;
 }  
   
 static gboolean  
 osm_gps_map_expose (GtkWidget *widget, GdkEventExpose  *event)  
 {  
     OsmGpsMapPrivate *priv = OSM_GPS_MAP_PRIVATE(widget);  
   
     gdk_draw_drawable (  
                        widget->window,  
                        widget->style->fg_gc[GTK_WIDGET_STATE (widget)],  
                        priv->pixmap,  
                        0,0,  
                        priv->drag_mouse_dx - EXTRA_BORDER,  
                        priv->drag_mouse_dy - EXTRA_BORDER,  
                        -1,-1);  
   
     //Paint white outside of the map if dragging. Its less  
     //ugly than painting the corrupted map  
     if(priv->drag_mouse_dx>EXTRA_BORDER) {  
         gdk_draw_rectangle (  
                             widget->window,  
                             widget->style->white_gc,  
                             TRUE,  
                             0, 0,  
                             priv->drag_mouse_dx - EXTRA_BORDER,  
                             widget->allocation.height);  
     }  
     else if (-priv->drag_mouse_dx > EXTRA_BORDER)  
     {  
         gdk_draw_rectangle (  
                             widget->window,  
                             widget->style->white_gc,  
                             TRUE,  
                             priv->drag_mouse_dx + widget->allocation.width + EXTRA_BORDER, 0,  
                             -priv->drag_mouse_dx - EXTRA_BORDER,  
                             widget->allocation.height);  
     }  
   
     if (priv->drag_mouse_dy>EXTRA_BORDER) {  
         gdk_draw_rectangle (  
                             widget->window,  
                             widget->style->white_gc,  
                             TRUE,  
                             0, 0,  
                             widget->allocation.width,  
                             priv->drag_mouse_dy - EXTRA_BORDER);  
     }  
     else if (-priv->drag_mouse_dy > EXTRA_BORDER)  
     {  
         gdk_draw_rectangle (  
                             widget->window,  
                             widget->style->white_gc,  
                             TRUE,  
                             0, priv->drag_mouse_dy + widget->allocation.height + EXTRA_BORDER,  
                             widget->allocation.width,  
                             -priv->drag_mouse_dy - EXTRA_BORDER);  
     }  
 #if 0  
     if(!priv->dragging)  
         gdk_draw_drawable (  
                        widget->window,  
                        widget->style->fg_gc[GTK_WIDGET_STATE (widget)],  
                        priv->pixmap,  
                        event->area.x + EXTRA_BORDER,  
                        event->area.y + EXTRA_BORDER,  
                        event->area.x, event->area.y,  
                        event->area.width, event->area.height);  
880  #endif  #endif
     return FALSE;  
 }  
   
 static void  
 osm_gps_map_class_init (OsmGpsMapClass *klass)  
 {  
     GObjectClass* object_class = G_OBJECT_CLASS (klass);  
     GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);  
   
     g_type_class_add_private (klass, sizeof (OsmGpsMapPrivate));  
   
     object_class->dispose = osm_gps_map_dispose;  
     object_class->finalize = osm_gps_map_finalize;  
     object_class->constructor = osm_gps_map_constructor;  
     object_class->set_property = osm_gps_map_set_property;  
     object_class->get_property = osm_gps_map_get_property;  
   
     widget_class->expose_event = osm_gps_map_expose;  
     widget_class->configure_event = osm_gps_map_configure;  
     widget_class->button_press_event = osm_gps_map_button_press;  
     widget_class->button_release_event = osm_gps_map_button_release;  
     widget_class->motion_notify_event = osm_gps_map_motion_notify;  
     widget_class->scroll_event = osm_gps_map_scroll_event;  
   
     g_object_class_install_property (object_class,  
                                      PROP_AUTO_CENTER,  
                                      g_param_spec_boolean ("auto-center",  
                                                            "auto center",  
                                                            "map auto center",  
                                                            TRUE,  
                                                            G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_RECORD_TRIP_HISTORY,  
                                      g_param_spec_boolean ("record-trip-history",  
                                                            "record trip history",  
                                                            "should all gps points be recorded in a trip history",  
                                                            TRUE,  
                                                            G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_SHOW_TRIP_HISTORY,  
                                      g_param_spec_boolean ("show-trip-history",  
                                                            "show trip history",  
                                                            "should the recorded trip history be shown on the map",  
                                                            TRUE,  
                                                            G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_AUTO_DOWNLOAD,  
                                      g_param_spec_boolean ("auto-download",  
                                                            "auto download",  
                                                            "map auto download",  
                                                            TRUE,  
                                                            G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_REPO_URI,  
                                      g_param_spec_string ("repo-uri",  
                                                           "repo uri",  
                                                           "map source tile repository uri",  
                                                           OSM_REPO_URI,  
                                                           G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
      g_object_class_install_property (object_class,  
                                      PROP_PROXY_URI,  
                                      g_param_spec_string ("proxy-uri",  
                                                           "proxy uri",  
                                                           "http proxy uri on NULL",  
                                                           NULL,  
                                                           G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_TILE_CACHE_DIR,  
                                      g_param_spec_string ("tile-cache",  
                                                           "tile cache",  
                                                           "osm local tile cache dir",  
                                                           NULL,  
                                                           G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_TILE_CACHE_DIR_IS_FULL_PATH,  
                                      g_param_spec_boolean ("tile-cache-is-full-path",  
                                                            "tile cache is full path",  
                                                            "if true, the path passed to tile-cache is interpreted as the full cache path",  
                                                            FALSE,  
                                                            G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_ZOOM,  
                                      g_param_spec_int ("zoom",  
                                                        "zoom",  
                                                        "zoom level",  
                                                        MIN_ZOOM, /* minimum property value */  
                                                        MAX_ZOOM, /* maximum property value */  
                                                        3,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_MAX_ZOOM,  
                                      g_param_spec_int ("max-zoom",  
                                                        "max zoom",  
                                                        "maximum zoom level",  
                                                        MIN_ZOOM, /* minimum property value */  
                                                        MAX_ZOOM, /* maximum property value */  
                                                        OSM_MAX_ZOOM,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_MIN_ZOOM,  
                                      g_param_spec_int ("min-zoom",  
                                                        "min zoom",  
                                                        "minimum zoom level",  
                                                        MIN_ZOOM, /* minimum property value */  
                                                        MAX_ZOOM, /* maximum property value */  
                                                        OSM_MIN_ZOOM,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_LATITUDE,  
                                      g_param_spec_float ("latitude",  
                                                          "latitude",  
                                                          "latitude in degrees",  
                                                          -90.0, /* minimum property value */  
                                                          90.0, /* maximum property value */  
                                                          0,  
                                                          G_PARAM_READABLE));  
   
     g_object_class_install_property (object_class,  
                                      PROP_LONGITUDE,  
                                      g_param_spec_float ("longitude",  
                                                          "longitude",  
                                                          "longitude in degrees",  
                                                          -180.0, /* minimum property value */  
                                                          180.0, /* maximum property value */  
                                                          0,  
                                                          G_PARAM_READABLE));  
   
     g_object_class_install_property (object_class,  
                                      PROP_MAP_X,  
                                      g_param_spec_int ("map-x",  
                                                        "map-x",  
                                                        "initial map x location",  
                                                        G_MININT, /* minimum property value */  
                                                        G_MAXINT, /* maximum property value */  
                                                        890,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_MAP_Y,  
                                      g_param_spec_int ("map-y",  
                                                        "map-y",  
                                                        "initial map y location",  
                                                        G_MININT, /* minimum property value */  
                                                        G_MAXINT, /* maximum property value */  
                                                        515,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_TILES_QUEUED,  
                                      g_param_spec_int ("tiles-queued",  
                                                        "tiles-queued",  
                                                        "number of tiles currently waiting to download",  
                                                        G_MININT, /* minimum property value */  
                                                        G_MAXINT, /* maximum property value */  
                                                        0,  
                                                        G_PARAM_READABLE));  
   
     g_object_class_install_property (object_class,  
                                      PROP_GPS_TRACK_WIDTH,  
                                      g_param_spec_int ("gps-track-width",  
                                                        "gps-track-width",  
                                                        "width of the lines drawn for the gps track",  
                                                        1,           /* minimum property value */  
                                                        G_MAXINT,    /* maximum property value */  
                                                        4,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_GPS_POINT_R1,  
                                      g_param_spec_int ("gps-track-point-radius",  
                                                        "gps-track-point-radius",  
                                                        "radius of the gps point inner circle",  
                                                        0,           /* minimum property value */  
                                                        G_MAXINT,    /* maximum property value */  
                                                        10,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_GPS_POINT_R2,  
                                      g_param_spec_int ("gps-track-highlight-radius",  
                                                        "gps-track-highlight-radius",  
                                                        "radius of the gps point highlight circle",  
                                                        0,           /* minimum property value */  
                                                        G_MAXINT,    /* maximum property value */  
                                                        20,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));  
   
     g_object_class_install_property (object_class,  
                                      PROP_MAP_SOURCE,  
                                      g_param_spec_int ("map-source",  
                                                        "map source",  
                                                        "map source ID",  
                                                        -1,           /* minimum property value */  
                                                        G_MAXINT,    /* maximum property value */  
                                                        -1,  
                                                        G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
   
     g_object_class_install_property (object_class,  
                                      PROP_IMAGE_FORMAT,  
                                      g_param_spec_string ("image-format",  
                                                           "image format",  
                                                           "map source tile repository image format (jpg, png)",  
                                                           OSM_IMAGE_FORMAT,  
                                                           G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));  
 }  
   
 const char*  
 osm_gps_map_source_get_friendly_name(OsmGpsMapSource_t source)  
 {  
     switch(source)  
     {  
         case OSM_GPS_MAP_SOURCE_NULL:  
             return "None";  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP:  
             return "OpenStreetMap";  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP_RENDERER:  
             return "OpenStreetMap Renderer";  
         case OSM_GPS_MAP_SOURCE_OPENAERIALMAP:  
             return "OpenAerialMap";  
         case OSM_GPS_MAP_SOURCE_MAPS_FOR_FREE:  
             return "Maps-For-Free";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_STREET:  
             return "Google Maps";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_SATELLITE:  
             return "Google Satellite";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_HYBRID:  
             return "Google Hybrid";  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_STREET:  
             return "Virtual Earth";  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_SATELLITE:  
             return "Virtual Earth Satellite";  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID:  
             return "Virtual Earth Hybrid";  
         case OSM_GPS_MAP_SOURCE_YAHOO_STREET:  
             return "Yahoo Maps";  
         case OSM_GPS_MAP_SOURCE_YAHOO_SATELLITE:  
             return "Yahoo Satellite";  
         case OSM_GPS_MAP_SOURCE_YAHOO_HYBRID:  
             return "Yahoo Hybrid";  
         default:  
             return NULL;  
     }  
     return NULL;  
 }  
   
 //http://www.internettablettalk.com/forums/showthread.php?t=5209  
 //https://garage.maemo.org/plugins/scmsvn/viewcvs.php/trunk/src/maps.c?root=maemo-mapper&view=markup  
 //http://www.ponies.me.uk/maps/GoogleTileUtils.java  
 //http://www.mgmaps.com/cache/MapTileCacher.perl  
 const char*  
 osm_gps_map_source_get_repo_uri(OsmGpsMapSource_t source)  
 {  
     switch(source)  
     {  
         case OSM_GPS_MAP_SOURCE_NULL:  
             return "none://";  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP:  
             return OSM_REPO_URI;  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP_RENDERER:  
             return "http://tah.openstreetmap.org/Tiles/tile/#Z/#X/#Y.png";  
         case OSM_GPS_MAP_SOURCE_OPENAERIALMAP:  
             return "http://tile.openaerialmap.org/tiles/1.0.0/openaerialmap-900913/#Z/#X/#Y.jpg";  
         case OSM_GPS_MAP_SOURCE_MAPS_FOR_FREE:  
             return "http://maps-for-free.com/layer/relief/z#Z/row#Y/#Z_#X-#Y.jpg";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_STREET:  
             return "http://mt#R.google.com/vt/v=w2.97&x=#X&y=#Y&z=#Z";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_SATELLITE:  
             return "http://khm#R.google.com/kh?n=404&v=3&t=#Q";  
         case OSM_GPS_MAP_SOURCE_GOOGLE_HYBRID:  
             return NULL; /* No longer working  "http://mt#R.google.com/mt?n=404&v=w2t.99&x=#X&y=#Y&zoom=#S" */  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_STREET:  
             return "http://a#R.ortho.tiles.virtualearth.net/tiles/r#W.jpeg?g=50";  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_SATELLITE:  
             return "http://a#R.ortho.tiles.virtualearth.net/tiles/a#W.jpeg?g=50";  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID:  
             return "http://a#R.ortho.tiles.virtualearth.net/tiles/h#W.jpeg?g=50";  
         case OSM_GPS_MAP_SOURCE_YAHOO_STREET:  
         case OSM_GPS_MAP_SOURCE_YAHOO_SATELLITE:  
         case OSM_GPS_MAP_SOURCE_YAHOO_HYBRID:  
             /* TODO: Implement signed Y, aka U  
              * http://us.maps3.yimg.com/aerial.maps.yimg.com/ximg?v=1.7&t=a&s=256&x=%d&y=%-d&z=%d  
              *  x = tilex,  
              *  y = (1 << (MAX_ZOOM - zoom)) - tiley - 1,  
              *  z = zoom - (MAX_ZOOM - 17));  
              */  
             return NULL;  
         default:  
             return NULL;  
     }  
     return NULL;  
 }  
   
 const char *  
 osm_gps_map_source_get_image_format(OsmGpsMapSource_t source)  
 {  
     switch(source) {  
         case OSM_GPS_MAP_SOURCE_NULL:  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP:  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP_RENDERER:  
             return "png";  
         case OSM_GPS_MAP_SOURCE_OPENAERIALMAP:  
         case OSM_GPS_MAP_SOURCE_GOOGLE_STREET:  
         case OSM_GPS_MAP_SOURCE_GOOGLE_HYBRID:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_STREET:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_SATELLITE:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID:  
         case OSM_GPS_MAP_SOURCE_YAHOO_STREET:  
         case OSM_GPS_MAP_SOURCE_YAHOO_SATELLITE:  
         case OSM_GPS_MAP_SOURCE_YAHOO_HYBRID:  
         case OSM_GPS_MAP_SOURCE_MAPS_FOR_FREE:  
         case OSM_GPS_MAP_SOURCE_GOOGLE_SATELLITE:  
             return "jpg";  
         default:  
             return "bin";  
     }  
     return "bin";  
 }  
   
   
 int  
 osm_gps_map_source_get_min_zoom(OsmGpsMapSource_t source)  
 {  
     return 1;  
 }  
   
 int  
 osm_gps_map_source_get_max_zoom(OsmGpsMapSource_t source)  
 {  
     switch(source) {  
         case OSM_GPS_MAP_SOURCE_NULL:  
             return 18;  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP:  
             return OSM_MAX_ZOOM;  
         case OSM_GPS_MAP_SOURCE_OPENSTREETMAP_RENDERER:  
         case OSM_GPS_MAP_SOURCE_OPENAERIALMAP:  
         case OSM_GPS_MAP_SOURCE_GOOGLE_STREET:  
         case OSM_GPS_MAP_SOURCE_GOOGLE_HYBRID:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_STREET:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_SATELLITE:  
         case OSM_GPS_MAP_SOURCE_VIRTUAL_EARTH_HYBRID:  
         case OSM_GPS_MAP_SOURCE_YAHOO_STREET:  
         case OSM_GPS_MAP_SOURCE_YAHOO_SATELLITE:  
         case OSM_GPS_MAP_SOURCE_YAHOO_HYBRID:  
             return 17;  
         case OSM_GPS_MAP_SOURCE_MAPS_FOR_FREE:  
             return 11;  
         case OSM_GPS_MAP_SOURCE_GOOGLE_SATELLITE:  
             return 18;  
         default:  
             return 17;  
     }  
     return 17;  
 }  
   
 void  
 osm_gps_map_download_maps (OsmGpsMap *map, coord_t *pt1, coord_t *pt2, int zoom_start, int zoom_end)  
 {  
     int i,j,zoom,num_tiles;  
     OsmGpsMapPrivate *priv = map->priv;  
   
     if (pt1 && pt2)  
     {  
         gchar *filename;  
         num_tiles = 0;  
         zoom_end = CLAMP(zoom_end, priv->min_zoom, priv->max_zoom);  
         g_debug("Download maps: z:%d->%d",zoom_start, zoom_end);  
   
         for(zoom=zoom_start; zoom<=zoom_end; zoom++)  
         {  
             int x1,y1,x2,y2;  
   
             x1 = (int)floor((float)lon2pixel(zoom, pt1->rlon) / (float)TILESIZE);  
             y1 = (int)floor((float)lat2pixel(zoom, pt1->rlat) / (float)TILESIZE);  
   
             x2 = (int)floor((float)lon2pixel(zoom, pt2->rlon) / (float)TILESIZE);  
             y2 = (int)floor((float)lat2pixel(zoom, pt2->rlat) / (float)TILESIZE);  
   
             // loop x1-x2  
             for(i=x1; i<=x2; i++)  
             {  
                 // loop y1 - y2  
                 for(j=y1; j<=y2; j++)  
                 {  
                     // x = i, y = j  
                     filename = g_strdup_printf("%s%c%d%c%d%c%d.%s",  
                                     priv->cache_dir, G_DIR_SEPARATOR,  
                                     zoom, G_DIR_SEPARATOR,  
                                     i, G_DIR_SEPARATOR,  
                                     j,  
                                     priv->image_format);  
                     if (!g_file_test(filename, G_FILE_TEST_EXISTS))  
                     {  
                         osm_gps_map_download_tile(map, zoom, i, j, FALSE);  
                         num_tiles++;  
                     }  
                     g_free(filename);  
                 }  
             }  
             g_debug("DL @Z:%d = %d tiles",zoom,num_tiles);  
         }  
     }  
 }  
   
 void  
 osm_gps_map_get_bbox (OsmGpsMap *map, coord_t *pt1, coord_t *pt2)  
 {  
     OsmGpsMapPrivate *priv = map->priv;  
   
     if (pt1 && pt2) {  
         pt1->rlat = pixel2lat(priv->map_zoom, priv->map_y);  
         pt1->rlon = pixel2lon(priv->map_zoom, priv->map_x);  
         pt2->rlat = pixel2lat(priv->map_zoom, priv->map_y + GTK_WIDGET(map)->allocation.height);  
         pt2->rlon = pixel2lon(priv->map_zoom, priv->map_x + GTK_WIDGET(map)->allocation.width);  
   
         g_debug("BBOX: %f %f %f %f", pt1->rlat, pt1->rlon, pt2->rlat, pt2->rlon);  
     }  
 }  
   
 void  
 osm_gps_map_set_mapcenter (OsmGpsMap *map, float latitude, float longitude, int zoom)  
 {  
     osm_gps_map_set_center (map, latitude, longitude);  
     osm_gps_map_set_zoom (map, zoom);  
 }  
   
 void  
 osm_gps_map_set_center (OsmGpsMap *map, float latitude, float longitude)  
 {  
     int pixel_x, pixel_y;  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->center_rlat = deg2rad(latitude);  
     priv->center_rlon = deg2rad(longitude);  
     priv->center_coord_set = TRUE;  
   
     // pixel_x,y, offsets  
     pixel_x = lon2pixel(priv->map_zoom, priv->center_rlon);  
     pixel_y = lat2pixel(priv->map_zoom, priv->center_rlat);  
   
     priv->map_x = pixel_x - GTK_WIDGET(map)->allocation.width/2;  
     priv->map_y = pixel_y - GTK_WIDGET(map)->allocation.height/2;  
   
     osm_gps_map_map_redraw_idle(map);  
 }  
   
 int  
 osm_gps_map_set_zoom (OsmGpsMap *map, int zoom)  
 {  
     int zoom_old;  
     double factor = 0.0;  
     int width_center, height_center;  
     OsmGpsMapPrivate *priv;  
   
     g_return_val_if_fail (OSM_IS_GPS_MAP (map), 0);  
     priv = map->priv;  
   
     if (zoom != priv->map_zoom)  
     {  
         width_center  = GTK_WIDGET(map)->allocation.width / 2;  
         height_center = GTK_WIDGET(map)->allocation.height / 2;  
   
         zoom_old = priv->map_zoom;  
         //constrain zoom min_zoom -> max_zoom  
         priv->map_zoom = CLAMP(zoom, priv->min_zoom, priv->max_zoom);  
   
         if (priv->center_coord_set)  
         {  
             priv->map_x = lon2pixel(priv->map_zoom, priv->center_rlon) - width_center;  
             priv->map_y = lat2pixel(priv->map_zoom, priv->center_rlat) - height_center;  
         }  
         else  
         {  
             factor = exp(priv->map_zoom * M_LN2)/exp(zoom_old * M_LN2);  
             priv->map_x = ((priv->map_x + width_center) * factor) - width_center;  
             priv->map_y = ((priv->map_y + height_center) * factor) - height_center;  
         }  
   
         g_debug("Zoom changed from %d to %d factor:%f x:%d",  
                 zoom_old, priv->map_zoom, factor, priv->map_x);  
   
         osm_gps_map_map_redraw_idle(map);  
     }  
     return priv->map_zoom;  
 }  
   
 void  
 osm_gps_map_add_track (OsmGpsMap *map, GSList *track)  
 {  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     if (track) {  
         priv->tracks = g_slist_append(priv->tracks, track);  
         osm_gps_map_map_redraw_idle(map);  
     }  
 }  
   
 void  
 osm_gps_map_clear_tracks (OsmGpsMap *map)  
 {  
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
   
     osm_gps_map_free_tracks(map);  
     osm_gps_map_map_redraw_idle(map);  
 }  
   
 void  
 osm_gps_map_add_image (OsmGpsMap *map, float latitude, float longitude, GdkPixbuf *image)  
 {  
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
   
     if (image) {  
         OsmGpsMapPrivate *priv = map->priv;  
         image_t *im;  
   
         //cache w/h for speed, and add image to list  
         im = g_new0(image_t,1);  
         im->w = gdk_pixbuf_get_width(image);  
         im->h = gdk_pixbuf_get_height(image);  
         im->pt.rlat = deg2rad(latitude);  
         im->pt.rlon = deg2rad(longitude);  
   
         g_object_ref(image);  
         im->image = image;  
   
         priv->images = g_slist_append(priv->images, im);  
   
         osm_gps_map_map_redraw_idle(map);  
     }  
 }  
   
 gboolean  
 osm_gps_map_remove_image (OsmGpsMap *map, GdkPixbuf *image)  
 {  
     OsmGpsMapPrivate *priv = map->priv;  
     if (priv->images) {  
         GSList *list;  
         for(list = priv->images; list != NULL; list = list->next)  
         {  
             image_t *im = list->data;  
                 if (im->image == image)  
                 {  
                         priv->images = g_slist_remove_link(priv->images, list);  
                         g_object_unref(im->image);  
                         g_free(im);  
                         osm_gps_map_map_redraw_idle(map);  
                         return TRUE;  
                 }  
         }  
     }  
     return FALSE;  
 }  
   
 void  
 osm_gps_map_clear_images (OsmGpsMap *map)  
 {  
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
   
     osm_gps_map_free_images(map);  
     osm_gps_map_map_redraw_idle(map);  
 }  
   
 void  
 osm_gps_map_osd_speed (OsmGpsMap *map, float speed)  
 {  
     OsmGpsMapPrivate *priv;  
   
     PangoContext        *context = NULL;  
     PangoLayout     *layout  = NULL;  
     PangoFontDescription    *desc    = NULL;  
   
     GdkColor color;  
     GdkGC *gc;  
   
     gchar *buffer;  
     //static int x = 10, y = 10;  
     static int width = 0, height = 0;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     buffer = g_strdup_printf("%.0f", speed);  
   
     /* pango initialisation */  
     context = gtk_widget_get_pango_context (GTK_WIDGET(map));  
     layout  = pango_layout_new (context);  
     desc    = pango_font_description_new();  
   
     pango_font_description_set_size (desc, 40 * PANGO_SCALE);  
     pango_layout_set_font_description (layout, desc);  
     pango_layout_set_text (layout, buffer, strlen(buffer));  
   
     gc = gdk_gc_new (GTK_WIDGET(map)->window);  
   
     color.red = (0 > 50) ? 0xffff : 0;  
     color.green = 0;  
     color.blue = 0;  
   
     gdk_gc_set_rgb_fg_color (gc, &color);  
   
     /* faster / less flicker alternative:*/  
     gdk_draw_drawable (  
                        GTK_WIDGET(map)->window,  
                        GTK_WIDGET(map)->style->fg_gc[GTK_WIDGET_STATE(map)],  
                        priv->pixmap,  
                        0,0,  
                        0,0,  
                        width+10,width+10);  
   
     gdk_draw_layout(GTK_WIDGET(map)->window,  
                     gc,  
                     0, 0,  
                     layout);  
   
     /* set width and height */  
     pango_layout_get_pixel_size(layout, &width, &height);  
   
     g_free(buffer);  
     pango_font_description_free (desc);  
     g_object_unref (layout);  
     g_object_unref (gc);  
 }  
   
 void  
 osm_gps_map_draw_gps (OsmGpsMap *map, float latitude, float longitude, float heading)  
 {  
     int pixel_x, pixel_y;  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->gps->rlat = deg2rad(latitude);  
     priv->gps->rlon = deg2rad(longitude);  
     priv->gps_valid = TRUE;  
   
     // pixel_x,y, offsets  
     pixel_x = lon2pixel(priv->map_zoom, priv->gps->rlon);  
     pixel_y = lat2pixel(priv->map_zoom, priv->gps->rlat);  
   
     //If trip marker add to list of gps points.  
     if (priv->record_trip_history) {  
         coord_t *tp = g_new0(coord_t,1);  
         tp->rlat = priv->gps->rlat;  
         tp->rlon = priv->gps->rlon;  
         priv->trip_history = g_slist_append(priv->trip_history, tp);  
     }  
   
     // dont draw anything if we are dragging  
     if (priv->dragging) {  
         g_debug("Dragging");  
         return;  
     }  
   
     //Automatically center the map if the track approaches the edge  
     if(priv->map_auto_center)   {  
         int x = pixel_x - priv->map_x;  
         int y = pixel_y - priv->map_y;  
         int width = GTK_WIDGET(map)->allocation.width;  
         int height = GTK_WIDGET(map)->allocation.height;  
         if( x < (width/2 - width/8)     || x > (width/2 + width/8)  ||  
             y < (height/2 - height/8)   || y > (height/2 + height/8)) {  
   
             priv->map_x = pixel_x - GTK_WIDGET(map)->allocation.width/2;  
             priv->map_y = pixel_y - GTK_WIDGET(map)->allocation.height/2;  
             priv->center_coord_set = FALSE;  
         }  
     }  
   
     // this redraws the map (including the gps track, and adjusts the  
     // map center if it was changed  
     osm_gps_map_map_redraw_idle(map);  
881  }  }
882    
883  void  static osm_gps_map_osd_t osd_classic = {
884  osm_gps_map_clear_gps (OsmGpsMap *map)      .widget     = NULL,
 {  
     osm_gps_map_free_trip(map);  
     osm_gps_map_map_redraw_idle(map);  
 }  
885    
886  coord_t      .draw       = osd_draw,
887  osm_gps_map_get_co_ordinates (OsmGpsMap *map, int pixel_x, int pixel_y)      .check      = osd_check,
888  {      .render     = osd_render,
889      coord_t coord;      .free       = osd_free,
890      OsmGpsMapPrivate *priv = map->priv;      .busy       = osd_busy,
891    
892      coord.rlat = pixel2lat(priv->map_zoom, priv->map_y + pixel_y);      .cb         = NULL,
893      coord.rlon = pixel2lon(priv->map_zoom, priv->map_x + pixel_x);      .data       = NULL,
     return coord;  
 }  
894    
895  GtkWidget *      .priv       = NULL
896  osm_gps_map_new (void)  };
 {  
     return g_object_new (OSM_TYPE_GPS_MAP, NULL);  
 }  
897    
898    /* this is the only function that's externally visible */
899  void  void
900  osm_gps_map_screen_to_geographic (OsmGpsMap *map, gint pixel_x, gint pixel_y,  osm_gps_map_osd_classic_init(OsmGpsMap *map)
                                   gfloat *latitude, gfloat *longitude)  
901  {  {
902      OsmGpsMapPrivate *priv;      osd_priv_t *priv = osd_classic.priv = g_new0(osd_priv_t, 1);
903    
904      g_return_if_fail (OSM_IS_GPS_MAP (map));      osd_classic.priv = priv;
     priv = map->priv;  
905    
906      if (latitude)      osm_gps_map_register_osd(map, &osd_classic);
         *latitude = rad2deg(pixel2lat(priv->map_zoom, priv->map_y + pixel_y));  
     if (longitude)  
         *longitude = rad2deg(pixel2lon(priv->map_zoom, priv->map_x + pixel_x));  
907  }  }
908    
909  void  #ifdef OSD_GPS_BUTTON
910  osm_gps_map_geographic_to_screen (OsmGpsMap *map,  /* below are osd specific functions which aren't used by osm-gps-map */
911                                    gfloat latitude, gfloat longitude,  /* but instead are to be used by the main application */
912                                    gint *pixel_x, gint *pixel_y)  void osm_gps_map_osd_enable_gps (OsmGpsMap *map, OsmGpsMapOsdCallback cb,
913  {                                   gpointer data) {
914      OsmGpsMapPrivate *priv;      osm_gps_map_osd_t *osd = osm_gps_map_osd_get(map);
915        g_return_if_fail (osd);
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
916    
917      if (pixel_x)      osd->cb = cb;
918          *pixel_x = lon2pixel(priv->map_zoom, deg2rad(longitude)) - priv->map_x;      osd->data = data;
     if (pixel_y)  
         *pixel_y = lat2pixel(priv->map_zoom, deg2rad(latitude)) - priv->map_y;  
 }  
   
 void  
 osm_gps_map_scroll (OsmGpsMap *map, gint dx, gint dy)  
 {  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->center_coord_set = FALSE;  
     priv->map_x += dx;  
     priv->map_y += dy;  
   
     osm_gps_map_map_redraw_idle (map);  
 }  
   
 float  
 osm_gps_map_get_scale(OsmGpsMap *map)  
 {  
     OsmGpsMapPrivate *priv;  
   
     g_return_val_if_fail (OSM_IS_GPS_MAP (map), OSM_NAN);  
     priv = map->priv;  
   
     return osm_gps_map_get_scale_at_point(priv->map_zoom, priv->center_rlat, priv->center_rlon);  
 }  
   
 #ifdef ENABLE_BALLOON  
 void  
 osm_gps_map_draw_balloon (OsmGpsMap *map, float latitude, float longitude,  
                           OsmGpsMapBalloonCallback cb, gpointer data)  
 {  
     OsmGpsMapPrivate *priv;  
   
     /* remove and previously installed balloon */  
     osm_gps_map_clear_balloon (map);  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->balloon.coo->rlat = deg2rad(latitude);  
     priv->balloon.coo->rlon = deg2rad(longitude);  
     priv->balloon.valid = TRUE;  
   
     priv->balloon.cb = cb;  
     priv->balloon.data = data;  
   
     // this redraws the map  
     osm_gps_map_map_redraw_idle(map);  
 }  
   
 void  
 osm_gps_map_clear_balloon (OsmGpsMap *map)  
 {  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->balloon.valid = FALSE;  
   
     osm_gps_map_map_redraw_idle(map);  
 }  
 #endif  
   
 #ifdef ENABLE_OSD  
 void osm_gps_map_osd_enable_gps (OsmGpsMap *map, OsmGpsMapOsdGpsCallback cb, gpointer data) {  
     OsmGpsMapPrivate *priv;  
   
     g_return_if_fail (OSM_IS_GPS_MAP (map));  
     priv = map->priv;  
   
     priv->osd.cb = cb;  
     priv->osd.data = data;  
919    
920      /* this may have changed the state of the gps button */      /* this may have changed the state of the gps button */
921      /* we thus re-render the overlay */      /* we thus re-render the overlay */
922      osm_gps_map_osd_render(priv);      osd->render(osd);
923    
924      osm_gps_map_map_redraw_idle(map);      osm_gps_map_redraw(map);
925  }  }
926  #endif  #endif
927    
928    osd_button_t
929    osm_gps_map_osd_check(OsmGpsMap *map, gint x, gint y) {
930        osm_gps_map_osd_t *osd = osm_gps_map_osd_get(map);
931        g_return_val_if_fail (osd, OSD_NONE);
932    
933        return osd_check(osd, x, y);
934    }

Legend:
Removed from v.70  
changed lines
  Added in v.88