Code

Preserve paint styles with multiple components
[inkscape.git] / src / svg / svg-color.h
1 #ifndef SVG_SVG_COLOR_H_SEEN
2 #define SVG_SVG_COLOR_H_SEEN
4 #include <glib/gtypes.h>
6 class SVGICCColor;
8 guint32 sp_svg_read_color(gchar const *str, unsigned int dfl);
9 guint32 sp_svg_read_color(gchar const *str, gchar const **end_ptr, guint32 def);
10 void sp_svg_write_color(char *buf, unsigned int buflen, unsigned int rgba32);
12 bool sp_svg_read_icc_color( gchar const *str, gchar const **end_ptr, SVGICCColor* dest );
15 #endif /* !SVG_SVG_COLOR_H_SEEN */