]> git.street.me.uk Git - andy/viking.git/blame - src/globals.h
Set 'OK' default for goto dialogs.
[andy/viking.git] / src / globals.h
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
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
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#ifndef __VIKING_GLOBALS_H
23#define __VIKING_GLOBALS_H
24
2936913d
GB
25#include <glib.h>
26
50a14534 27#define PROJECT "Viking"
901ca9d5 28#define VIKING_VERSION PACKAGE_VERSION
1fe49af0 29#define VIKING_VERSION_NAME "This Name For Rent"
50a14534
EB
30#define VIKING_URL "http://viking.sf.net/"
31
50a14534
EB
32#define ALTI_TO_MPP 1.4017295
33#define MPP_TO_ALTI 0.7134044
34
6c20e59a 35#define VIK_FEET_IN_METER 3.2808399
9ac936f2 36#define VIK_METERS_TO_FEET(X) ((X)*VIK_FEET_IN_METER)
6b2be5d9 37#define VIK_FEET_TO_METERS(X) ((X)/VIK_FEET_IN_METER)
ab1e0693
RN
38
39/* MPS - Metres Per Second */
40/* MPH - Metres Per Hour */
41#define VIK_MPH_IN_MPS 2.23693629
6b2be5d9
GB
42#define VIK_MPS_TO_MPH(X) ((X)*VIK_MPH_IN_MPS)
43#define VIK_MPH_TO_MPS(X) ((X)/VIK_MPH_IN_MPS)
ab1e0693
RN
44
45/* KPH - Kilometres Per Hour */
46#define VIK_KPH_IN_MPS 3.6
6b2be5d9
GB
47#define VIK_MPS_TO_KPH(X) ((X)*VIK_KPH_IN_MPS)
48#define VIK_KPH_TO_MPS(X) ((X)/VIK_KPH_IN_MPS)
ab1e0693
RN
49
50#define VIK_KNOTS_IN_MPS 1.94384449
6b2be5d9
GB
51#define VIK_MPS_TO_KNOTS(X) ((X)*VIK_KNOTS_IN_MPS)
52#define VIK_KNOTS_TO_MPS(X) ((X)/VIK_KNOTS_IN_MPS)
62e4939d 53
50a14534 54#define VIK_DEFAULT_ALTITUDE 0.0
4a42b254 55#define VIK_DEFAULT_DOP 0.0
50a14534
EB
56
57#define VIK_GTK_WINDOW_FROM_WIDGET(x) GTK_WINDOW(gtk_widget_get_toplevel(GTK_WIDGET(x)))
58#define VIK_GTK_WINDOW_FROM_LAYER(x) VIK_GTK_WINDOW_FROM_WIDGET(VIK_LAYER(x)->vt)
59
60#define DEG2RAD 0.017453293
61#define RAD2DEG 57.2957795
62
63/* mercator projection, latitude conversion (degrees) */
64#define MERCLAT(x) (RAD2DEG * log(tan((0.25 * M_PI) + (0.5 * DEG2RAD * (x)))))
65#define DEMERCLAT(x) (RAD2DEG * atan(sinh(DEG2RAD * (x))))
66
2936913d
GB
67/* Some command line options */
68extern gboolean vik_debug;
69extern gboolean vik_verbose;
70extern gboolean vik_version;
71
3bfdae59 72/* Global preferences */
a58aaed4
GB
73void a_vik_preferences_init ();
74
75/* Coord display preferences */
76typedef enum {
77 VIK_DEGREE_FORMAT_DDD,
78 VIK_DEGREE_FORMAT_DMM,
79 VIK_DEGREE_FORMAT_DMS,
80} vik_degree_format_t;
81
82vik_degree_format_t a_vik_get_degree_format ( );
83
6f9336aa
RN
84/* Distance preferences */
85typedef enum {
86 VIK_UNITS_DISTANCE_KILOMETRES,
87 VIK_UNITS_DISTANCE_MILES,
88} vik_units_distance_t;
89
90vik_units_distance_t a_vik_get_units_distance ( );
91
13bdea80
RN
92/* Speed preferences */
93typedef enum {
94 VIK_UNITS_SPEED_KILOMETRES_PER_HOUR,
95 VIK_UNITS_SPEED_MILES_PER_HOUR,
96 VIK_UNITS_SPEED_METRES_PER_SECOND,
a4c92313 97 VIK_UNITS_SPEED_KNOTS,
13bdea80
RN
98} vik_units_speed_t;
99
100vik_units_speed_t a_vik_get_units_speed ( );
101
6027a9c5
RN
102/* Height (Depth) preferences */
103typedef enum {
104 VIK_UNITS_HEIGHT_METRES,
105 VIK_UNITS_HEIGHT_FEET,
106} vik_units_height_t;
107
108vik_units_height_t a_vik_get_units_height ( );
109
9be0449f
RN
110gboolean a_vik_get_use_large_waypoint_icons ( );
111
5210c3d3
GB
112/* Location preferences */
113typedef enum {
114 VIK_LOCATION_LAT,
115 VIK_LOCATION_LONG,
116} vik_location_t;
117
118gdouble a_vik_get_default_lat ( );
119gdouble a_vik_get_default_long ( );
120
d8fa3de5
JJ
121/* Group for global preferences */
122#define VIKING_PREFERENCES_GROUP_KEY "viking.globals"
123#define VIKING_PREFERENCES_NAMESPACE "viking.globals."
124
50a14534 125#endif