~saltmakrell/launchpad/fixtiles-osm-gps-map

« back to all changes in this revision

Viewing changes to src/osm-gps-map-compat.h

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-06-10 22:17:37 UTC
  • mfrom: (1.1.3 upstream) (0.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100610221737-b6ai77azimsfqbrj
Tags: 0.7.0-1
* New upstream version
  - SONAME bump: libosmgpsmap0 → libosmgpsmap2
* debian/patches/:
  - 00-fix_python-COPYING added, makes COPYING a real file
    instead of a symlink.
  - 01-fix_python_linking.patch added, fixes FTBFS because of
    wrong linking of local library
* debian/control:
  - added gnome-common build-dependency
  - added gtk-doc-tools build-dependency
  - bump python-gobject-dev build-dependency to >= 2.16.0
* debian/rules:
  - don't delete version.xml.in on clean
  - remove docs/reference/version.xml and gkt-doc.make on clean
* debian/libosmgpsmap-dev.examples, debian/python-osmgpsmap.examples
  refreshed, added new example files
* debian/libosmgpsmap2.symbols refreshed with new symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _OSM_GPS_MAP_COMPAT_H
 
2
#define _OSM_GPS_MAP_COMPAT_H
 
3
 
 
4
#include "osm-gps-map-widget.h"
 
5
 
 
6
G_BEGIN_DECLS
 
7
 
 
8
/* Depreciated Functions */
 
9
#define coord_t OsmGpsMapPoint
 
10
void        osm_gps_map_add_track                   (OsmGpsMap *map, GSList *track)                                     G_GNUC_DEPRECATED;
 
11
void        osm_gps_map_replace_track               (OsmGpsMap *map, GSList *old_track, GSList *new_track)              G_GNUC_DEPRECATED;
 
12
void        osm_gps_map_clear_tracks                (OsmGpsMap *map)                                                    G_GNUC_DEPRECATED;
 
13
void        osm_gps_map_draw_gps                    (OsmGpsMap *map, float latitude, float longitude, float heading)    G_GNUC_DEPRECATED;
 
14
void        osm_gps_map_clear_gps                   (OsmGpsMap *map)                                                    G_GNUC_DEPRECATED;
 
15
void        osm_gps_map_add_image                   (OsmGpsMap *map, float latitude, float longitude, GdkPixbuf *image) G_GNUC_DEPRECATED;
 
16
void        osm_gps_map_add_image_with_alignment    (OsmGpsMap *map, float latitude, float longitude, GdkPixbuf *image, float xalign, float yalign) G_GNUC_DEPRECATED;
 
17
gboolean    osm_gps_map_remove_image                (OsmGpsMap *map, GdkPixbuf *image)                                  G_GNUC_DEPRECATED;
 
18
void        osm_gps_map_clear_images                (OsmGpsMap *map)                                                    G_GNUC_DEPRECATED;
 
19
void        osm_gps_map_add_layer                   (OsmGpsMap *map, OsmGpsMapLayer *layer)                             G_GNUC_DEPRECATED;
 
20
void        osm_gps_map_screen_to_geographic        (OsmGpsMap *map, gint pixel_x, gint pixel_y, gfloat *latitude, gfloat *longitude) G_GNUC_DEPRECATED;
 
21
void        osm_gps_map_geographic_to_screen        (OsmGpsMap *map, gfloat latitude, gfloat longitude, gint *pixel_x, gint *pixel_y) G_GNUC_DEPRECATED;
 
22
OsmGpsMapPoint  osm_gps_map_get_co_ordinates        (OsmGpsMap *map, int pixel_x, int pixel_y)                          G_GNUC_DEPRECATED;
 
23
void        osm_gps_map_set_mapcenter               (OsmGpsMap *map, float latitude, float longitude, int zoom)         G_GNUC_DEPRECATED;
 
24
 
 
25
G_END_DECLS
 
26
 
 
27
#endif /* _OSM_GPS_MAP_COMPAT_H */