Diff of /trunk/src/config.h

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

revision 62 by harbaum, Tue Aug 18 20:33:08 2009 UTC revision 76 by harbaum, Mon Aug 24 19:21:46 2009 UTC
# Line 3  Line 3 
3    
4  #define TAG_STATE  GTK_STATE_PRELIGHT  #define TAG_STATE  GTK_STATE_PRELIGHT
5    
 // #define DEFAULT_LAT 49.02833  
 // #define DEFAULT_LON  8.39042  
   
6  #ifndef USE_MAEMO  #ifndef USE_MAEMO
7  #define DEFAULT_IMAGE_PATH       "/tmp/gpxview/"  #define DEFAULT_IMAGE_PATH       "/tmp/gpxview/"
8  #define DEFAULT_MMPOI_PATH       "gpxview_poi.db"  #define DEFAULT_MMPOI_PATH       "gpxview_poi.db"
# Line 31  Line 28 
28  // for osm-gps-map:  // for osm-gps-map:
29  #define USE_CAIRO  #define USE_CAIRO
30  #define ENABLE_OSD  #define ENABLE_OSD
31    #define ENABLE_BALLOON
32    
33    #ifdef USE_MAEMO
34    #define BIG_BALLOONS
35    #endif
36    
37    #ifdef BIG_BALLOONS
38    #define BALLOON_AREA_WIDTH       380
39    #define BALLOON_AREA_HEIGHT      100
40    #define BALLOON_CORNER_RADIUS     20
41    #define OSM_GPS_MAP_OSD_DIAMETER  60
42    #endif
43    
44    
45    #ifdef USE_MAEMO
46    /* limit screen refresh while dragging to avoid delays */
47    #define OSM_GPS_MAP_REFRESH  25
48    #endif
49    
50    /* specify OSD colors explicitely. Otherwise gtk default */
51    /* colors are used */
52    #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
53    #define OSD_COLOR_BG         1, 1, 1         // white background
54    #define OSD_COLOR            0.5, 0.5, 1     // light blue border and controls
55    #define OSD_COLOR_DISABLED   0.8, 0.8, 0.8   // light grey disabled controls
56    #define OSD_SHADOW_ENABLE
57    #else
58    #define OSD_COLOR_BG         0, 0, 0         // black background
59    #define OSD_COLOR            1, 1, 1         // white border and controls
60    #define OSD_COLOR_DISABLED   0.2, 0.2, 0.2   // dark grey disabled controls
61    #endif
62    
63    #define OSD_DOUBLE_BUFFER    // render osd/map together offscreen
64    #define OSD_GPS_BUTTON       // display a GPS button
65    #define OSD_NO_DPAD          // no direction arrows (map is panned)
66    
67  #endif // CONFIG_H  #endif // CONFIG_H

Legend:
Removed from v.62  
changed lines
  Added in v.76