X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/39bf28cf24ff2261f67e8b38574aa571602c38b4..db9ce05e2bd6ac284f5e0037108cad65512f8f75:/src/vikmapsource.c diff --git a/src/vikmapsource.c b/src/vikmapsource.c index 15d282c2..9895318e 100644 --- a/src/vikmapsource.c +++ b/src/vikmapsource.c @@ -1,7 +1,7 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ /* * viking - * Copyright (C) Guilhem Bonnefille 2009 + * Copyright (C) 2009, Guilhem Bonnefille * * viking is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -30,6 +30,8 @@ static void vik_map_source_init (VikMapSource *object); static void vik_map_source_finalize (GObject *object); static void vik_map_source_class_init (VikMapSourceClass *klass); +static gboolean _supports_download_only_new (VikMapSource *object); + G_DEFINE_TYPE_EXTENDED (VikMapSource, vik_map_source, G_TYPE_OBJECT, (GTypeFlags)G_TYPE_FLAG_ABSTRACT,); static void @@ -52,16 +54,26 @@ vik_map_source_class_init (VikMapSourceClass *klass) GObjectClass* object_class = G_OBJECT_CLASS (klass); klass->get_uniq_id = NULL; + klass->get_label = NULL; klass->get_tilesize_x = NULL; klass->get_tilesize_y = NULL; klass->get_drawmode = NULL; + klass->supports_download_only_new = _supports_download_only_new; klass->coord_to_mapcoord = NULL; klass->mapcoord_to_center_coord = NULL; klass->download = NULL; + klass->download_handle_init = NULL; + klass->download_handle_cleanup = NULL; object_class->finalize = vik_map_source_finalize; } +gboolean +_supports_download_only_new (VikMapSource *self) +{ + // Default feature: does not support + return FALSE; +} guint8 vik_map_source_get_uniq_id (VikMapSource *self) @@ -76,6 +88,19 @@ vik_map_source_get_uniq_id (VikMapSource *self) return (*klass->get_uniq_id)(self); } +const gchar * +vik_map_source_get_label (VikMapSource *self) +{ + VikMapSourceClass *klass; + g_return_val_if_fail (self != NULL, NULL); + g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), NULL); + klass = VIK_MAP_SOURCE_GET_CLASS(self); + + g_return_val_if_fail (klass->get_label != NULL, NULL); + + return (*klass->get_label)(self); +} + guint16 vik_map_source_get_tilesize_x (VikMapSource *self) { @@ -115,6 +140,19 @@ vik_map_source_get_drawmode (VikMapSource *self) return (*klass->get_drawmode)(self); } +gboolean +vik_map_source_supports_download_only_new (VikMapSource * self) +{ + VikMapSourceClass *klass; + g_return_val_if_fail (self != NULL, 0); + g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0); + klass = VIK_MAP_SOURCE_GET_CLASS(self); + + g_return_val_if_fail (klass->supports_download_only_new != NULL, 0); + + return (*klass->supports_download_only_new)(self); +} + gboolean vik_map_source_coord_to_mapcoord (VikMapSource *self, const VikCoord *src, gdouble xzoom, gdouble yzoom, MapCoord *dest ) { @@ -142,7 +180,7 @@ vik_map_source_mapcoord_to_center_coord (VikMapSource *self, MapCoord *src, VikC } int -vik_map_source_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn) +vik_map_source_download (VikMapSource * self, MapCoord * src, const gchar * dest_fn, void *handle) { VikMapSourceClass *klass; g_return_val_if_fail (self != NULL, 0); @@ -151,5 +189,31 @@ vik_map_source_download (VikMapSource * self, MapCoord * src, const gchar * dest g_return_val_if_fail (klass->download != NULL, 0); - return (*klass->download)(self, src, dest_fn); + return (*klass->download)(self, src, dest_fn, handle); +} + +void * +vik_map_source_download_handle_init (VikMapSource *self) +{ + VikMapSourceClass *klass; + g_return_val_if_fail (self != NULL, 0); + g_return_val_if_fail (VIK_IS_MAP_SOURCE (self), 0); + klass = VIK_MAP_SOURCE_GET_CLASS(self); + + g_return_val_if_fail (klass->download_handle_init != NULL, 0); + + return (*klass->download_handle_init)(self); +} + +void +vik_map_source_download_handle_cleanup (VikMapSource * self, void * handle) +{ + VikMapSourceClass *klass; + g_return_if_fail (self != NULL); + g_return_if_fail (VIK_IS_MAP_SOURCE (self)); + klass = VIK_MAP_SOURCE_GET_CLASS(self); + + g_return_if_fail (klass->download_handle_cleanup != NULL); + + (*klass->download_handle_cleanup)(self, handle); }