Diff of /trunk/src/config.h

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

revision 74 by harbaum, Mon Aug 24 09:23:36 2009 UTC revision 75 by harbaum, Mon Aug 24 12:57:15 2009 UTC
# Line 41  Line 41 
41  #define OSM_GPS_MAP_OSD_DIAMETER  60  #define OSM_GPS_MAP_OSD_DIAMETER  60
42  #endif  #endif
43    
44    #ifdef USE_MAEMO
45    /* limit screen refresh while dragging to avoid delays */
46    #define OSM_GPS_MAP_REFRESH  25
47    #endif
48    
49  /* specify OSD colors explicitely. Otherwise gtk default */  /* specify OSD colors explicitely. Otherwise gtk default */
50  /* colors are used */  /* colors are used. Only fremantle uses gtk defaults */
51    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
52  #define OSD_COLOR_BG         1, 1, 1         // white background  #define OSD_COLOR_BG         1, 1, 1         // white background
53  #define OSD_COLOR            0.5, 0.5, 1     // light blue border and controls  #define OSD_COLOR            0.5, 0.5, 1     // light blue border and controls
54  #define OSD_COLOR_DISABLED   0.8, 0.8, 0.8   // light grey disabled controls  #define OSD_COLOR_DISABLED   0.8, 0.8, 0.8   // light grey disabled controls
55  #define OSD_SHADOW_ENABLE  #define OSD_SHADOW_ENABLE
56  #define OSD_NODIR                            // no direction arrows  #else
57    #define OSD_COLOR_BG         0, 0, 0         // black background
58    #define OSD_COLOR            1, 1, 1         // white border and controls
59    #define OSD_COLOR_DISABLED   0.2, 0.2, 0.2   // dark grey disabled controls
60    #endif
61    
62    #define OSD_DOUBLE_BUFFER    // render osd/map together offscreen
63    #define OSD_NODIR            // no direction arrows (map is panned)
64    
65  #endif // CONFIG_H  #endif // CONFIG_H

Legend:
Removed from v.74  
changed lines
  Added in v.75