1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
|
/*
* Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
* Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "SVGGraphicsElement.h"
#include "LegacyRenderSVGPath.h"
#include "RenderAncestorIterator.h"
#include "RenderElementInlines.h"
#include "RenderLayer.h"
#include "RenderSVGHiddenContainer.h"
#include "RenderSVGPath.h"
#include "RenderSVGResource.h"
#include "SVGMatrix.h"
#include "SVGNames.h"
#include "SVGPathData.h"
#include "SVGRect.h"
#include "SVGRenderSupport.h"
#include "SVGSVGElement.h"
#include "SVGStringList.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/NeverDestroyed.h>
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(SVGGraphicsElement);
SVGGraphicsElement::SVGGraphicsElement(const QualifiedName& tagName, Document& document, UniqueRef<SVGPropertyRegistry>&& propertyRegistry)
: SVGElement(tagName, document, WTFMove(propertyRegistry))
, SVGTests(this)
, m_shouldIsolateBlending(false)
{
static std::once_flag onceFlag;
std::call_once(onceFlag, [] {
PropertyRegistry::registerProperty<SVGNames::transformAttr, &SVGGraphicsElement::m_transform>();
});
}
SVGGraphicsElement::~SVGGraphicsElement() = default;
Ref<SVGMatrix> SVGGraphicsElement::getCTMForBindings()
{
return SVGMatrix::create(getCTM());
}
AffineTransform SVGGraphicsElement::getCTM(StyleUpdateStrategy styleUpdateStrategy)
{
return SVGLocatable::computeCTM(this, SVGLocatable::NearestViewportScope, styleUpdateStrategy);
}
Ref<SVGMatrix> SVGGraphicsElement::getScreenCTMForBindings()
{
return SVGMatrix::create(getScreenCTM());
}
AffineTransform SVGGraphicsElement::getScreenCTM(StyleUpdateStrategy styleUpdateStrategy)
{
return SVGLocatable::computeCTM(this, SVGLocatable::ScreenScope, styleUpdateStrategy);
}
AffineTransform SVGGraphicsElement::animatedLocalTransform() const
{
#if ENABLE(LAYER_BASED_SVG_ENGINE)
// LBSE handles transforms via RenderLayer, no need to handle CSS transforms here.
if (document().settings().layerBasedSVGEngineEnabled()) {
if (m_supplementalTransform)
return *m_supplementalTransform * transform().concatenate();
return transform().concatenate();
}
#endif
AffineTransform matrix;
auto* style = renderer() ? &renderer()->style() : nullptr;
bool hasSpecifiedTransform = style && style->hasTransform();
// Honor any of the transform-related CSS properties if set.
if (hasSpecifiedTransform || (style && (style->translate() || style->scale() || style->rotate()))) {
// Note: objectBoundingBox is an emptyRect for elements like pattern or clipPath.
// See the "Object bounding box units" section of http://dev.w3.org/csswg/css3-transforms/
TransformationMatrix transform;
style->applyTransform(transform, renderer()->transformReferenceBoxRect());
// Flatten any 3D transform.
matrix = transform.toAffineTransform();
// CSS bakes the zoom factor into lengths, including translation components.
// In order to align CSS & SVG transforms, we need to invert this operation.
float zoom = style->effectiveZoom();
if (zoom != 1) {
matrix.setE(matrix.e() / zoom);
matrix.setF(matrix.f() / zoom);
}
}
// If we didn't have the CSS "transform" property set, we must account for the "transform" attribute.
if (!hasSpecifiedTransform && style) {
auto t = style->computeTransformOrigin(renderer()->transformReferenceBoxRect()).xy();
matrix.translate(t);
matrix *= transform().concatenate();
matrix.translate(-t.x(), -t.y());
}
if (m_supplementalTransform)
return *m_supplementalTransform * matrix;
return matrix;
}
AffineTransform* SVGGraphicsElement::ensureSupplementalTransform()
{
if (!m_supplementalTransform)
m_supplementalTransform = makeUnique<AffineTransform>();
return m_supplementalTransform.get();
}
void SVGGraphicsElement::attributeChanged(const QualifiedName& name, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason attributeModificationReason)
{
if (name == SVGNames::transformAttr)
m_transform->baseVal()->parse(newValue);
SVGTests::parseAttribute(name, newValue);
SVGElement::attributeChanged(name, oldValue, newValue, attributeModificationReason);
}
void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName)
{
if (PropertyRegistry::isKnownAttribute(attrName)) {
ASSERT(attrName == SVGNames::transformAttr);
InstanceInvalidationGuard guard(*this);
#if ENABLE(LAYER_BASED_SVG_ENGINE)
if (document().settings().layerBasedSVGEngineEnabled()) {
if (auto* layerRenderer = dynamicDowncast<RenderLayerModelObject>(renderer()))
layerRenderer->repaintOrRelayoutAfterSVGTransformChange();
return;
}
#endif
if (auto* renderer = this->renderer())
renderer->setNeedsTransformUpdate();
updateSVGRendererForElementChange();
return;
}
SVGElement::svgAttributeChanged(attrName);
SVGTests::svgAttributeChanged(attrName);
}
SVGElement* SVGGraphicsElement::nearestViewportElement() const
{
return SVGTransformable::nearestViewportElement(this);
}
SVGElement* SVGGraphicsElement::farthestViewportElement() const
{
return SVGTransformable::farthestViewportElement(this);
}
Ref<SVGRect> SVGGraphicsElement::getBBoxForBindings()
{
return SVGRect::create(getBBox());
}
FloatRect SVGGraphicsElement::getBBox(StyleUpdateStrategy styleUpdateStrategy)
{
return SVGTransformable::getBBox(this, styleUpdateStrategy);
}
RenderPtr<RenderElement> SVGGraphicsElement::createElementRenderer(RenderStyle&& style, const RenderTreePosition&)
{
#if ENABLE(LAYER_BASED_SVG_ENGINE)
if (document().settings().layerBasedSVGEngineEnabled())
return createRenderer<RenderSVGPath>(*this, WTFMove(style));
#endif
return createRenderer<LegacyRenderSVGPath>(*this, WTFMove(style));
}
void SVGGraphicsElement::didAttachRenderers()
{
#if ENABLE(LAYER_BASED_SVG_ENGINE)
if (document().settings().layerBasedSVGEngineEnabled()) {
if (auto* svgRenderer = dynamicDowncast<RenderLayerModelObject>(renderer()); svgRenderer && lineageOfType<RenderSVGHiddenContainer>(*svgRenderer).first()) {
if (auto* layer = svgRenderer->layer())
layer->dirtyVisibleContentStatus();
}
}
#endif
}
Path SVGGraphicsElement::toClipPath()
{
// FIXME: [LBSE] Stop mutating the path here and stop calling animatedLocalTransform().
Path path = pathFromGraphicsElement(this);
// FIXME: How do we know the element has done a layout?
path.transform(animatedLocalTransform());
return path;
}
}
|