]> git.street.me.uk Git - andy/viking.git/blob - src/mapnik_interface.h
Pass Mapnik loading errors around and display in the GUI.
[andy/viking.git] / src / mapnik_interface.h
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
4  *
5  * Copyright (C) 2015, Rob Norris <rw_norris@hotmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22 #ifndef __VIKING_MAPNIK_IF_H
23 #define __VIKING_MAPNIK_IF_H
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include <gdk-pixbuf/gdk-pixbuf.h>
30
31 typedef struct _MapnikInterface MapnikInterface;
32
33 void mapnik_interface_initialize (const char *plugins_dir, const char* font_dir, int font_dir_recurse);
34
35 MapnikInterface* mapnik_interface_new ();
36 void mapnik_interface_free (MapnikInterface* mi);
37
38 gchar* mapnik_interface_load_map_file ( MapnikInterface* mi,
39                                         const gchar *filename,
40                                         guint width,
41                                         guint height );
42
43 GdkPixbuf* mapnik_interface_render ( MapnikInterface* mi, double lat_tl, double lon_tl, double lat_br, double lon_br );
44
45 gchar * mapnik_interface_about ( void );
46
47 #ifdef __cplusplus
48 }
49 #endif
50
51 #endif