]> err.no Git - mapper/blob - src/utils.h
Fix GPS settings dialog so it works.
[mapper] / src / utils.h
1 /*
2  * This file is part of mapper
3  *
4  * Copyright (C) 2006-2007 John Costigan.
5  *
6  * This program 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 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program 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 along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  */
20
21 #ifndef _MAPPER_UTILS_H
22 #define _MAPPER_UTILS_H
23
24 #include "config.h"
25 #include <unistd.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <strings.h>
29 #include <stddef.h>
30 #include <locale.h>
31 #include <math.h>
32 #include <errno.h>
33 #include <sys/wait.h>
34 #include <glib/gstdio.h>
35 #include <glib/gi18n.h>
36 #include <gtk/gtk.h>
37 #include <curl/multi.h>
38 #include <gconf/gconf-client.h>
39
40 #include "path.h"
41 #include "mapper-types.h"
42 #include "gpsdata.h"
43
44 /****************************************************************************
45  * BELOW: DEFINES ***********************************************************
46  ****************************************************************************/
47
48 /* #define DEBUG */
49
50 #ifndef DEBUG
51 #define printf(...)
52 #endif
53
54 /* Set the below if to determine whether to get verbose output. */
55 #if 1
56 #define vprintf printf
57 #else
58 #define vprintf(...)
59 #endif
60
61 #define BOUND(x, a, b) { \
62     if((x) < (a)) \
63         (x) = (a); \
64     else if((x) > (b)) \
65         (x) = (b); \
66 }
67
68 #define SQR(s) ((s)*(s))
69
70 #define ARRAY_CHUNK_SIZE (1024)
71 #define BUFFER_SIZE (2048)
72
73 #define MACRO_PARSE_INT(tofill, str) { \
74     gchar *error_check; \
75     (tofill) = strtol((str), &error_check, 10); \
76     if(error_check == (str)) \
77     { \
78         g_printerr("Line %d: Failed to parse string as int: %s\n", __LINE__, str); \
79         MACRO_BANNER_SHOW_INFO(_window, _("Invalid NMEA input from receiver!")); \
80         return; \
81     } \
82 }
83 #define MACRO_PARSE_FLOAT(tofill, str) { \
84     gchar *error_check; \
85     (tofill) = g_ascii_strtod((str), &error_check); \
86     if(error_check == (str)) \
87     { \
88         g_printerr("Failed to parse string as float: %s\n", str); \
89         MACRO_BANNER_SHOW_INFO(_window, _("Invalid NMEA input from receiver!")); \
90         return; \
91     } \
92 }
93
94 #ifdef WITH_OSSO
95 #define KEEP_DISPLAY_ON() { \
96     /* Note that the flag means keep on ONLY when fullscreen. */ \
97     if(_always_keep_on || _fullscreen) \
98     { \
99         osso_display_state_on(_osso); \
100         osso_display_blanking_pause(_osso); \
101     } \
102 }
103 #else
104 #define KEEP_DISPLAY_ON()
105 #endif
106
107 #define TRACKS_MASK 0x00000001
108 #define ROUTES_MASK 0x00000002
109
110 #define g_timeout_add(I, F, D) g_timeout_add_full(G_PRIORITY_DEFAULT_IDLE, \
111           (I), (F), (D), NULL)
112
113 #define MACRO_CURL_EASY_INIT(C) { \
114     C = curl_easy_init(); \
115     curl_easy_setopt(C, CURLOPT_NOPROGRESS, 1); \
116     curl_easy_setopt(C, CURLOPT_FOLLOWLOCATION, 1); \
117     curl_easy_setopt(C, CURLOPT_MAXREDIRS, 20); \
118     curl_easy_setopt(C, CURLOPT_FAILONERROR, 1); \
119     curl_easy_setopt(C, CURLOPT_USERAGENT, \
120             "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060701 Firefox/1.5.0.4"); \
121     curl_easy_setopt(C, CURLOPT_TIMEOUT, 30); \
122     curl_easy_setopt(C, CURLOPT_CONNECTTIMEOUT, 10); \
123 }
124
125 #define MACRO_CURL_PROXY(C) { \
126 if (_http_proxy_host) { \
127         curl_easy_setopt(C, CURLOPT_PROXY, _http_proxy_host);\
128         if (_http_proxy_port) \
129                 curl_easy_setopt(C, CURLOPT_PROXYPORT, _http_proxy_port); \
130 } \
131 }
132
133 #ifdef WITH_HILDON
134 #define MACRO_BANNER_SHOW_INFO(A, S) { \
135     gchar *my_macro_buffer = g_markup_printf_escaped("<span size='%s'>%s</span>", \
136             INFO_FONT_TEXT[_info_font_size], (S)); \
137     hildon_banner_show_information_with_markup(A, NULL, my_macro_buffer); \
138     g_free(my_macro_buffer); \
139 }
140 #else
141 #define MACRO_BANNER_SHOW_INFO(A, S) { hildon_banner_show_information(A, NULL, S); }
142 #endif
143
144 void sound_noise(void);
145
146 #endif