]> git.street.me.uk Git - andy/viking.git/blame - src/vikslippymapsource.h
Add keyboard accelerators for the Waypoints sublayer menu.
[andy/viking.git] / src / vikslippymapsource.h
CommitLineData
8eb12ac6
GB
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2/*
3 * viking
4 * Copyright (C) Guilhem Bonnefille 2009 <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_SLIPPY_MAP_SOURCE_H
21#define _VIK_SLIPPY_MAP_SOURCE_H
22
23#include "vikcoord.h"
24#include "mapcoord.h"
25#include "vikmapsourcedefault.h"
26#include "download.h"
27
28G_BEGIN_DECLS
29
30#define VIK_TYPE_SLIPPY_MAP_SOURCE (vik_slippy_map_source_get_type ())
31#define VIK_SLIPPY_MAP_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), VIK_TYPE_SLIPPY_MAP_SOURCE, VikSlippyMapSource))
32#define VIK_SLIPPY_MAP_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), VIK_TYPE_SLIPPY_MAP_SOURCE, VikSlippyMapSourceClass))
33#define VIK_IS_SLIPPY_MAP_SOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), VIK_TYPE_SLIPPY_MAP_SOURCE))
34#define VIK_IS_SLIPPY_MAP_SOURCE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), VIK_TYPE_SLIPPY_MAP_SOURCE))
35#define VIK_SLIPPY_MAP_SOURCE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), VIK_TYPE_SLIPPY_MAP_SOURCE, VikSlippyMapSourceClass))
36
37typedef struct _VikSlippyMapSourceClass VikSlippyMapSourceClass;
38typedef struct _VikSlippyMapSource VikSlippyMapSource;
39
40struct _VikSlippyMapSourceClass
41{
42 VikMapSourceDefaultClass parent_class;
43
44 gchar * (*get_uri) ( VikSlippyMapSource *self, MapCoord *src );
45 gchar * (*get_hostname) ( VikSlippyMapSource *self );
46 DownloadOptions * (*get_download_options) ( VikSlippyMapSource *self );
47};
48
49struct _VikSlippyMapSource
50{
51 VikMapSourceDefault parent_instance;
52};
53
54GType vik_slippy_map_source_get_type (void) G_GNUC_CONST;
55
db03733a 56VikSlippyMapSource * vik_slippy_map_source_new_with_id (guint8 id, const gchar *label, const gchar *hostname, const gchar *url);
8eb12ac6
GB
57
58gchar * vik_slippy_map_source_get_uri( VikSlippyMapSource *self, MapCoord *src );
59gchar * vik_slippy_map_source_get_hostname( VikSlippyMapSource *self );
60DownloadOptions * vik_slippy_map_source_get_download_options( VikSlippyMapSource *self );
61
62G_END_DECLS
63
64#endif /* _VIK_SLIPPY_MAP_SOURCE_H_ */