~ubuntu-branches/ubuntu/trusty/librsvg/trusty-proposed

« back to all changes in this revision

Viewing changes to gtk-engine/svg-style.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Michael Biebl, Laurent Bigonville
  • Date: 2013-10-21 13:58:34 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20131021135834-rrvvy5hm5amr838j
Tags: 2.40.0-1
[ Michael Biebl ]
* New upstream release.
  - Fixes local resource access vulnerability. Closes: #724741
    CVE-2013-1881
* Refresh patches.
* GTK2 support has been removed upstream. Drop Build-Depends on
  libgtk2.0-dev, libgtk2.0-doc and the now obsolete --disable-gtk-theme
  configure switch.
* Bump Build-Depends on libgtk-3-dev to (>= 3.2.0).
* Bump Build-Depends on libpango1.0-dev to (>= 1.36.0) to get the
  thread-safe version.

[ Laurent Bigonville ]
* debian/control.in:
  - Use canonical URL for VCS-* fields
  - Update Homepage URL
  - Move source package to the "libs" Section
  - Remove duplicate Section, thanks to lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* GTK+ Rsvg Engine
2
 
 * Copyright (C) 1998-2000 Red Hat, Inc.
3
 
 * Copyright (C) 20002 Dom Lachowicz
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 *
20
 
 * Written by Owen Taylor <otaylor@redhat.com>, based on code by
21
 
 * Carsten Haitzler <raster@rasterman.com>
22
 
 */
23
 
 
24
 
#include <gtk/gtk.h>
25
 
 
26
 
typedef struct _RsvgStyle RsvgStyle;
27
 
typedef struct _RsvgStyleClass RsvgStyleClass;
28
 
 
29
 
extern GType rsvg_type_style;
30
 
 
31
 
#define RSVG_TYPE_STYLE              rsvg_type_style
32
 
#define RSVG_STYLE(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), RSVG_TYPE_STYLE, RsvgStyle))
33
 
#define RSVG_STYLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), RSVG_TYPE_STYLE, RsvgStyleClass))
34
 
#define RSVG_IS_STYLE(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), RSVG_TYPE_STYLE))
35
 
#define RSVG_IS_STYLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), RSVG_TYPE_STYLE))
36
 
#define RSVG_STYLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), RSVG_TYPE_STYLE, RsvgStyleClass))
37
 
 
38
 
struct _RsvgStyle
39
 
{
40
 
  GtkStyle parent_instance;
41
 
};
42
 
 
43
 
struct _RsvgStyleClass
44
 
{
45
 
  GtkStyleClass parent_class;
46
 
};
47
 
 
48
 
void rsvg_style_register_type (GTypeModule *module);
49
 
 
50