]> git.street.me.uk Git - andy/viking.git/blob - src/vikmapsource.h
Improve potential statusbar message of a selected trackpoint.
[andy/viking.git] / src / vikmapsource.h
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * viking
4  * Copyright (C) 2009-2010, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
5  * 
6  * viking is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  * 
11  * viking is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  * See the 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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef _VIK_MAP_SOURCE_H_
21 #define _VIK_MAP_SOURCE_H_
22
23 #include <glib-object.h>
24
25 #include "vikviewport.h"
26 #include "vikcoord.h"
27 #include "mapcoord.h"
28 #include "bbox.h"
29
30 G_BEGIN_DECLS
31
32 #define VIK_TYPE_MAP_SOURCE             (vik_map_source_get_type ())
33 #define VIK_MAP_SOURCE(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_TYPE_MAP_SOURCE, VikMapSource))
34 #define VIK_MAP_SOURCE_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_TYPE_MAP_SOURCE, VikMapSourceClass))
35 #define VIK_IS_MAP_SOURCE(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_TYPE_MAP_SOURCE))
36 #define VIK_IS_MAP_SOURCE_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_TYPE_MAP_SOURCE))
37 #define VIK_MAP_SOURCE_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), VIK_TYPE_MAP_SOURCE, VikMapSourceClass))
38
39 typedef struct _VikMapSourceClass VikMapSourceClass;
40 typedef struct _VikMapSource VikMapSource;
41
42 struct _VikMapSourceClass
43 {
44         GObjectClass parent_class;
45
46         /* Legal info */
47         void (* get_copyright) (VikMapSource * self, LatLonBBox bbox, gdouble zoom, void (*fct)(VikViewport*,const gchar*), void *data);
48         const gchar *(* get_license) (VikMapSource * self);
49         const gchar *(* get_license_url) (VikMapSource * self);
50         const GdkPixbuf *(* get_logo) (VikMapSource * self);
51
52         const gchar *(* get_name) (VikMapSource * self);
53         guint16 (* get_uniq_id) (VikMapSource * self);
54         const gchar * (* get_label) (VikMapSource * self);
55         guint16 (* get_tilesize_x) (VikMapSource * self);
56         guint16 (* get_tilesize_y) (VikMapSource * self);
57         VikViewportDrawMode (* get_drawmode) (VikMapSource * self);
58         gboolean (* is_direct_file_access) (VikMapSource * self);
59         gboolean (* is_mbtiles) (VikMapSource * self);
60         gboolean (* is_osm_meta_tiles) (VikMapSource * self);
61         gboolean (* supports_download_only_new) (VikMapSource * self);
62         guint8 (* get_zoom_min) (VikMapSource * self);
63         guint8 (* get_zoom_max) (VikMapSource * self);
64         gdouble (* get_lat_min) (VikMapSource * self);
65         gdouble (* get_lat_max) (VikMapSource * self);
66         gdouble (* get_lon_min) (VikMapSource * self);
67         gdouble (* get_lon_max) (VikMapSource * self);
68         const gchar * (* get_file_extension) (VikMapSource * self);
69         gboolean (* coord_to_mapcoord) (VikMapSource * self, const VikCoord * src, gdouble xzoom, gdouble yzoom, MapCoord * dest);
70         void (* mapcoord_to_center_coord) (VikMapSource * self, MapCoord * src, VikCoord * dest);
71         int (* download) (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void * handle);
72         void * (* download_handle_init) (VikMapSource * self);
73         void (* download_handle_cleanup) (VikMapSource * self, void * handle);
74 };
75
76 struct _VikMapSource
77 {
78         GObject parent_instance;
79 };
80
81 GType vik_map_source_get_type (void) G_GNUC_CONST;
82
83 void vik_map_source_get_copyright (VikMapSource * self, LatLonBBox bbox, gdouble zoom, void (*fct)(VikViewport*,const gchar*), void *data);
84 const gchar *vik_map_source_get_license (VikMapSource * self);
85 const gchar *vik_map_source_get_license_url (VikMapSource * self);
86 const GdkPixbuf *vik_map_source_get_logo (VikMapSource * self);
87
88 const gchar *vik_map_source_get_name (VikMapSource * self);
89 guint16 vik_map_source_get_uniq_id (VikMapSource * self);
90 const gchar *vik_map_source_get_label (VikMapSource * self);
91 guint16 vik_map_source_get_tilesize_x (VikMapSource * self);
92 guint16 vik_map_source_get_tilesize_y (VikMapSource * self);
93 VikViewportDrawMode vik_map_source_get_drawmode (VikMapSource * self);
94 gboolean vik_map_source_is_direct_file_access (VikMapSource * self);
95 gboolean vik_map_source_is_mbtiles (VikMapSource * self);
96 gboolean vik_map_source_is_osm_meta_tiles (VikMapSource * self);
97 gboolean vik_map_source_supports_download_only_new (VikMapSource * self);
98 guint8 vik_map_source_get_zoom_min (VikMapSource * self);
99 guint8 vik_map_source_get_zoom_max (VikMapSource * self);
100 gdouble vik_map_source_get_lat_min (VikMapSource * self);
101 gdouble vik_map_source_get_lat_max (VikMapSource * self);
102 gdouble vik_map_source_get_lon_min (VikMapSource * self);
103 gdouble vik_map_source_get_lon_max (VikMapSource * self);
104 const gchar * vik_map_source_get_file_extension (VikMapSource * self);
105 gboolean vik_map_source_coord_to_mapcoord (VikMapSource * self, const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest );
106 void vik_map_source_mapcoord_to_center_coord (VikMapSource * self, MapCoord *src, VikCoord *dest);
107 int vik_map_source_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void * handle);
108 void * vik_map_source_download_handle_init (VikMapSource * self);
109 void vik_map_source_download_handle_cleanup (VikMapSource * self, void * handle);
110
111 G_END_DECLS
112
113 #endif /* _VIK_MAP_SOURCE_H_ */