mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
5ed3ad6cc8
Put the SvgPaintable implementation into its own source files, for ease of copying.
14 lines
245 B
C
14 lines
245 B
C
#pragma once
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define SVG_TYPE_PAINTABLE (svg_paintable_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (SvgPaintable, svg_paintable, SVG, PAINTABLE, GObject)
|
|
|
|
GdkPaintable * svg_paintable_new (GFile *file);
|
|
|
|
G_END_DECLS
|