~ubuntu-branches/ubuntu/trusty/gcompris/trusty

« back to all changes in this revision

Viewing changes to src/gcompris/svgutil.h

  • Committer: Bazaar Package Importer
  • Author(s): Yann Dirson
  • Date: 2006-12-15 23:08:17 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215230817-exr5ks1hd73s3tlk
Tags: 8.2.2-1
* New upstream bugfix release, fixes among other things the support for
  the version of gnucap shipped in etch.
* Add missing dependency on python-gtk2 (Closes: #396523).
* Removed reference to non-existent sound file from memory.c (upstream
  fix - impacts 8.2 as well).  
* Now suggests gnuchess, gnucap, and tuxpaint.
* Updated extended description for the main package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* gcompris - svgutil.h
2
 
 *
3
 
 * Time-stamp: <2000/07/16 00:32:26 bruno>
4
 
 *
5
 
 * Copyright (C) 2004 Yves Combe
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20
 
 */
21
 
 
22
 
/*! \file svgutil.h
23
 
  \brief Function usefull to board developpers
24
 
*/
25
 
 
26
 
#ifndef SVGUTIL_H
27
 
#define SVGUTIL_H
28
 
 
29
 
#include <gdk-pixbuf/gdk-pixbuf.h>
30
 
#include <libgnomecanvas/gnome-canvas-pixbuf.h>
31
 
 
32
 
#include "gcompris.h"
33
 
 
34
 
void gcompris_clone_item(GnomeCanvasItem *item, GnomeCanvasGroup *parent);
35
 
void gcompris_svg_save(char *module, char *file, GnomeCanvasItem *item, int hsize, int vsize, int anim);
36
 
void gcompris_svg_restore(char *module, char *filename, GnomeCanvasGroup *parent);
37
 
 
38
 
#endif