2005-01-25 06:55:03 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2005-01-25 06:55:03 +03:00
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
// Main header first:
|
2012-03-20 16:15:55 +04:00
|
|
|
#include "nsSVGClipPathFrame.h"
|
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
// Keep others in (case-insensitive) order:
|
|
|
|
#include "gfxContext.h"
|
2014-09-12 11:20:12 +04:00
|
|
|
#include "mozilla/dom/SVGClipPathElement.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsSVGEffects.h"
|
2014-09-29 17:15:19 +04:00
|
|
|
#include "nsSVGPathGeometryElement.h"
|
|
|
|
#include "nsSVGPathGeometryFrame.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsSVGUtils.h"
|
2005-01-25 06:55:03 +03:00
|
|
|
|
2014-09-12 11:20:12 +04:00
|
|
|
using namespace mozilla;
|
2013-01-18 23:52:40 +04:00
|
|
|
using namespace mozilla::dom;
|
2014-09-12 11:20:12 +04:00
|
|
|
using namespace mozilla::gfx;
|
2013-01-18 23:52:40 +04:00
|
|
|
|
2005-01-25 06:55:03 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2005-11-11 05:36:29 +03:00
|
|
|
nsIFrame*
|
2009-01-19 21:31:34 +03:00
|
|
|
NS_NewSVGClipPathFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2005-01-25 06:55:03 +03:00
|
|
|
{
|
2006-03-27 01:30:36 +04:00
|
|
|
return new (aPresShell) nsSVGClipPathFrame(aContext);
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGClipPathFrame)
|
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
void
|
|
|
|
nsSVGClipPathFrame::ApplyClipPath(gfxContext& aContext,
|
|
|
|
nsIFrame* aClippedFrame,
|
|
|
|
const gfxMatrix& aMatrix)
|
2005-01-25 06:55:03 +03:00
|
|
|
{
|
2016-01-26 20:27:44 +03:00
|
|
|
MOZ_ASSERT(IsTrivial(), "Caller needs to use GetClipMask");
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
DrawTarget& aDrawTarget = *aContext.GetDrawTarget();
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
// No need for AutoClipPathReferencer since simple clip paths can't create a
|
|
|
|
// reference loop.
|
2015-11-11 18:15:39 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
// Restore current transform after applying clip path:
|
|
|
|
gfxContextMatrixAutoSaveRestore autoRestore(&aContext);
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
RefPtr<Path> clipPath;
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
nsISVGChildFrame* singleClipPathChild = nullptr;
|
|
|
|
IsTrivial(&singleClipPathChild);
|
|
|
|
|
|
|
|
if (singleClipPathChild) {
|
|
|
|
nsSVGPathGeometryFrame* pathFrame = do_QueryFrame(singleClipPathChild);
|
|
|
|
if (pathFrame) {
|
|
|
|
nsSVGPathGeometryElement* pathElement =
|
|
|
|
static_cast<nsSVGPathGeometryElement*>(pathFrame->GetContent());
|
|
|
|
gfxMatrix toChildsUserSpace = pathElement->
|
|
|
|
PrependLocalTransformsTo(GetClipPathTransform(aClippedFrame) * aMatrix,
|
|
|
|
eUserSpaceToParent);
|
|
|
|
gfxMatrix newMatrix =
|
|
|
|
aContext.CurrentMatrix().PreMultiply(toChildsUserSpace).NudgeToIntegers();
|
|
|
|
if (!newMatrix.IsSingular()) {
|
|
|
|
aContext.SetMatrix(newMatrix);
|
|
|
|
FillRule clipRule =
|
|
|
|
nsSVGUtils::ToFillRule(pathFrame->StyleSVG()->mClipRule);
|
|
|
|
clipPath = pathElement->GetOrBuildPath(aDrawTarget, clipRule);
|
2010-02-26 12:58:42 +03:00
|
|
|
}
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
if (clipPath) {
|
|
|
|
aContext.Clip(clipPath);
|
|
|
|
} else {
|
|
|
|
// The spec says clip away everything if we have no children or the
|
|
|
|
// clipping path otherwise can't be resolved:
|
|
|
|
aContext.Clip(Rect());
|
2010-02-26 12:58:42 +03:00
|
|
|
}
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
|
|
|
|
2015-11-11 18:15:39 +03:00
|
|
|
already_AddRefed<SourceSurface>
|
2016-01-26 20:27:44 +03:00
|
|
|
nsSVGClipPathFrame::GetClipMask(gfxContext& aReferenceContext,
|
|
|
|
nsIFrame* aClippedFrame,
|
|
|
|
const gfxMatrix& aMatrix,
|
|
|
|
Matrix* aMaskTransform,
|
|
|
|
SourceSurface* aExtraMask,
|
|
|
|
const Matrix& aExtraMasksTransform)
|
2015-11-11 18:15:39 +03:00
|
|
|
{
|
2016-01-26 20:27:44 +03:00
|
|
|
MOZ_ASSERT(!IsTrivial(), "Caller needs to use ApplyClipPath");
|
|
|
|
|
|
|
|
DrawTarget& aReferenceDT = *aReferenceContext.GetDrawTarget();
|
|
|
|
|
|
|
|
// If the flag is set when we get here, it means this clipPath frame
|
|
|
|
// has already been used painting the current clip, and the document
|
|
|
|
// has a clip reference loop.
|
|
|
|
if (mInUse) {
|
|
|
|
NS_WARNING("Clip loop detected!");
|
2015-11-11 18:15:39 +03:00
|
|
|
return nullptr;
|
|
|
|
}
|
2016-01-26 20:27:44 +03:00
|
|
|
AutoClipPathReferencer clipRef(this);
|
2015-11-11 18:15:39 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
IntRect devSpaceClipExtents;
|
2015-11-11 18:15:39 +03:00
|
|
|
{
|
|
|
|
gfxContextMatrixAutoSaveRestore autoRestoreMatrix(&aReferenceContext);
|
|
|
|
|
|
|
|
aReferenceContext.SetMatrix(gfxMatrix());
|
|
|
|
gfxRect rect = aReferenceContext.GetClipExtents();
|
2016-01-26 20:27:44 +03:00
|
|
|
devSpaceClipExtents = RoundedOut(ToRect(rect));
|
|
|
|
if (devSpaceClipExtents.IsEmpty()) {
|
|
|
|
// We don't need to create a mask surface, all drawing is clipped anyway.
|
|
|
|
return nullptr;
|
|
|
|
}
|
2015-11-11 18:15:39 +03:00
|
|
|
}
|
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
RefPtr<DrawTarget> maskDT =
|
|
|
|
aReferenceDT.CreateSimilarDrawTarget(devSpaceClipExtents.Size(),
|
|
|
|
SurfaceFormat::A8);
|
2015-11-17 18:27:17 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
gfxMatrix mat = aReferenceContext.CurrentMatrix() *
|
|
|
|
gfxMatrix::Translation(-devSpaceClipExtents.TopLeft());
|
2015-11-11 18:15:39 +03:00
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
// Paint this clipPath's contents into maskDT:
|
2015-11-11 18:15:39 +03:00
|
|
|
{
|
|
|
|
RefPtr<gfxContext> ctx = new gfxContext(maskDT);
|
|
|
|
ctx->SetMatrix(mat);
|
2016-01-26 20:27:44 +03:00
|
|
|
|
|
|
|
// We need to set mMatrixForChildren here so that under the PaintSVG calls
|
|
|
|
// on our children (below) our GetCanvasTM() method will return the correct
|
|
|
|
// transform.
|
|
|
|
mMatrixForChildren = GetClipPathTransform(aClippedFrame) * aMatrix;
|
|
|
|
|
|
|
|
// Check if this clipPath is itself clipped by another clipPath:
|
|
|
|
nsSVGClipPathFrame* clipPathThatClipsClipPath =
|
|
|
|
nsSVGEffects::GetEffectProperties(this).GetClipPathFrame(nullptr);
|
|
|
|
bool clippingOfClipPathRequiredMasking;
|
|
|
|
if (clipPathThatClipsClipPath) {
|
|
|
|
ctx->Save();
|
|
|
|
clippingOfClipPathRequiredMasking = !clipPathThatClipsClipPath->IsTrivial();
|
|
|
|
if (!clippingOfClipPathRequiredMasking) {
|
|
|
|
clipPathThatClipsClipPath->ApplyClipPath(*ctx, aClippedFrame, aMatrix);
|
|
|
|
} else {
|
|
|
|
Matrix maskTransform;
|
|
|
|
RefPtr<SourceSurface> mask =
|
|
|
|
clipPathThatClipsClipPath->GetClipMask(*ctx, aClippedFrame,
|
|
|
|
aMatrix, &maskTransform);
|
|
|
|
ctx->PushGroupForBlendBack(gfxContentType::ALPHA, 1.0,
|
|
|
|
mask, maskTransform);
|
|
|
|
// The corresponding PopGroupAndBlend call below will mask the
|
|
|
|
// blend using |mask|.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paint our children into the mask:
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
|
|
|
if (SVGFrame) {
|
|
|
|
// The CTM of each frame referencing us can be different.
|
|
|
|
SVGFrame->NotifySVGChanged(nsISVGChildFrame::TRANSFORM_CHANGED);
|
|
|
|
|
|
|
|
bool isOK = true;
|
|
|
|
// Children of this clipPath may themselves be clipped.
|
|
|
|
nsSVGClipPathFrame *clipPathThatClipsChild =
|
|
|
|
nsSVGEffects::GetEffectProperties(kid).GetClipPathFrame(&isOK);
|
|
|
|
if (!isOK) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool childsClipPathRequiresMasking;
|
|
|
|
|
|
|
|
if (clipPathThatClipsChild) {
|
|
|
|
childsClipPathRequiresMasking = !clipPathThatClipsChild->IsTrivial();
|
|
|
|
ctx->Save();
|
|
|
|
if (!childsClipPathRequiresMasking) {
|
|
|
|
clipPathThatClipsChild->ApplyClipPath(*ctx, aClippedFrame, aMatrix);
|
|
|
|
} else {
|
|
|
|
Matrix maskTransform;
|
|
|
|
RefPtr<SourceSurface> mask =
|
|
|
|
clipPathThatClipsChild->GetClipMask(*ctx, aClippedFrame,
|
|
|
|
aMatrix, &maskTransform);
|
|
|
|
ctx->PushGroupForBlendBack(gfxContentType::ALPHA, 1.0,
|
|
|
|
mask, maskTransform);
|
|
|
|
// The corresponding PopGroupAndBlend call below will mask the
|
|
|
|
// blend using |mask|.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxMatrix toChildsUserSpace = mMatrixForChildren;
|
|
|
|
nsIFrame* child = do_QueryFrame(SVGFrame);
|
|
|
|
nsIContent* childContent = child->GetContent();
|
|
|
|
if (childContent->IsSVGElement()) {
|
|
|
|
toChildsUserSpace =
|
|
|
|
static_cast<const nsSVGElement*>(childContent)->
|
|
|
|
PrependLocalTransformsTo(mMatrixForChildren, eUserSpaceToParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our children have NS_STATE_SVG_CLIPPATH_CHILD set on them, and
|
|
|
|
// nsSVGPathGeometryFrame::Render checks for that state bit and paints
|
|
|
|
// only the geometry (opaque black) if set.
|
|
|
|
SVGFrame->PaintSVG(*ctx, toChildsUserSpace);
|
|
|
|
|
|
|
|
if (clipPathThatClipsChild) {
|
|
|
|
if (childsClipPathRequiresMasking) {
|
|
|
|
ctx->PopGroupAndBlend();
|
|
|
|
}
|
|
|
|
ctx->Restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (clipPathThatClipsClipPath) {
|
|
|
|
if (clippingOfClipPathRequiredMasking) {
|
|
|
|
ctx->PopGroupAndBlend();
|
|
|
|
}
|
|
|
|
ctx->Restore();
|
|
|
|
}
|
2015-11-11 18:15:39 +03:00
|
|
|
}
|
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
// Moz2D transforms in the opposite direction to Thebes
|
2015-11-11 18:15:39 +03:00
|
|
|
mat.Invert();
|
|
|
|
|
2016-01-26 20:27:44 +03:00
|
|
|
if (aExtraMask) {
|
|
|
|
MOZ_ASSERT(!aExtraMasksTransform.HasNonTranslation());
|
2015-11-11 18:15:39 +03:00
|
|
|
|
|
|
|
RefPtr<SourceSurface> currentMask = maskDT->Snapshot();
|
|
|
|
maskDT->SetTransform(Matrix());
|
2016-01-26 20:27:44 +03:00
|
|
|
maskDT->ClearRect(Rect(0, 0,
|
|
|
|
devSpaceClipExtents.width,
|
|
|
|
devSpaceClipExtents.height));
|
|
|
|
maskDT->MaskSurface(SurfacePattern(currentMask, ExtendMode::CLAMP),
|
|
|
|
aExtraMask,
|
|
|
|
Point(aExtraMasksTransform._31 - devSpaceClipExtents.x,
|
|
|
|
aExtraMasksTransform._32 - devSpaceClipExtents.y));
|
2015-11-11 18:15:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
*aMaskTransform = ToMatrix(mat);
|
|
|
|
return maskDT->Snapshot();
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2014-08-07 11:09:31 +04:00
|
|
|
nsSVGClipPathFrame::PointIsInsideClipPath(nsIFrame* aClippedFrame,
|
|
|
|
const gfxPoint &aPoint)
|
2005-01-25 06:55:03 +03:00
|
|
|
{
|
2006-02-09 22:34:01 +03:00
|
|
|
// If the flag is set when we get here, it means this clipPath frame
|
|
|
|
// has already been used in hit testing against the current clip,
|
|
|
|
// and the document has a clip reference loop.
|
|
|
|
if (mInUse) {
|
|
|
|
NS_WARNING("Clip loop detected!");
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2006-02-09 22:34:01 +03:00
|
|
|
}
|
2007-04-17 13:01:52 +04:00
|
|
|
AutoClipPathReferencer clipRef(this);
|
2006-02-09 22:34:01 +03:00
|
|
|
|
2014-08-07 11:09:31 +04:00
|
|
|
gfxMatrix matrix = GetClipPathTransform(aClippedFrame);
|
|
|
|
if (!matrix.Invert()) {
|
|
|
|
return false;
|
2011-09-26 01:04:32 +04:00
|
|
|
}
|
2014-08-07 11:09:31 +04:00
|
|
|
gfxPoint point = matrix.Transform(aPoint);
|
2005-01-25 06:55:03 +03:00
|
|
|
|
2014-08-07 11:09:31 +04:00
|
|
|
// clipPath elements can themselves be clipped by a different clip path. In
|
|
|
|
// that case the other clip path further clips away the element that is being
|
|
|
|
// clipped by the original clipPath. If this clipPath is being clipped by a
|
|
|
|
// different clip path we need to check if it prevents the original element
|
|
|
|
// from recieving events at aPoint:
|
2010-02-26 12:58:42 +03:00
|
|
|
nsSVGClipPathFrame *clipPathFrame =
|
2012-07-30 18:20:58 +04:00
|
|
|
nsSVGEffects::GetEffectProperties(this).GetClipPathFrame(nullptr);
|
2014-08-07 11:09:31 +04:00
|
|
|
if (clipPathFrame &&
|
|
|
|
!clipPathFrame->PointIsInsideClipPath(aClippedFrame, aPoint)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2014-08-07 11:09:31 +04:00
|
|
|
}
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2005-01-25 06:55:03 +03:00
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
2009-01-12 22:20:59 +03:00
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
2005-01-25 06:55:03 +03:00
|
|
|
if (SVGFrame) {
|
2014-08-07 11:09:31 +04:00
|
|
|
gfxPoint pointForChild = point;
|
|
|
|
gfxMatrix m = static_cast<nsSVGElement*>(kid->GetContent())->
|
2015-12-03 01:36:23 +03:00
|
|
|
PrependLocalTransformsTo(gfxMatrix(), eUserSpaceToParent);
|
2014-08-07 11:09:31 +04:00
|
|
|
if (!m.IsIdentity()) {
|
|
|
|
if (!m.Invert()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pointForChild = m.Transform(point);
|
|
|
|
}
|
|
|
|
if (SVGFrame->GetFrameForPoint(pointForChild)) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2014-08-07 11:09:31 +04:00
|
|
|
}
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2012-06-15 13:06:34 +04:00
|
|
|
nsSVGClipPathFrame::IsTrivial(nsISVGChildFrame **aSingleChild)
|
2006-01-20 20:00:43 +03:00
|
|
|
{
|
2010-02-26 12:58:42 +03:00
|
|
|
// If the clip path is clipped then it's non-trivial
|
2012-07-30 18:20:58 +04:00
|
|
|
if (nsSVGEffects::GetEffectProperties(this).GetClipPathFrame(nullptr))
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2012-06-15 13:06:34 +04:00
|
|
|
if (aSingleChild) {
|
2012-07-30 18:20:58 +04:00
|
|
|
*aSingleChild = nullptr;
|
2012-06-15 13:06:34 +04:00
|
|
|
}
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
nsISVGChildFrame *foundChild = nullptr;
|
2006-01-20 20:00:43 +03:00
|
|
|
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
2009-01-12 22:20:59 +03:00
|
|
|
nsISVGChildFrame *svgChild = do_QueryFrame(kid);
|
2006-06-29 02:04:48 +04:00
|
|
|
if (svgChild) {
|
|
|
|
// We consider a non-trivial clipPath to be one containing
|
|
|
|
// either more than one svg child and/or a svg container
|
2007-04-17 13:01:52 +04:00
|
|
|
if (foundChild || svgChild->IsDisplayContainer())
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-26 12:58:42 +03:00
|
|
|
|
|
|
|
// or where the child is itself clipped
|
2012-07-30 18:20:58 +04:00
|
|
|
if (nsSVGEffects::GetEffectProperties(kid).GetClipPathFrame(nullptr))
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-02-26 12:58:42 +03:00
|
|
|
|
2012-06-15 13:06:34 +04:00
|
|
|
foundChild = svgChild;
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
}
|
2012-06-15 13:06:34 +04:00
|
|
|
if (aSingleChild) {
|
|
|
|
*aSingleChild = foundChild;
|
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2006-01-20 20:00:43 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2010-03-02 12:31:07 +03:00
|
|
|
nsSVGClipPathFrame::IsValid()
|
|
|
|
{
|
|
|
|
if (mInUse) {
|
|
|
|
NS_WARNING("Clip loop detected!");
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-03-02 12:31:07 +03:00
|
|
|
}
|
|
|
|
AutoClipPathReferencer clipRef(this);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool isOK = true;
|
2010-03-02 12:31:07 +03:00
|
|
|
nsSVGEffects::GetEffectProperties(this).GetClipPathFrame(&isOK);
|
|
|
|
if (!isOK) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-03-02 12:31:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
|
|
|
|
|
|
|
nsIAtom *type = kid->GetType();
|
|
|
|
|
|
|
|
if (type == nsGkAtoms::svgUseFrame) {
|
2011-08-25 00:54:30 +04:00
|
|
|
for (nsIFrame* grandKid = kid->GetFirstPrincipalChild(); grandKid;
|
2010-03-02 12:31:07 +03:00
|
|
|
grandKid = grandKid->GetNextSibling()) {
|
|
|
|
|
|
|
|
nsIAtom *type = grandKid->GetType();
|
|
|
|
|
|
|
|
if (type != nsGkAtoms::svgPathGeometryFrame &&
|
2013-12-20 20:38:51 +04:00
|
|
|
type != nsGkAtoms::svgTextFrame) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-03-02 12:31:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (type != nsGkAtoms::svgPathGeometryFrame &&
|
2013-12-20 20:38:51 +04:00
|
|
|
type != nsGkAtoms::svgTextFrame) {
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2010-03-02 12:31:07 +03:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2010-03-02 12:31:07 +03:00
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
nsSVGClipPathFrame::AttributeChanged(int32_t aNameSpaceID,
|
2010-03-24 19:54:48 +03:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2010-03-24 19:54:48 +03:00
|
|
|
{
|
2011-09-19 16:59:52 +04:00
|
|
|
if (aNameSpaceID == kNameSpaceID_None) {
|
|
|
|
if (aAttribute == nsGkAtoms::transform) {
|
2012-06-23 18:18:49 +04:00
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2011-09-19 16:59:52 +04:00
|
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(this,
|
|
|
|
nsISVGChildFrame::TRANSFORM_CHANGED);
|
|
|
|
}
|
|
|
|
if (aAttribute == nsGkAtoms::clipPathUnits) {
|
2014-11-06 12:30:11 +03:00
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2011-09-19 16:59:52 +04:00
|
|
|
}
|
2010-03-24 19:54:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsSVGClipPathFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
nsSVGClipPathFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2009-01-19 21:31:34 +03:00
|
|
|
{
|
2015-03-03 14:08:59 +03:00
|
|
|
NS_ASSERTION(aContent->IsSVGElement(nsGkAtoms::clipPath),
|
2013-01-08 07:22:41 +04:00
|
|
|
"Content is not an SVG clipPath!");
|
2009-01-19 21:31:34 +03:00
|
|
|
|
2010-12-06 23:57:18 +03:00
|
|
|
AddStateBits(NS_STATE_SVG_CLIPPATH_CHILD);
|
2013-03-20 05:47:48 +04:00
|
|
|
nsSVGClipPathFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2009-01-19 21:31:34 +03:00
|
|
|
}
|
|
|
|
|
2005-04-01 23:56:08 +04:00
|
|
|
nsIAtom *
|
|
|
|
nsSVGClipPathFrame::GetType() const
|
|
|
|
{
|
2006-12-26 20:47:52 +03:00
|
|
|
return nsGkAtoms::svgClipPathFrame;
|
2005-04-01 23:56:08 +04:00
|
|
|
}
|
|
|
|
|
2009-04-29 08:31:34 +04:00
|
|
|
gfxMatrix
|
2014-09-08 15:28:50 +04:00
|
|
|
nsSVGClipPathFrame::GetCanvasTM()
|
2005-01-25 06:55:03 +03:00
|
|
|
{
|
2014-08-13 16:34:52 +04:00
|
|
|
return mMatrixForChildren;
|
2005-01-25 06:55:03 +03:00
|
|
|
}
|
2014-05-13 05:24:35 +04:00
|
|
|
|
2014-08-07 11:09:31 +04:00
|
|
|
gfxMatrix
|
|
|
|
nsSVGClipPathFrame::GetClipPathTransform(nsIFrame* aClippedFrame)
|
|
|
|
{
|
|
|
|
SVGClipPathElement *content = static_cast<SVGClipPathElement*>(mContent);
|
|
|
|
|
|
|
|
gfxMatrix tm = content->PrependLocalTransformsTo(gfxMatrix());
|
|
|
|
|
|
|
|
nsSVGEnum* clipPathUnits =
|
|
|
|
&content->mEnumAttributes[SVGClipPathElement::CLIPPATHUNITS];
|
|
|
|
|
|
|
|
return nsSVGUtils::AdjustMatrixForUnits(tm, clipPathUnits, aClippedFrame);
|
|
|
|
}
|
|
|
|
|
2014-05-13 05:24:35 +04:00
|
|
|
SVGBBox
|
|
|
|
nsSVGClipPathFrame::GetBBoxForClipPathFrame(const SVGBBox &aBBox,
|
|
|
|
const gfxMatrix &aMatrix)
|
|
|
|
{
|
|
|
|
nsIContent* node = GetContent()->GetFirstChild();
|
|
|
|
SVGBBox unionBBox, tmpBBox;
|
|
|
|
for (; node; node = node->GetNextSibling()) {
|
|
|
|
nsIFrame *frame =
|
|
|
|
static_cast<nsSVGElement*>(node)->GetPrimaryFrame();
|
|
|
|
if (frame) {
|
|
|
|
nsISVGChildFrame *svg = do_QueryFrame(frame);
|
|
|
|
if (svg) {
|
|
|
|
tmpBBox = svg->GetBBoxContribution(mozilla::gfx::ToMatrix(aMatrix),
|
|
|
|
nsSVGUtils::eBBoxIncludeFill);
|
|
|
|
nsSVGEffects::EffectProperties effectProperties =
|
|
|
|
nsSVGEffects::GetEffectProperties(frame);
|
|
|
|
bool isOK = true;
|
|
|
|
nsSVGClipPathFrame *clipPathFrame =
|
|
|
|
effectProperties.GetClipPathFrame(&isOK);
|
|
|
|
if (clipPathFrame && isOK) {
|
|
|
|
tmpBBox = clipPathFrame->GetBBoxForClipPathFrame(tmpBBox, aMatrix);
|
|
|
|
}
|
|
|
|
tmpBBox.Intersect(aBBox);
|
|
|
|
unionBBox.UnionEdges(tmpBBox);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nsSVGEffects::EffectProperties props =
|
|
|
|
nsSVGEffects::GetEffectProperties(this);
|
|
|
|
if (props.mClipPath) {
|
|
|
|
bool isOK = true;
|
|
|
|
nsSVGClipPathFrame *clipPathFrame = props.GetClipPathFrame(&isOK);
|
|
|
|
if (clipPathFrame && isOK) {
|
|
|
|
tmpBBox = clipPathFrame->GetBBoxForClipPathFrame(aBBox, aMatrix);
|
|
|
|
unionBBox.Intersect(tmpBBox);
|
|
|
|
} else if (!isOK) {
|
|
|
|
unionBBox = SVGBBox();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return unionBBox;
|
|
|
|
}
|