Home | History | Annotate | Download | only in svg

Lines Matching refs:SVGPaint

25 #include "SVGPaint.h"
33 static inline SVGColor::SVGColorType colorTypeForPaintType(const SVGPaint::SVGPaintType& paintType)
36 case SVGPaint::SVG_PAINTTYPE_NONE:
37 case SVGPaint::SVG_PAINTTYPE_UNKNOWN:
38 case SVGPaint::SVG_PAINTTYPE_URI:
39 case SVGPaint::SVG_PAINTTYPE_URI_NONE:
41 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR:
42 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR:
44 case SVGPaint::SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR:
45 case SVGPaint::SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR:
47 case SVGPaint::SVG_PAINTTYPE_URI_CURRENTCOLOR:
48 case SVGPaint::SVG_PAINTTYPE_CURRENTCOLOR:
56 SVGPaint::SVGPaint(const SVGPaintType& paintType, String uri)
63 void SVGPaint::setUri(const String& uri)
73 SVGPaint* SVGPaint::defaultFill()
75 static SVGPaint* staticDefaultFill = createColor(Color::black).releaseRef();
79 SVGPaint* SVGPaint::defaultStroke()
81 static SVGPaint* staticDefaultStroke = createNone().releaseRef();
85 void SVGPaint::setPaint(unsigned short paintType, const String& uri, const String& rgbColor, const String& iccColor, ExceptionCode& ec)
138 String SVGPaint::cssText() const
166 bool SVGPaint::matchesTargetURI(const String& referenceId)