2005-09-14 02:38:36 +04: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-09-14 02:38:36 +04:00
|
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
|
// Main header first:
|
2011-08-11 17:29:50 +04:00
|
|
|
|
#include "nsSVGPatternFrame.h"
|
|
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
|
// Keep others in (case-insensitive) order:
|
2013-10-29 12:14:40 +04:00
|
|
|
|
#include "gfx2DGlue.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
|
#include "gfxContext.h"
|
|
|
|
|
#include "gfxMatrix.h"
|
|
|
|
|
#include "gfxPattern.h"
|
|
|
|
|
#include "gfxPlatform.h"
|
2013-10-29 12:14:40 +04:00
|
|
|
|
#include "mozilla/gfx/2D.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
|
#include "nsContentUtils.h"
|
2007-01-30 03:06:41 +03:00
|
|
|
|
#include "nsGkAtoms.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
|
#include "nsISVGChildFrame.h"
|
2005-09-14 02:38:36 +04:00
|
|
|
|
#include "nsStyleContext.h"
|
2008-10-01 04:51:05 +04:00
|
|
|
|
#include "nsSVGEffects.h"
|
2014-01-04 12:29:02 +04:00
|
|
|
|
#include "nsSVGPathGeometryFrame.h"
|
2013-01-17 00:51:00 +04:00
|
|
|
|
#include "mozilla/dom/SVGPatternElement.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
|
#include "nsSVGUtils.h"
|
2013-04-15 02:56:34 +04:00
|
|
|
|
#include "nsSVGAnimatedTransformList.h"
|
2012-09-22 23:26:05 +04:00
|
|
|
|
#include "SVGContentUtils.h"
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2010-12-20 03:45:29 +03:00
|
|
|
|
using namespace mozilla;
|
2013-01-10 03:02:45 +04:00
|
|
|
|
using namespace mozilla::dom;
|
2013-10-29 12:14:40 +04:00
|
|
|
|
using namespace mozilla::gfx;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
// Helper classes
|
|
|
|
|
|
2015-09-03 19:15:23 +03:00
|
|
|
|
class MOZ_RAII nsSVGPatternFrame::AutoPatternReferencer
|
2011-01-16 10:36:34 +03:00
|
|
|
|
{
|
|
|
|
|
public:
|
2014-09-01 07:36:37 +04:00
|
|
|
|
explicit AutoPatternReferencer(nsSVGPatternFrame *aFrame
|
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
|
2011-01-16 10:36:34 +03:00
|
|
|
|
: mFrame(aFrame)
|
|
|
|
|
{
|
2013-12-26 22:49:49 +04:00
|
|
|
|
MOZ_GUARD_OBJECT_NOTIFIER_INIT;
|
2011-01-16 10:36:34 +03:00
|
|
|
|
// Reference loops should normally be detected in advance and handled, so
|
|
|
|
|
// we're not expecting to encounter them here
|
2015-02-10 01:34:50 +03:00
|
|
|
|
MOZ_ASSERT(!mFrame->mLoopFlag, "Undetected reference loop!");
|
2011-10-17 18:59:28 +04:00
|
|
|
|
mFrame->mLoopFlag = true;
|
2011-01-16 10:36:34 +03:00
|
|
|
|
}
|
|
|
|
|
~AutoPatternReferencer() {
|
2011-10-17 18:59:28 +04:00
|
|
|
|
mFrame->mLoopFlag = false;
|
2011-01-16 10:36:34 +03:00
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
nsSVGPatternFrame *mFrame;
|
2013-12-26 22:49:49 +04:00
|
|
|
|
MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
|
2011-01-16 10:36:34 +03:00
|
|
|
|
};
|
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
// Implementation
|
|
|
|
|
|
2008-10-11 15:29:35 +04:00
|
|
|
|
nsSVGPatternFrame::nsSVGPatternFrame(nsStyleContext* aContext) :
|
2006-09-08 17:54:05 +04:00
|
|
|
|
nsSVGPatternFrameBase(aContext),
|
2011-10-17 18:59:28 +04:00
|
|
|
|
mLoopFlag(false),
|
|
|
|
|
mNoHRefURI(false)
|
2006-09-08 17:54:05 +04:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGPatternFrame)
|
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
// nsIFrame methods:
|
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
|
nsSVGPatternFrame::AttributeChanged(int32_t aNameSpaceID,
|
2006-03-22 04:40:00 +03:00
|
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
|
int32_t aModType)
|
2006-03-22 04:40:00 +03:00
|
|
|
|
{
|
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
|
(aAttribute == nsGkAtoms::patternUnits ||
|
|
|
|
|
aAttribute == nsGkAtoms::patternContentUnits ||
|
|
|
|
|
aAttribute == nsGkAtoms::patternTransform ||
|
|
|
|
|
aAttribute == nsGkAtoms::x ||
|
|
|
|
|
aAttribute == nsGkAtoms::y ||
|
|
|
|
|
aAttribute == nsGkAtoms::width ||
|
|
|
|
|
aAttribute == nsGkAtoms::height ||
|
|
|
|
|
aAttribute == nsGkAtoms::preserveAspectRatio ||
|
|
|
|
|
aAttribute == nsGkAtoms::viewBox)) {
|
2012-06-23 18:19:00 +04:00
|
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2008-10-01 04:51:05 +04:00
|
|
|
|
}
|
2006-03-22 04:40:00 +03:00
|
|
|
|
|
|
|
|
|
if (aNameSpaceID == kNameSpaceID_XLink &&
|
|
|
|
|
aAttribute == nsGkAtoms::href) {
|
2008-10-01 04:51:05 +04:00
|
|
|
|
// Blow away our reference, if any
|
2010-03-29 05:46:55 +04:00
|
|
|
|
Properties().Delete(nsSVGEffects::HrefProperty());
|
2011-10-17 18:59:28 +04:00
|
|
|
|
mNoHRefURI = false;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
// And update whoever references us
|
2012-06-23 18:19:00 +04:00
|
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(this);
|
2006-03-22 04:40:00 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nsSVGPatternFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
|
aAttribute, aModType);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 21:31:34 +03:00
|
|
|
|
#ifdef DEBUG
|
2013-03-20 05:47:48 +04:00
|
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
|
nsSVGPatternFrame::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::pattern), "Content is not an SVG pattern");
|
2009-01-19 21:31:34 +03:00
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
|
nsSVGPatternFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2009-01-19 21:31:34 +03:00
|
|
|
|
}
|
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
nsIAtom*
|
|
|
|
|
nsSVGPatternFrame::GetType() const
|
|
|
|
|
{
|
2006-12-26 20:47:52 +03:00
|
|
|
|
return nsGkAtoms::svgPatternFrame;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2006-06-01 19:31:15 +04:00
|
|
|
|
// nsSVGContainerFrame methods:
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
|
|
|
|
// If our GetCanvasTM is getting called, we
|
|
|
|
|
// need to return *our current* transformation
|
|
|
|
|
// matrix, which depends on our units parameters
|
|
|
|
|
// and X, Y, Width, and Height
|
2009-04-29 08:31:34 +04:00
|
|
|
|
gfxMatrix
|
2014-09-08 15:28:50 +04:00
|
|
|
|
nsSVGPatternFrame::GetCanvasTM()
|
2007-07-17 13:24:27 +04:00
|
|
|
|
{
|
2005-09-14 02:38:36 +04:00
|
|
|
|
if (mCTM) {
|
2011-09-26 01:04:32 +04:00
|
|
|
|
return *mCTM;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
2009-04-29 08:31:34 +04:00
|
|
|
|
|
|
|
|
|
// Do we know our rendering parent?
|
|
|
|
|
if (mSource) {
|
|
|
|
|
// Yes, use it!
|
2014-09-08 15:28:50 +04:00
|
|
|
|
return mSource->GetCanvasTM();
|
2009-04-29 08:31:34 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We get here when geometry in the <pattern> container is updated
|
|
|
|
|
return gfxMatrix();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-31 14:17:11 +04:00
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// Helper functions
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
2013-10-29 12:14:40 +04:00
|
|
|
|
/** Calculate the maximum expansion of a matrix */
|
|
|
|
|
static float
|
|
|
|
|
MaxExpansion(const Matrix &aMatrix)
|
|
|
|
|
{
|
|
|
|
|
// maximum expansion derivation from
|
|
|
|
|
// http://lists.cairographics.org/archives/cairo/2004-October/001980.html
|
|
|
|
|
// and also implemented in cairo_matrix_transformed_circle_major_axis
|
|
|
|
|
double a = aMatrix._11;
|
|
|
|
|
double b = aMatrix._12;
|
|
|
|
|
double c = aMatrix._21;
|
|
|
|
|
double d = aMatrix._22;
|
|
|
|
|
double f = (a * a + b * b + c * c + d * d) / 2;
|
|
|
|
|
double g = (a * a + b * b - c * c - d * d) / 2;
|
|
|
|
|
double h = a * c + b * d;
|
|
|
|
|
return sqrt(f + sqrt(g * g + h * h));
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-31 14:17:11 +04:00
|
|
|
|
// The SVG specification says that the 'patternContentUnits' attribute "has no effect if
|
2012-08-01 22:30:00 +04:00
|
|
|
|
// attribute ‘viewBox’ is specified". We still need to include a bbox scale
|
2012-07-31 14:17:11 +04:00
|
|
|
|
// if the viewBox is specified and _patternUnits_ is set to or defaults to
|
|
|
|
|
// objectBoundingBox though, since in that case the viewBox is relative to the bbox
|
|
|
|
|
static bool
|
|
|
|
|
IncludeBBoxScale(const nsSVGViewBox& aViewBox,
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint32_t aPatternContentUnits, uint32_t aPatternUnits)
|
2012-07-31 14:17:11 +04:00
|
|
|
|
{
|
|
|
|
|
return (!aViewBox.IsExplicitlySet() &&
|
2013-02-18 06:14:02 +04:00
|
|
|
|
aPatternContentUnits == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) ||
|
2012-07-31 14:17:11 +04:00
|
|
|
|
(aViewBox.IsExplicitlySet() &&
|
2013-02-18 06:14:02 +04:00
|
|
|
|
aPatternUnits == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX);
|
2012-07-31 14:17:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Given the matrix for the pattern element's own transform, this returns a
|
|
|
|
|
// combined matrix including the transforms applicable to its target.
|
2014-06-18 04:07:21 +04:00
|
|
|
|
static Matrix
|
2012-08-22 19:56:38 +04:00
|
|
|
|
GetPatternMatrix(uint16_t aPatternUnits,
|
2014-06-18 04:07:21 +04:00
|
|
|
|
const Matrix &patternTransform,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const gfxRect &bbox,
|
|
|
|
|
const gfxRect &callerBBox,
|
2013-10-29 12:14:40 +04:00
|
|
|
|
const Matrix &callerCTM)
|
2012-07-31 14:17:11 +04:00
|
|
|
|
{
|
|
|
|
|
// We really want the pattern matrix to handle translations
|
|
|
|
|
gfxFloat minx = bbox.X();
|
|
|
|
|
gfxFloat miny = bbox.Y();
|
|
|
|
|
|
2013-02-18 06:14:02 +04:00
|
|
|
|
if (aPatternUnits == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
|
2012-07-31 14:17:11 +04:00
|
|
|
|
minx += callerBBox.X();
|
|
|
|
|
miny += callerBBox.Y();
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-29 12:14:40 +04:00
|
|
|
|
float scale = 1.0f / MaxExpansion(callerCTM);
|
2014-06-18 04:07:21 +04:00
|
|
|
|
Matrix patternMatrix = patternTransform;
|
2014-09-10 21:29:35 +04:00
|
|
|
|
patternMatrix.PreScale(scale, scale);
|
|
|
|
|
patternMatrix.PreTranslate(minx, miny);
|
2012-07-31 14:17:11 +04:00
|
|
|
|
|
|
|
|
|
return patternMatrix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
|
GetTargetGeometry(gfxRect *aBBox,
|
|
|
|
|
const nsSVGViewBox &aViewBox,
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint16_t aPatternContentUnits,
|
|
|
|
|
uint16_t aPatternUnits,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
nsIFrame *aTarget,
|
2013-10-29 12:14:40 +04:00
|
|
|
|
const Matrix &aContextMatrix,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const gfxRect *aOverrideBounds)
|
|
|
|
|
{
|
|
|
|
|
*aBBox = aOverrideBounds ? *aOverrideBounds : nsSVGUtils::GetBBox(aTarget);
|
|
|
|
|
|
|
|
|
|
// Sanity check
|
|
|
|
|
if (IncludeBBoxScale(aViewBox, aPatternContentUnits, aPatternUnits) &&
|
|
|
|
|
(aBBox->Width() <= 0 || aBBox->Height() <= 0)) {
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OK, now fix up the bounding box to reflect user coordinates
|
|
|
|
|
// We handle device unit scaling in pattern matrix
|
2013-10-29 12:14:40 +04:00
|
|
|
|
float scale = MaxExpansion(aContextMatrix);
|
2012-07-31 14:17:11 +04:00
|
|
|
|
if (scale <= 0) {
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
aBBox->Scale(scale);
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
|
already_AddRefed<SourceSurface>
|
2014-09-29 17:15:19 +04:00
|
|
|
|
nsSVGPatternFrame::PaintPattern(const DrawTarget* aDrawTarget,
|
|
|
|
|
Matrix* patternMatrix,
|
2014-06-18 04:07:21 +04:00
|
|
|
|
const Matrix &aContextMatrix,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
nsIFrame *aSource,
|
2012-05-18 12:34:25 +04:00
|
|
|
|
nsStyleSVGPaint nsStyleSVG::*aFillOrStroke,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
float aGraphicOpacity,
|
|
|
|
|
const gfxRect *aOverrideBounds)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* General approach:
|
|
|
|
|
* Set the content geometry stuff
|
2008-10-01 04:51:05 +04:00
|
|
|
|
* Calculate our bbox (using x,y,width,height & patternUnits &
|
2005-09-14 02:38:36 +04:00
|
|
|
|
* patternTransform)
|
|
|
|
|
* Create the surface
|
|
|
|
|
* Calculate the content transformation matrix
|
|
|
|
|
* Get our children (we may need to get them from another Pattern)
|
|
|
|
|
* Call SVGPaint on all of our children
|
|
|
|
|
* Return
|
|
|
|
|
*/
|
|
|
|
|
|
2014-09-30 21:08:14 +04:00
|
|
|
|
nsSVGPatternFrame* patternWithChildren = GetPatternWithChildren();
|
|
|
|
|
if (!patternWithChildren) {
|
2014-06-18 04:07:21 +04:00
|
|
|
|
return nullptr; // Either no kids or a bad reference
|
|
|
|
|
}
|
2014-09-30 21:08:14 +04:00
|
|
|
|
nsIFrame* firstKid = patternWithChildren->mFrames.FirstChild();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const nsSVGViewBox& viewBox = GetViewBox();
|
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint16_t patternContentUnits =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetEnumValue(SVGPatternElement::PATTERNCONTENTUNITS);
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint16_t patternUnits =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetEnumValue(SVGPatternElement::PATTERNUNITS);
|
2012-07-31 14:17:11 +04:00
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
/*
|
|
|
|
|
* Get the content geometry information. This is a little tricky --
|
|
|
|
|
* our parent is probably a <defs>, but we are rendering in the context
|
|
|
|
|
* of some geometry source. Our content geometry information needs to
|
|
|
|
|
* come from our rendering parent as opposed to our content parent. We
|
|
|
|
|
* get that information from aSource, which is passed to us from the
|
|
|
|
|
* backend renderer.
|
2006-04-05 00:40:27 +04:00
|
|
|
|
*
|
|
|
|
|
* There are three "geometries" that we need:
|
|
|
|
|
* 1) The bounding box for the pattern. We use this to get the
|
|
|
|
|
* width and height for the surface, and as the return to
|
|
|
|
|
* GetBBox.
|
|
|
|
|
* 2) The transformation matrix for the pattern. This is not *quite*
|
|
|
|
|
* the same as the canvas transformation matrix that we will
|
|
|
|
|
* provide to our rendering children since we "fudge" it a little
|
|
|
|
|
* to get the renderer to handle the translations correctly for us.
|
|
|
|
|
* 3) The CTM that we return to our children who make up the pattern.
|
2005-09-14 02:38:36 +04:00
|
|
|
|
*/
|
|
|
|
|
|
2006-04-05 00:40:27 +04:00
|
|
|
|
// Get all of the information we need from our "caller" -- i.e.
|
|
|
|
|
// the geometry that is being rendered with a pattern
|
2009-06-11 19:21:03 +04:00
|
|
|
|
gfxRect callerBBox;
|
2012-07-14 03:18:38 +04:00
|
|
|
|
if (NS_FAILED(GetTargetGeometry(&callerBBox,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
viewBox,
|
|
|
|
|
patternContentUnits, patternUnits,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
aSource,
|
2014-06-18 04:07:21 +04:00
|
|
|
|
aContextMatrix,
|
|
|
|
|
aOverrideBounds))) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2006-04-05 00:40:27 +04:00
|
|
|
|
// Construct the CTM that we will provide to our children when we
|
|
|
|
|
// render them into the tile.
|
2012-07-31 14:17:11 +04:00
|
|
|
|
gfxMatrix ctm = ConstructCTM(viewBox, patternContentUnits, patternUnits,
|
2014-06-18 04:07:21 +04:00
|
|
|
|
callerBBox, aContextMatrix, aSource);
|
2009-07-23 12:35:59 +04:00
|
|
|
|
if (ctm.IsSingular()) {
|
2014-06-18 04:07:21 +04:00
|
|
|
|
return nullptr;
|
2009-07-23 12:35:59 +04:00
|
|
|
|
}
|
2009-10-26 22:37:31 +03:00
|
|
|
|
|
2014-09-30 21:08:14 +04:00
|
|
|
|
if (patternWithChildren->mCTM) {
|
|
|
|
|
*patternWithChildren->mCTM = ctm;
|
2011-09-26 01:04:32 +04:00
|
|
|
|
} else {
|
2014-09-30 21:08:14 +04:00
|
|
|
|
patternWithChildren->mCTM = new gfxMatrix(ctm);
|
2011-09-26 01:04:32 +04:00
|
|
|
|
}
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2006-04-05 00:40:27 +04:00
|
|
|
|
// Get the bounding box of the pattern. This will be used to determine
|
|
|
|
|
// the size of the surface, and will also be used to define the bounding
|
|
|
|
|
// box for the pattern tile.
|
2014-06-18 04:07:21 +04:00
|
|
|
|
gfxRect bbox = GetPatternRect(patternUnits, callerBBox, aContextMatrix, aSource);
|
2014-02-21 00:49:14 +04:00
|
|
|
|
if (bbox.Width() <= 0.0 || bbox.Height() <= 0.0) {
|
2014-06-18 04:07:21 +04:00
|
|
|
|
return nullptr;
|
2014-02-21 00:49:14 +04:00
|
|
|
|
}
|
2006-04-05 00:40:27 +04:00
|
|
|
|
|
2011-10-27 12:51:46 +04:00
|
|
|
|
// Get the pattern transform
|
2014-06-18 04:07:21 +04:00
|
|
|
|
Matrix patternTransform = ToMatrix(GetPatternTransform());
|
2011-10-27 12:51:46 +04:00
|
|
|
|
|
2012-05-18 12:34:25 +04:00
|
|
|
|
// revert the vector effect transform so that the pattern appears unchanged
|
|
|
|
|
if (aFillOrStroke == &nsStyleSVG::mStroke) {
|
2014-09-30 21:08:14 +04:00
|
|
|
|
gfxMatrix userToOuterSVG;
|
|
|
|
|
if (nsSVGUtils::GetNonScalingStrokeTransform(aSource, &userToOuterSVG)) {
|
|
|
|
|
patternTransform *= ToMatrix(userToOuterSVG);
|
|
|
|
|
if (patternTransform.IsSingular()) {
|
|
|
|
|
NS_WARNING("Singular matrix painting non-scaling-stroke");
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2014-06-18 04:07:21 +04:00
|
|
|
|
}
|
2012-05-18 12:34:25 +04:00
|
|
|
|
}
|
|
|
|
|
|
2006-04-05 00:40:27 +04:00
|
|
|
|
// Get the transformation matrix that we will hand to the renderer's pattern
|
|
|
|
|
// routine.
|
2012-07-31 14:17:11 +04:00
|
|
|
|
*patternMatrix = GetPatternMatrix(patternUnits, patternTransform,
|
2014-06-18 04:07:21 +04:00
|
|
|
|
bbox, callerBBox, aContextMatrix);
|
2012-08-09 12:17:05 +04:00
|
|
|
|
if (patternMatrix->IsSingular()) {
|
2014-06-18 04:07:21 +04:00
|
|
|
|
return nullptr;
|
2012-08-09 12:17:05 +04:00
|
|
|
|
}
|
2006-04-05 00:40:27 +04:00
|
|
|
|
|
|
|
|
|
// Now that we have all of the necessary geometries, we can
|
2006-06-28 16:32:26 +04:00
|
|
|
|
// create our surface.
|
2014-06-18 04:07:21 +04:00
|
|
|
|
gfxRect transformedBBox = ThebesRect(patternTransform.TransformBounds(ToRect(bbox)));
|
2007-06-13 13:02:48 +04:00
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
|
bool resultOverflows;
|
2014-02-09 12:04:38 +04:00
|
|
|
|
IntSize surfaceSize =
|
2011-10-04 19:22:46 +04:00
|
|
|
|
nsSVGUtils::ConvertToSurfaceSize(
|
2015-03-29 17:59:08 +03:00
|
|
|
|
transformedBBox.Size(), &resultOverflows);
|
2007-06-13 13:02:48 +04:00
|
|
|
|
|
|
|
|
|
// 0 disables rendering, < 0 is an error
|
2014-06-18 04:07:21 +04:00
|
|
|
|
if (surfaceSize.width <= 0 || surfaceSize.height <= 0) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2007-06-13 13:02:48 +04:00
|
|
|
|
|
2012-08-09 12:17:05 +04:00
|
|
|
|
gfxFloat patternWidth = bbox.Width();
|
|
|
|
|
gfxFloat patternHeight = bbox.Height();
|
|
|
|
|
|
2009-12-23 14:30:44 +03:00
|
|
|
|
if (resultOverflows ||
|
|
|
|
|
patternWidth != surfaceSize.width ||
|
|
|
|
|
patternHeight != surfaceSize.height) {
|
|
|
|
|
// scale drawing to pattern surface size
|
2011-09-26 01:04:32 +04:00
|
|
|
|
gfxMatrix tempTM =
|
2015-04-07 10:45:59 +03:00
|
|
|
|
gfxMatrix(surfaceSize.width / patternWidth, 0.0,
|
|
|
|
|
0.0, surfaceSize.height / patternHeight,
|
|
|
|
|
0.0, 0.0);
|
2014-09-30 21:08:14 +04:00
|
|
|
|
patternWithChildren->mCTM->PreMultiply(tempTM);
|
2007-06-13 13:02:48 +04:00
|
|
|
|
|
2009-12-23 14:30:44 +03:00
|
|
|
|
// and rescale pattern to compensate
|
2014-09-10 21:29:35 +04:00
|
|
|
|
patternMatrix->PreScale(patternWidth / surfaceSize.width,
|
|
|
|
|
patternHeight / surfaceSize.height);
|
2007-06-13 13:02:48 +04:00
|
|
|
|
}
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<DrawTarget> dt =
|
2014-09-29 17:15:19 +04:00
|
|
|
|
aDrawTarget->CreateSimilarDrawTarget(surfaceSize, SurfaceFormat::B8G8R8A8);
|
2014-06-18 04:07:21 +04:00
|
|
|
|
if (!dt) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
2014-11-20 13:40:04 +03:00
|
|
|
|
dt->ClearRect(Rect(0, 0, surfaceSize.width, surfaceSize.height));
|
2006-11-27 20:30:57 +03:00
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<gfxContext> gfx = new gfxContext(dt);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2007-04-24 12:11:22 +04:00
|
|
|
|
if (aGraphicOpacity != 1.0f) {
|
2012-03-02 12:28:59 +04:00
|
|
|
|
gfx->Save();
|
2015-11-11 18:15:39 +03:00
|
|
|
|
gfx->PushGroupForBlendBack(gfxContentType::COLOR_ALPHA, aGraphicOpacity);
|
2007-04-24 12:11:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
// OK, now render -- note that we use "firstKid", which
|
|
|
|
|
// we got at the beginning because it takes care of the
|
|
|
|
|
// referenced pattern situation for us
|
2006-02-09 21:15:03 +03:00
|
|
|
|
|
2010-07-01 20:40:30 +04:00
|
|
|
|
if (aSource->IsFrameOfType(nsIFrame::eSVGGeometry)) {
|
|
|
|
|
// Set the geometrical parent of the pattern we are rendering
|
2014-09-30 21:08:14 +04:00
|
|
|
|
patternWithChildren->mSource = static_cast<nsSVGPathGeometryFrame*>(aSource);
|
2010-07-01 20:40:30 +04:00
|
|
|
|
}
|
2006-02-09 21:15:03 +03:00
|
|
|
|
|
2010-08-13 17:32:15 +04:00
|
|
|
|
// Delay checking NS_FRAME_DRAWING_AS_PAINTSERVER bit until here so we can
|
|
|
|
|
// give back a clear surface if there's a loop
|
2014-09-30 21:08:14 +04:00
|
|
|
|
if (!(patternWithChildren->GetStateBits() & NS_FRAME_DRAWING_AS_PAINTSERVER)) {
|
|
|
|
|
patternWithChildren->AddStateBits(NS_FRAME_DRAWING_AS_PAINTSERVER);
|
2008-10-01 04:51:05 +04:00
|
|
|
|
for (nsIFrame* kid = firstKid; kid;
|
|
|
|
|
kid = kid->GetNextSibling()) {
|
2010-12-23 08:48:31 +03:00
|
|
|
|
// The CTM of each frame referencing us can be different
|
|
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
|
|
|
|
if (SVGFrame) {
|
2012-07-23 15:00:43 +04:00
|
|
|
|
SVGFrame->NotifySVGChanged(nsISVGChildFrame::TRANSFORM_CHANGED);
|
2010-12-23 08:48:31 +03:00
|
|
|
|
}
|
2014-09-30 21:08:14 +04:00
|
|
|
|
gfxMatrix tm = *(patternWithChildren->mCTM);
|
2015-03-03 14:08:59 +03:00
|
|
|
|
if (kid->GetContent()->IsSVGElement()) {
|
2014-08-29 23:42:07 +04:00
|
|
|
|
tm = static_cast<nsSVGElement*>(kid->GetContent())->
|
2015-12-03 01:36:23 +03:00
|
|
|
|
PrependLocalTransformsTo(tm, eUserSpaceToParent);
|
2014-08-29 23:42:07 +04:00
|
|
|
|
}
|
2014-10-31 23:08:53 +03:00
|
|
|
|
nsSVGUtils::PaintFrameWithEffects(kid, *gfx, tm);
|
2008-10-01 04:51:05 +04:00
|
|
|
|
}
|
2014-09-30 21:08:14 +04:00
|
|
|
|
patternWithChildren->RemoveStateBits(NS_FRAME_DRAWING_AS_PAINTSERVER);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2014-09-30 21:08:14 +04:00
|
|
|
|
patternWithChildren->mSource = nullptr;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2007-04-24 12:11:22 +04:00
|
|
|
|
if (aGraphicOpacity != 1.0f) {
|
2015-11-11 18:15:39 +03:00
|
|
|
|
gfx->PopGroupAndBlend();
|
2012-03-02 12:28:59 +04:00
|
|
|
|
gfx->Restore();
|
2007-04-24 12:11:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2007-04-30 19:53:55 +04:00
|
|
|
|
// caller now owns the surface
|
2014-06-18 04:07:21 +04:00
|
|
|
|
return dt->Snapshot();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Will probably need something like this... */
|
|
|
|
|
// How do we handle the insertion of a new frame?
|
|
|
|
|
// We really don't want to rerender this every time,
|
|
|
|
|
// do we?
|
2014-09-30 21:08:14 +04:00
|
|
|
|
nsSVGPatternFrame*
|
|
|
|
|
nsSVGPatternFrame::GetPatternWithChildren()
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2008-09-30 15:28:20 +04:00
|
|
|
|
// Do we have any children ourselves?
|
2014-09-30 21:08:14 +04:00
|
|
|
|
if (!mFrames.IsEmpty())
|
|
|
|
|
return this;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
|
|
|
|
// No, see if we chain to someone who does
|
2011-01-16 10:36:34 +03:00
|
|
|
|
AutoPatternReferencer patternRef(this);
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2011-10-28 02:57:10 +04:00
|
|
|
|
nsSVGPatternFrame* next = GetReferencedPatternIfNotInUse();
|
2011-01-16 10:36:34 +03:00
|
|
|
|
if (!next)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2014-09-30 21:08:14 +04:00
|
|
|
|
return next->GetPatternWithChildren();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint16_t
|
|
|
|
|
nsSVGPatternFrame::GetEnumValue(uint32_t aIndex, nsIContent *aDefault)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGEnum& thisEnum =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(mContent)->mEnumAttributes[aIndex];
|
2011-01-16 10:36:34 +03:00
|
|
|
|
|
|
|
|
|
if (thisEnum.IsExplicitlySet())
|
|
|
|
|
return thisEnum.GetAnimValue();
|
|
|
|
|
|
|
|
|
|
AutoPatternReferencer patternRef(this);
|
|
|
|
|
|
|
|
|
|
nsSVGPatternFrame *next = GetReferencedPatternIfNotInUse();
|
|
|
|
|
return next ? next->GetEnumValue(aIndex, aDefault) :
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(aDefault)->
|
2011-01-16 10:36:34 +03:00
|
|
|
|
mEnumAttributes[aIndex].GetAnimValue();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 02:56:34 +04:00
|
|
|
|
nsSVGAnimatedTransformList*
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame::GetPatternTransformList(nsIContent* aDefault)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2013-04-15 02:56:34 +04:00
|
|
|
|
nsSVGAnimatedTransformList *thisTransformList =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(mContent)->GetAnimatedTransformList();
|
2011-09-26 01:04:32 +04:00
|
|
|
|
|
2012-07-30 04:35:26 +04:00
|
|
|
|
if (thisTransformList && thisTransformList->IsExplicitlySet())
|
2011-01-16 10:36:34 +03:00
|
|
|
|
return thisTransformList;
|
|
|
|
|
|
|
|
|
|
AutoPatternReferencer patternRef(this);
|
|
|
|
|
|
|
|
|
|
nsSVGPatternFrame *next = GetReferencedPatternIfNotInUse();
|
|
|
|
|
return next ? next->GetPatternTransformList(aDefault) :
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(aDefault)->mPatternTransform.get();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2007-04-30 19:53:55 +04:00
|
|
|
|
gfxMatrix
|
|
|
|
|
nsSVGPatternFrame::GetPatternTransform()
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2013-04-15 02:56:34 +04:00
|
|
|
|
nsSVGAnimatedTransformList* animTransformList =
|
2011-01-16 10:36:34 +03:00
|
|
|
|
GetPatternTransformList(mContent);
|
2011-09-26 01:04:32 +04:00
|
|
|
|
if (!animTransformList)
|
|
|
|
|
return gfxMatrix();
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2011-09-26 01:04:32 +04:00
|
|
|
|
return animTransformList->GetAnimValue().GetConsolidationMatrix();
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-03 17:42:24 +03:00
|
|
|
|
const nsSVGViewBox &
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame::GetViewBox(nsIContent* aDefault)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2011-01-16 10:36:34 +03:00
|
|
|
|
const nsSVGViewBox &thisViewBox =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(mContent)->mViewBox;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2012-05-03 20:05:40 +04:00
|
|
|
|
if (thisViewBox.IsExplicitlySet())
|
2011-01-16 10:36:34 +03:00
|
|
|
|
return thisViewBox;
|
|
|
|
|
|
|
|
|
|
AutoPatternReferencer patternRef(this);
|
|
|
|
|
|
|
|
|
|
nsSVGPatternFrame *next = GetReferencedPatternIfNotInUse();
|
|
|
|
|
return next ? next->GetViewBox(aDefault) :
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(aDefault)->mViewBox;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2010-12-20 03:45:29 +03:00
|
|
|
|
const SVGAnimatedPreserveAspectRatio &
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame::GetPreserveAspectRatio(nsIContent *aDefault)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2011-01-16 10:36:34 +03:00
|
|
|
|
const SVGAnimatedPreserveAspectRatio &thisPar =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(mContent)->mPreserveAspectRatio;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
if (thisPar.IsExplicitlySet())
|
|
|
|
|
return thisPar;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
AutoPatternReferencer patternRef(this);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame *next = GetReferencedPatternIfNotInUse();
|
|
|
|
|
return next ? next->GetPreserveAspectRatio(aDefault) :
|
2013-01-17 00:51:00 +04:00
|
|
|
|
static_cast<SVGPatternElement *>(aDefault)->mPreserveAspectRatio;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2009-02-03 17:42:24 +03:00
|
|
|
|
const nsSVGLength2 *
|
2012-08-22 19:56:38 +04:00
|
|
|
|
nsSVGPatternFrame::GetLengthValue(uint32_t aIndex, nsIContent *aDefault)
|
2006-03-22 04:40:00 +03:00
|
|
|
|
{
|
2011-01-16 10:36:34 +03:00
|
|
|
|
const nsSVGLength2 *thisLength =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
&static_cast<SVGPatternElement *>(mContent)->mLengthAttributes[aIndex];
|
2005-09-14 02:38:36 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
if (thisLength->IsExplicitlySet())
|
|
|
|
|
return thisLength;
|
|
|
|
|
|
|
|
|
|
AutoPatternReferencer patternRef(this);
|
|
|
|
|
|
|
|
|
|
nsSVGPatternFrame *next = GetReferencedPatternIfNotInUse();
|
|
|
|
|
return next ? next->GetLengthValue(aIndex, aDefault) :
|
2013-01-17 00:51:00 +04:00
|
|
|
|
&static_cast<SVGPatternElement *>(aDefault)->mLengthAttributes[aIndex];
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Private (helper) methods
|
2008-10-01 04:51:05 +04:00
|
|
|
|
nsSVGPatternFrame *
|
|
|
|
|
nsSVGPatternFrame::GetReferencedPattern()
|
|
|
|
|
{
|
|
|
|
|
if (mNoHRefURI)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-09-30 15:28:20 +04:00
|
|
|
|
|
2010-03-29 05:46:55 +04:00
|
|
|
|
nsSVGPaintingProperty *property = static_cast<nsSVGPaintingProperty*>
|
|
|
|
|
(Properties().Get(nsSVGEffects::HrefProperty()));
|
2008-09-30 12:47:20 +04:00
|
|
|
|
|
2008-10-01 04:51:05 +04:00
|
|
|
|
if (!property) {
|
|
|
|
|
// Fetch our pattern element's xlink:href attribute
|
2013-01-17 00:51:00 +04:00
|
|
|
|
SVGPatternElement *pattern = static_cast<SVGPatternElement *>(mContent);
|
2009-01-22 03:56:51 +03:00
|
|
|
|
nsAutoString href;
|
2013-01-17 00:51:00 +04:00
|
|
|
|
pattern->mStringAttributes[SVGPatternElement::HREF].GetAnimValue(href, pattern);
|
2008-10-01 04:51:05 +04:00
|
|
|
|
if (href.IsEmpty()) {
|
2011-10-17 18:59:28 +04:00
|
|
|
|
mNoHRefURI = true;
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr; // no URL
|
2008-09-30 15:28:20 +04:00
|
|
|
|
}
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
|
|
|
|
// Convert href to an nsIURI
|
|
|
|
|
nsCOMPtr<nsIURI> targetURI;
|
|
|
|
|
nsCOMPtr<nsIURI> base = mContent->GetBaseURI();
|
|
|
|
|
nsContentUtils::NewURIWithDocumentCharset(getter_AddRefs(targetURI), href,
|
|
|
|
|
mContent->GetCurrentDoc(), base);
|
|
|
|
|
|
2010-03-29 05:46:55 +04:00
|
|
|
|
property =
|
|
|
|
|
nsSVGEffects::GetPaintingProperty(targetURI, this, nsSVGEffects::HrefProperty());
|
2008-10-01 04:51:05 +04:00
|
|
|
|
if (!property)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-09-30 15:28:20 +04:00
|
|
|
|
}
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
|
|
|
|
nsIFrame *result = property->GetReferencedFrame();
|
|
|
|
|
if (!result)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
|
|
|
|
nsIAtom* frameType = result->GetType();
|
|
|
|
|
if (frameType != nsGkAtoms::svgPatternFrame)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
|
|
|
|
return static_cast<nsSVGPatternFrame*>(result);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame *
|
|
|
|
|
nsSVGPatternFrame::GetReferencedPatternIfNotInUse()
|
2008-10-01 04:51:05 +04:00
|
|
|
|
{
|
2011-01-16 10:36:34 +03:00
|
|
|
|
nsSVGPatternFrame *referenced = GetReferencedPattern();
|
|
|
|
|
if (!referenced)
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
if (referenced->mLoopFlag) {
|
|
|
|
|
// XXXjwatt: we should really send an error to the JavaScript Console here:
|
|
|
|
|
NS_WARNING("pattern reference loop detected while inheriting attribute!");
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2011-01-16 10:36:34 +03:00
|
|
|
|
}
|
2008-10-01 04:51:05 +04:00
|
|
|
|
|
2011-01-16 10:36:34 +03:00
|
|
|
|
return referenced;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-11 19:21:03 +04:00
|
|
|
|
gfxRect
|
2012-08-22 19:56:38 +04:00
|
|
|
|
nsSVGPatternFrame::GetPatternRect(uint16_t aPatternUnits,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const gfxRect &aTargetBBox,
|
2013-10-29 12:14:40 +04:00
|
|
|
|
const Matrix &aTargetCTM,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
nsIFrame *aTarget)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
|
|
|
|
// We need to initialize our box
|
2006-03-22 04:40:00 +03:00
|
|
|
|
float x,y,width,height;
|
|
|
|
|
|
|
|
|
|
// Get the pattern x,y,width, and height
|
2009-02-03 17:42:24 +03:00
|
|
|
|
const nsSVGLength2 *tmpX, *tmpY, *tmpHeight, *tmpWidth;
|
2013-01-17 00:51:00 +04:00
|
|
|
|
tmpX = GetLengthValue(SVGPatternElement::ATTR_X);
|
|
|
|
|
tmpY = GetLengthValue(SVGPatternElement::ATTR_Y);
|
|
|
|
|
tmpHeight = GetLengthValue(SVGPatternElement::ATTR_HEIGHT);
|
|
|
|
|
tmpWidth = GetLengthValue(SVGPatternElement::ATTR_WIDTH);
|
2006-03-22 04:40:00 +03:00
|
|
|
|
|
2013-02-18 06:14:02 +04:00
|
|
|
|
if (aPatternUnits == SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
|
2009-06-11 19:21:03 +04:00
|
|
|
|
x = nsSVGUtils::ObjectSpace(aTargetBBox, tmpX);
|
|
|
|
|
y = nsSVGUtils::ObjectSpace(aTargetBBox, tmpY);
|
|
|
|
|
width = nsSVGUtils::ObjectSpace(aTargetBBox, tmpWidth);
|
|
|
|
|
height = nsSVGUtils::ObjectSpace(aTargetBBox, tmpHeight);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
} else {
|
2013-10-29 12:14:40 +04:00
|
|
|
|
float scale = MaxExpansion(aTargetCTM);
|
2009-06-11 19:21:03 +04:00
|
|
|
|
x = nsSVGUtils::UserSpace(aTarget, tmpX) * scale;
|
|
|
|
|
y = nsSVGUtils::UserSpace(aTarget, tmpY) * scale;
|
|
|
|
|
width = nsSVGUtils::UserSpace(aTarget, tmpWidth) * scale;
|
|
|
|
|
height = nsSVGUtils::UserSpace(aTarget, tmpHeight) * scale;
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-11 19:21:03 +04:00
|
|
|
|
return gfxRect(x, y, width, height);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2009-07-23 12:35:59 +04:00
|
|
|
|
gfxMatrix
|
2012-07-31 14:17:11 +04:00
|
|
|
|
nsSVGPatternFrame::ConstructCTM(const nsSVGViewBox& aViewBox,
|
2012-08-22 19:56:38 +04:00
|
|
|
|
uint16_t aPatternContentUnits,
|
|
|
|
|
uint16_t aPatternUnits,
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const gfxRect &callerBBox,
|
2013-10-29 12:14:40 +04:00
|
|
|
|
const Matrix &callerCTM,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
nsIFrame *aTarget)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2013-01-10 03:02:45 +04:00
|
|
|
|
SVGSVGElement *ctx = nullptr;
|
2010-10-19 02:08:52 +04:00
|
|
|
|
nsIContent* targetContent = aTarget->GetContent();
|
2015-04-07 10:45:59 +03:00
|
|
|
|
gfxFloat scaleX, scaleY;
|
2006-04-05 00:40:27 +04:00
|
|
|
|
|
2009-07-23 12:35:59 +04:00
|
|
|
|
// The objectBoundingBox conversion must be handled in the CTM:
|
2012-07-31 14:17:11 +04:00
|
|
|
|
if (IncludeBBoxScale(aViewBox, aPatternContentUnits, aPatternUnits)) {
|
2015-04-07 10:45:59 +03:00
|
|
|
|
scaleX = callerBBox.Width();
|
|
|
|
|
scaleY = callerBBox.Height();
|
2006-04-05 00:40:27 +04:00
|
|
|
|
} else {
|
2015-03-03 14:08:59 +03:00
|
|
|
|
if (targetContent->IsSVGElement()) {
|
2010-10-19 02:08:52 +04:00
|
|
|
|
ctx = static_cast<nsSVGElement*>(targetContent)->GetCtx();
|
|
|
|
|
}
|
2015-04-07 10:45:59 +03:00
|
|
|
|
scaleX = scaleY = MaxExpansion(callerCTM);
|
2006-04-05 00:40:27 +04:00
|
|
|
|
}
|
|
|
|
|
|
2012-07-31 14:17:11 +04:00
|
|
|
|
if (!aViewBox.IsExplicitlySet()) {
|
2015-04-07 10:45:59 +03:00
|
|
|
|
return gfxMatrix(scaleX, 0.0, 0.0, scaleY, 0.0, 0.0);
|
2012-03-31 14:47:18 +04:00
|
|
|
|
}
|
2012-07-31 14:17:11 +04:00
|
|
|
|
const nsSVGViewBoxRect viewBoxRect = aViewBox.GetAnimValue();
|
2012-03-31 14:47:18 +04:00
|
|
|
|
|
|
|
|
|
if (viewBoxRect.height <= 0.0f || viewBoxRect.width <= 0.0f) {
|
|
|
|
|
return gfxMatrix(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); // singular
|
|
|
|
|
}
|
2009-12-29 12:56:25 +03:00
|
|
|
|
|
2011-04-10 00:57:51 +04:00
|
|
|
|
float viewportWidth, viewportHeight;
|
2015-03-03 14:08:59 +03:00
|
|
|
|
if (targetContent->IsSVGElement()) {
|
2011-04-10 00:57:51 +04:00
|
|
|
|
// If we're dealing with an SVG target only retrieve the context once.
|
|
|
|
|
// Calling the nsIFrame* variant of GetAnimValue would look it up on
|
|
|
|
|
// every call.
|
|
|
|
|
viewportWidth =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetLengthValue(SVGPatternElement::ATTR_WIDTH)->GetAnimValue(ctx);
|
2011-04-10 00:57:51 +04:00
|
|
|
|
viewportHeight =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetLengthValue(SVGPatternElement::ATTR_HEIGHT)->GetAnimValue(ctx);
|
2011-04-10 00:57:51 +04:00
|
|
|
|
} else {
|
|
|
|
|
// No SVG target, call the nsIFrame* variant of GetAnimValue.
|
|
|
|
|
viewportWidth =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetLengthValue(SVGPatternElement::ATTR_WIDTH)->GetAnimValue(aTarget);
|
2011-04-10 00:57:51 +04:00
|
|
|
|
viewportHeight =
|
2013-01-17 00:51:00 +04:00
|
|
|
|
GetLengthValue(SVGPatternElement::ATTR_HEIGHT)->GetAnimValue(aTarget);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
2012-03-31 14:47:18 +04:00
|
|
|
|
|
|
|
|
|
if (viewportWidth <= 0.0f || viewportHeight <= 0.0f) {
|
|
|
|
|
return gfxMatrix(0.0, 0.0, 0.0, 0.0, 0.0, 0.0); // singular
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-30 10:50:17 +04:00
|
|
|
|
Matrix tm = SVGContentUtils::GetViewBoxTransform(
|
2015-04-07 10:45:59 +03:00
|
|
|
|
viewportWidth * scaleX, viewportHeight * scaleY,
|
2012-03-31 14:47:18 +04:00
|
|
|
|
viewBoxRect.x, viewBoxRect.y,
|
|
|
|
|
viewBoxRect.width, viewBoxRect.height,
|
2011-04-10 00:57:51 +04:00
|
|
|
|
GetPreserveAspectRatio());
|
|
|
|
|
|
2015-04-07 10:45:59 +03:00
|
|
|
|
return ThebesMatrix(tm);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2006-05-16 19:55:01 +04:00
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
// nsSVGPaintServerFrame methods:
|
|
|
|
|
|
2010-07-01 20:40:30 +04:00
|
|
|
|
already_AddRefed<gfxPattern>
|
|
|
|
|
nsSVGPatternFrame::GetPaintServerPattern(nsIFrame *aSource,
|
2014-09-29 17:15:19 +04:00
|
|
|
|
const DrawTarget* aDrawTarget,
|
2012-07-14 03:18:38 +04:00
|
|
|
|
const gfxMatrix& aContextMatrix,
|
2012-05-18 12:34:25 +04:00
|
|
|
|
nsStyleSVGPaint nsStyleSVG::*aFillOrStroke,
|
2010-07-01 20:40:30 +04:00
|
|
|
|
float aGraphicOpacity,
|
|
|
|
|
const gfxRect *aOverrideBounds)
|
2006-05-16 19:55:01 +04:00
|
|
|
|
{
|
2008-02-09 00:52:04 +03:00
|
|
|
|
if (aGraphicOpacity == 0.0f) {
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<gfxPattern> pattern = new gfxPattern(Color());
|
2010-07-01 20:40:30 +04:00
|
|
|
|
return pattern.forget();
|
2008-02-09 00:52:04 +03:00
|
|
|
|
}
|
2007-04-24 12:11:22 +04:00
|
|
|
|
|
2006-05-16 19:55:01 +04:00
|
|
|
|
// Paint it!
|
2014-06-18 04:07:21 +04:00
|
|
|
|
Matrix pMatrix;
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<SourceSurface> surface =
|
2014-09-29 17:15:19 +04:00
|
|
|
|
PaintPattern(aDrawTarget, &pMatrix, ToMatrix(aContextMatrix), aSource,
|
|
|
|
|
aFillOrStroke, aGraphicOpacity, aOverrideBounds);
|
2007-10-02 18:57:47 +04:00
|
|
|
|
|
2014-06-18 04:07:21 +04:00
|
|
|
|
if (!surface) {
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2006-09-26 20:36:03 +04:00
|
|
|
|
}
|
2006-05-16 19:55:01 +04:00
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<gfxPattern> pattern = new gfxPattern(surface, pMatrix);
|
2006-09-26 20:36:03 +04:00
|
|
|
|
|
2008-03-17 20:15:43 +03:00
|
|
|
|
if (!pattern || pattern->CairoStatus())
|
2012-07-30 18:20:58 +04:00
|
|
|
|
return nullptr;
|
2006-05-16 19:55:01 +04:00
|
|
|
|
|
2015-09-25 10:58:23 +03:00
|
|
|
|
pattern->SetExtend(ExtendMode::REPEAT);
|
2010-07-01 20:40:30 +04:00
|
|
|
|
return pattern.forget();
|
2006-05-16 19:55:01 +04:00
|
|
|
|
}
|
|
|
|
|
|
2005-09-14 02:38:36 +04:00
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
// Public functions
|
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
|
nsIFrame* NS_NewSVGPatternFrame(nsIPresShell* aPresShell,
|
|
|
|
|
nsStyleContext* aContext)
|
2005-09-14 02:38:36 +04:00
|
|
|
|
{
|
2008-10-11 15:29:35 +04:00
|
|
|
|
return new (aPresShell) nsSVGPatternFrame(aContext);
|
2005-09-14 02:38:36 +04:00
|
|
|
|
}
|
|
|
|
|
|