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

« back to all changes in this revision

Viewing changes to src/osm-gps-map-image.c

  • Committer: Package Import Robot
  • Author(s): Ilya Barygin
  • Date: 2011-12-31 11:16:10 UTC
  • mfrom: (1.1.6) (0.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111231111610-zzpv0eoqpcl2iyz3
Tags: 0.7.3-1ubuntu1
* Merge from Debian testing, remaining changes:
  - debian/libosmgpsmap-dev.install: Don't install la-file (Policy 10.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* osm-gps-map-image.c */
 
1
/* vim:set et sw=4 ts=4 */
 
2
/*
 
3
 * Copyright (C) 2010 John Stowers <john.stowers@gmail.com>
 
4
 *
 
5
 * This is free software: you can redistribute it and/or modify it
 
6
 * under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; version 2.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
/**
 
19
 * SECTION:osm-gps-map-image
 
20
 * @short_description: An image shown on the map
 
21
 * @stability: Stable
 
22
 * @include: osm-gps-map.h
 
23
 *
 
24
 * #OsmGpsMapImage represents an image (a #GdkPixbuf) shown on the map
 
25
 * (osm_gps_map_image_add()) at a specific location (a #OsmGpsMapPoint).
 
26
 **/
2
27
 
3
28
#include <gdk-pixbuf/gdk-pixbuf.h>
4
29