This source file includes following definitions.
- inheritedNotEqual
- inheritFrom
- copyNonInheritedFrom
- diff
- paintOrderType
#include "config.h"
#include "core/rendering/style/SVGRenderStyle.h"
using namespace std;
namespace WebCore {
SVGRenderStyle::SVGRenderStyle()
{
static SVGRenderStyle* defaultStyle = new SVGRenderStyle(CreateDefault);
fill = defaultStyle->fill;
stroke = defaultStyle->stroke;
text = defaultStyle->text;
stops = defaultStyle->stops;
misc = defaultStyle->misc;
inheritedResources = defaultStyle->inheritedResources;
resources = defaultStyle->resources;
setBitDefaults();
}
SVGRenderStyle::SVGRenderStyle(CreateDefaultType)
{
setBitDefaults();
fill.init();
stroke.init();
text.init();
stops.init();
misc.init();
inheritedResources.init();
resources.init();
}
SVGRenderStyle::SVGRenderStyle(const SVGRenderStyle& other)
: RefCounted<SVGRenderStyle>()
{
fill = other.fill;
stroke = other.stroke;
text = other.text;
stops = other.stops;
misc = other.misc;
inheritedResources = other.inheritedResources;
resources = other.resources;
svg_inherited_flags = other.svg_inherited_flags;
svg_noninherited_flags = other.svg_noninherited_flags;
}
SVGRenderStyle::~SVGRenderStyle()
{
}
bool SVGRenderStyle::operator==(const SVGRenderStyle& other) const
{
return fill == other.fill
&& stroke == other.stroke
&& text == other.text
&& stops == other.stops
&& misc == other.misc
&& inheritedResources == other.inheritedResources
&& resources == other.resources
&& svg_inherited_flags == other.svg_inherited_flags
&& svg_noninherited_flags == other.svg_noninherited_flags;
}
bool SVGRenderStyle::inheritedNotEqual(const SVGRenderStyle* other) const
{
return fill != other->fill
|| stroke != other->stroke
|| text != other->text
|| inheritedResources != other->inheritedResources
|| svg_inherited_flags != other->svg_inherited_flags;
}
void SVGRenderStyle::inheritFrom(const SVGRenderStyle* svgInheritParent)
{
if (!svgInheritParent)
return;
fill = svgInheritParent->fill;
stroke = svgInheritParent->stroke;
text = svgInheritParent->text;
inheritedResources = svgInheritParent->inheritedResources;
svg_inherited_flags = svgInheritParent->svg_inherited_flags;
}
void SVGRenderStyle::copyNonInheritedFrom(const SVGRenderStyle* other)
{
svg_noninherited_flags = other->svg_noninherited_flags;
stops = other->stops;
misc = other->misc;
resources = other->resources;
}
StyleDifference SVGRenderStyle::diff(const SVGRenderStyle* other) const
{
if (text != other->text)
return StyleDifferenceLayout;
if (resources != other->resources)
return StyleDifferenceLayout;
if (inheritedResources != other->inheritedResources)
return StyleDifferenceLayout;
if (svg_inherited_flags._textAnchor != other->svg_inherited_flags._textAnchor
|| svg_inherited_flags._writingMode != other->svg_inherited_flags._writingMode
|| svg_inherited_flags._glyphOrientationHorizontal != other->svg_inherited_flags._glyphOrientationHorizontal
|| svg_inherited_flags._glyphOrientationVertical != other->svg_inherited_flags._glyphOrientationVertical
|| svg_noninherited_flags.f._alignmentBaseline != other->svg_noninherited_flags.f._alignmentBaseline
|| svg_noninherited_flags.f._dominantBaseline != other->svg_noninherited_flags.f._dominantBaseline
|| svg_noninherited_flags.f._baselineShift != other->svg_noninherited_flags.f._baselineShift)
return StyleDifferenceLayout;
bool miscNotEqual = misc != other->misc;
if (miscNotEqual && misc->baselineShiftValue != other->misc->baselineShiftValue)
return StyleDifferenceLayout;
if (svg_inherited_flags._capStyle != other->svg_inherited_flags._capStyle
|| svg_inherited_flags._joinStyle != other->svg_inherited_flags._joinStyle)
return StyleDifferenceLayout;
if (stroke != other->stroke) {
if (stroke->width != other->stroke->width
|| stroke->paintType != other->stroke->paintType
|| stroke->paintColor != other->stroke->paintColor
|| stroke->paintUri != other->stroke->paintUri
|| stroke->miterLimit != other->stroke->miterLimit
|| stroke->dashArray != other->stroke->dashArray
|| stroke->dashOffset != other->stroke->dashOffset
|| stroke->visitedLinkPaintColor != other->stroke->visitedLinkPaintColor
|| stroke->visitedLinkPaintUri != other->stroke->visitedLinkPaintUri
|| stroke->visitedLinkPaintType != other->stroke->visitedLinkPaintType)
return StyleDifferenceLayout;
ASSERT(stroke->opacity != other->stroke->opacity);
return StyleDifferenceRepaint;
}
if (svg_noninherited_flags.f._vectorEffect != other->svg_noninherited_flags.f._vectorEffect)
return StyleDifferenceLayout;
if (miscNotEqual) {
if (misc->floodColor != other->misc->floodColor
|| misc->floodOpacity != other->misc->floodOpacity
|| misc->lightingColor != other->misc->lightingColor)
return StyleDifferenceRepaint;
}
if (fill->paintType != other->fill->paintType || fill->paintColor != other->fill->paintColor
|| fill->paintUri != other->fill->paintUri || fill->opacity != other->fill->opacity)
return StyleDifferenceRepaint;
if (stops != other->stops)
return StyleDifferenceRepaint;
if (svg_inherited_flags._colorRendering != other->svg_inherited_flags._colorRendering
|| svg_inherited_flags._shapeRendering != other->svg_inherited_flags._shapeRendering
|| svg_inherited_flags._clipRule != other->svg_inherited_flags._clipRule
|| svg_inherited_flags._fillRule != other->svg_inherited_flags._fillRule
|| svg_inherited_flags._colorInterpolation != other->svg_inherited_flags._colorInterpolation
|| svg_inherited_flags._colorInterpolationFilters != other->svg_inherited_flags._colorInterpolationFilters
|| svg_inherited_flags._paintOrder != other->svg_inherited_flags._paintOrder)
return StyleDifferenceRepaint;
if (svg_noninherited_flags.f.bufferedRendering != other->svg_noninherited_flags.f.bufferedRendering)
return StyleDifferenceRepaint;
if (svg_noninherited_flags.f.maskType != other->svg_noninherited_flags.f.maskType)
return StyleDifferenceRepaint;
return StyleDifferenceEqual;
}
EPaintOrderType SVGRenderStyle::paintOrderType(unsigned index) const
{
ASSERT(index < ((1 << kPaintOrderBitwidth)-1));
unsigned pt = (paintOrder() >> (kPaintOrderBitwidth*index)) & ((1u << kPaintOrderBitwidth) - 1);
return (EPaintOrderType)pt;
}
}