Contents of /trunk/src/config.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 121 - (hide annotations)
Sun Sep 20 19:26:29 2009 UTC (14 years, 7 months ago) by harbaum
File MIME type: text/plain
File size: 3678 byte(s)
Changed map redraw handling
1 harbaum 77 /*
2     * Copyright (C) 2008-2009 Till Harbaum <till@harbaum.org>.
3     *
4     * This file is part of GPXView.
5     *
6     * GPXView is free software: you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * GPXView is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with GPXView. If not, see <http://www.gnu.org/licenses/>.
18     */
19    
20 harbaum 1 #ifndef CONFIG_H
21     #define CONFIG_H
22    
23     #define TAG_STATE GTK_STATE_PRELIGHT
24    
25     #ifndef USE_MAEMO
26     #define DEFAULT_IMAGE_PATH "/tmp/gpxview/"
27     #define DEFAULT_MMPOI_PATH "gpxview_poi.db"
28     #define DEFAULT_GARMIN_PATH "garmin_overridden.gpx"
29     #define DEFAULT_FIELDNOTES_PATH "geocache_visits_%s.txt"
30     #else
31     #if MAEMO_VERSION_MAJOR < 5
32     /* internal memory card */
33     #define DEFAULT_IMAGE_PATH "/media/mmc2/gpxview/"
34     #else
35 harbaum 62 #define DEFAULT_IMAGE_PATH "/home/user/.gpxview/"
36 harbaum 1 #endif
37     #define DEFAULT_MMPOI_PATH "MyDocs/.documents/Maps/gpxview_poi.db"
38     #define DEFAULT_GARMIN_PATH "MyDocs/.documents/garmin_overridden.gpx"
39     #define DEFAULT_FIELDNOTES_PATH "MyDocs/.documents/geocache_visits_%s.txt"
40     #endif
41    
42 harbaum 62 #define DEFAULT_IMAGE_PATH_HOME ".gpxview/"
43    
44 harbaum 1 #define LOCALEDIR "/usr/share/locale"
45     #define PACKAGE "gpxview"
46    
47 harbaum 32 // for osm-gps-map:
48     #define USE_CAIRO
49 harbaum 61 #define ENABLE_OSD
50 harbaum 112 #define OSD_BALLOON
51 harbaum 105 #define OSD_SCALE
52 harbaum 106 #define OSD_CROSSHAIR
53 harbaum 32
54 harbaum 65 #ifdef USE_MAEMO
55 harbaum 80 #define BIG_BALLOONS
56 harbaum 66 #define BALLOON_AREA_WIDTH 380
57     #define BALLOON_AREA_HEIGHT 100
58     #define BALLOON_CORNER_RADIUS 20
59 harbaum 105 #define OSD_FONT_SIZE 28
60 harbaum 111 #define OSD_DIAMETER 60
61     #define OSD_SCALE_FONT_SIZE 20
62 harbaum 121 #define OSD_CROSSHAIR_RADIUS 10
63 harbaum 111 #define OSD_COORDINATES_FONT_SIZE 20
64 harbaum 106
65 harbaum 65 #endif
66    
67 harbaum 107 #define OSD_COORDINATES
68     #include <libintl.h>
69     #define OSD_COORDINATES_CHR_N gettext("N")
70     #define OSD_COORDINATES_CHR_S gettext("S")
71     #define OSD_COORDINATES_CHR_E gettext("E")
72     #define OSD_COORDINATES_CHR_W gettext("W")
73 harbaum 105
74 harbaum 77 /* only maemo devices up to version 4 have a fullscreen button */
75     #ifdef USE_MAEMO
76     #include <hildon/hildon-defines.h>
77     #if (MAEMO_VERSION_MAJOR < 5)
78     #define OSM_GPS_MAP_KEY_FULLSCREEN HILDON_HARDKEY_FULLSCREEN
79     #else
80     #define OSM_GPS_MAP_KEY_FULLSCREEN 'f'
81     #endif
82     #define OSM_GPS_MAP_KEY_ZOOMIN HILDON_HARDKEY_INCREASE
83     #define OSM_GPS_MAP_KEY_ZOOMOUT HILDON_HARDKEY_DECREASE
84     #else
85     #define OSM_GPS_MAP_KEY_FULLSCREEN GDK_F11
86     #define OSM_GPS_MAP_KEY_ZOOMIN '+'
87     #define OSM_GPS_MAP_KEY_ZOOMOUT '-'
88     #endif
89 harbaum 76
90 harbaum 77 #define OSM_GPS_MAP_KEY_UP GDK_Up
91     #define OSM_GPS_MAP_KEY_DOWN GDK_Down
92     #define OSM_GPS_MAP_KEY_LEFT GDK_Left
93     #define OSM_GPS_MAP_KEY_RIGHT GDK_Right
94    
95 harbaum 74 /* specify OSD colors explicitely. Otherwise gtk default */
96 harbaum 77 /* colors are used. fremantle always uses gtk defaults */
97 harbaum 75 #if !defined(USE_MAEMO) || (MAEMO_VERSION_MAJOR < 5)
98 harbaum 74 #define OSD_COLOR_BG 1, 1, 1 // white background
99     #define OSD_COLOR 0.5, 0.5, 1 // light blue border and controls
100     #define OSD_COLOR_DISABLED 0.8, 0.8, 0.8 // light grey disabled controls
101     #define OSD_SHADOW_ENABLE
102 harbaum 75 #else
103 harbaum 77 #define OSD_Y -10
104 harbaum 75 #endif
105 harbaum 74
106 harbaum 75 #define OSD_DOUBLE_BUFFER // render osd/map together offscreen
107 harbaum 76 #define OSD_GPS_BUTTON // display a GPS button
108     #define OSD_NO_DPAD // no direction arrows (map is panned)
109 harbaum 87 #define OSD_SOURCE_SEL // display source selection tab
110 harbaum 75
111 harbaum 1 #endif // CONFIG_H