Diff of /trunk/src/config.h

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

revision 89 by harbaum, Tue Sep 1 11:16:30 2009 UTC revision 107 by harbaum, Fri Sep 11 12:16:50 2009 UTC
# Line 48  Line 48 
48  #define USE_CAIRO  #define USE_CAIRO
49  #define ENABLE_OSD  #define ENABLE_OSD
50  #define ENABLE_BALLOON  #define ENABLE_BALLOON
51    #define OSD_SCALE
52    #define OSD_CROSSHAIR
53    
54  #ifdef USE_MAEMO  #ifdef USE_MAEMO
55  #define BIG_BALLOONS  #define BIG_BALLOONS
56  #define BALLOON_AREA_WIDTH       380  #define BALLOON_AREA_WIDTH       380
57  #define BALLOON_AREA_HEIGHT      100  #define BALLOON_AREA_HEIGHT      100
58  #define BALLOON_CORNER_RADIUS     20  #define BALLOON_CORNER_RADIUS     20
59    #define OSD_FONT_SIZE             28
60    #define OSD_DIAMETER         60
61    #define OSD_SCALE_FONT_SIZE  20
62    #define OSD_CROSSHAIR_RADIUS 20
63    
64    /* limit screen refresh while dragging to avoid delays */
65    #define OSM_GPS_MAP_REFRESH  25
66  #endif  #endif
67    
68    #define OSD_COORDINATES
69    #include <libintl.h>
70    #define OSD_COORDINATES_CHR_N  gettext("N")
71    #define OSD_COORDINATES_CHR_S  gettext("S")
72    #define OSD_COORDINATES_CHR_E  gettext("E")
73    #define OSD_COORDINATES_CHR_W  gettext("W")
74    
75  /* only maemo devices up to version 4 have a fullscreen button */  /* only maemo devices up to version 4 have a fullscreen button */
76  #ifdef USE_MAEMO  #ifdef USE_MAEMO
77  #include <hildon/hildon-defines.h>  #include <hildon/hildon-defines.h>
78  #if (MAEMO_VERSION_MAJOR < 5)  #if (MAEMO_VERSION_MAJOR < 5)
79  #define OSM_GPS_MAP_KEY_FULLSCREEN  HILDON_HARDKEY_FULLSCREEN  #define OSM_GPS_MAP_KEY_FULLSCREEN  HILDON_HARDKEY_FULLSCREEN
80  #else  #else
 #define OSD_FONT_SIZE               28  
81  #define OSM_GPS_MAP_KEY_FULLSCREEN  'f'  #define OSM_GPS_MAP_KEY_FULLSCREEN  'f'
82  #endif  #endif
83  #define OSM_GPS_MAP_KEY_ZOOMIN      HILDON_HARDKEY_INCREASE  #define OSM_GPS_MAP_KEY_ZOOMIN      HILDON_HARDKEY_INCREASE
# Line 78  Line 93 
93  #define OSM_GPS_MAP_KEY_LEFT        GDK_Left  #define OSM_GPS_MAP_KEY_LEFT        GDK_Left
94  #define OSM_GPS_MAP_KEY_RIGHT       GDK_Right  #define OSM_GPS_MAP_KEY_RIGHT       GDK_Right
95    
 #ifdef USE_MAEMO  
 /* limit screen refresh while dragging to avoid delays */  
 #define OSM_GPS_MAP_REFRESH  25  
 #define OSD_DIAMETER         60  
 #endif  
   
96  /* specify OSD colors explicitely. Otherwise gtk default */  /* specify OSD colors explicitely. Otherwise gtk default */
97  /* colors are used. fremantle always uses gtk defaults */  /* colors are used. fremantle always uses gtk defaults */
98  #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)  #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)

Legend:
Removed from v.89  
changed lines
  Added in v.107