2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is the Mozilla SVG project.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is IBM Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2004
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsIDOMSVGAnimatedRect.h"
|
2007-03-30 02:03:40 -07:00
|
|
|
#include "nsIDOMSVGRect.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsSVGMarkerFrame.h"
|
|
|
|
#include "nsSVGPathGeometryFrame.h"
|
2008-10-10 06:14:05 -07:00
|
|
|
#include "nsSVGEffects.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsSVGMarkerElement.h"
|
|
|
|
#include "nsSVGPathGeometryElement.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
|
|
|
|
nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGMarkerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return new (aPresShell) nsSVGMarkerFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGMarkerFrame)
|
|
|
|
|
2008-10-10 06:14:05 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIFrame methods:
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGMarkerFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::markerUnits ||
|
|
|
|
aAttribute == nsGkAtoms::refX ||
|
|
|
|
aAttribute == nsGkAtoms::refY ||
|
|
|
|
aAttribute == nsGkAtoms::markerWidth ||
|
|
|
|
aAttribute == nsGkAtoms::markerHeight ||
|
|
|
|
aAttribute == nsGkAtoms::orient ||
|
|
|
|
aAttribute == nsGkAtoms::preserveAspectRatio ||
|
|
|
|
aAttribute == nsGkAtoms::viewBox)) {
|
|
|
|
nsSVGEffects::InvalidateRenderingObservers(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsSVGMarkerFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGMarkerFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMSVGMarkerElement> marker = do_QueryInterface(aContent);
|
|
|
|
NS_ASSERTION(marker, "Content is not an SVG marker");
|
|
|
|
|
|
|
|
return nsSVGMarkerFrameBase::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2008-10-10 06:14:05 -07:00
|
|
|
nsIAtom *
|
|
|
|
nsSVGMarkerFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgMarkerFrame;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGContainerFrame methods:
|
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
gfxMatrix
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSVGMarkerFrame::GetCanvasTM()
|
|
|
|
{
|
2009-04-28 21:31:34 -07:00
|
|
|
NS_ASSERTION(mMarkedFrame, "null nsSVGPathGeometry frame");
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mInUse2) {
|
2009-04-28 21:31:34 -07:00
|
|
|
// We're going to be bailing drawing the marker, so return an identity.
|
|
|
|
return gfxMatrix();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
nsSVGMarkerElement *content = static_cast<nsSVGMarkerElement*>(mContent);
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mInUse2 = true;
|
2009-04-28 21:31:34 -07:00
|
|
|
gfxMatrix markedTM = mMarkedFrame->GetCanvasTM();
|
2011-10-17 07:59:28 -07:00
|
|
|
mInUse2 = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-18 13:50:59 -08:00
|
|
|
gfxMatrix markerTM = content->GetMarkerTransform(mStrokeWidth, mX, mY, mAutoAngle);
|
2009-07-23 01:35:59 -07:00
|
|
|
gfxMatrix viewBoxTM = content->GetViewBoxTransform();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-23 01:35:59 -07:00
|
|
|
return viewBoxTM * markerTM * markedTM;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult
|
2012-03-02 00:28:59 -08:00
|
|
|
nsSVGMarkerFrame::PaintMark(nsRenderingContext *aContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame,
|
|
|
|
nsSVGMark *aMark, float aStrokeWidth)
|
|
|
|
{
|
|
|
|
// If the flag is set when we get here, it means this marker frame
|
|
|
|
// has already been used painting the current mark, and the document
|
|
|
|
// has a marker reference loop.
|
|
|
|
if (mInUse)
|
|
|
|
return NS_OK;
|
|
|
|
|
2011-09-21 00:53:09 -07:00
|
|
|
AutoMarkerReferencer markerRef(this, aMarkedFrame);
|
2008-02-21 09:43:25 -08:00
|
|
|
|
2011-09-21 00:53:09 -07:00
|
|
|
nsSVGMarkerElement *marker = static_cast<nsSVGMarkerElement*>(mContent);
|
2008-02-21 09:43:25 -08:00
|
|
|
|
2011-09-21 00:53:09 -07:00
|
|
|
const nsSVGViewBoxRect viewBox = marker->GetViewBoxRect();
|
2008-02-21 09:43:25 -08:00
|
|
|
|
2011-09-21 00:53:09 -07:00
|
|
|
if (viewBox.width <= 0.0f || viewBox.height <= 0.0f) {
|
2008-02-21 09:43:25 -08:00
|
|
|
// We must disable rendering if the viewBox width or height are zero.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
mStrokeWidth = aStrokeWidth;
|
|
|
|
mX = aMark->x;
|
|
|
|
mY = aMark->y;
|
2010-02-18 13:50:59 -08:00
|
|
|
mAutoAngle = aMark->angle;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-02 00:28:59 -08:00
|
|
|
gfxContext *gfx = aContext->ThebesContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (GetStyleDisplay()->IsScrollableOverflow()) {
|
|
|
|
gfx->Save();
|
2009-06-17 13:51:40 -07:00
|
|
|
gfxRect clipRect =
|
2011-09-21 00:53:09 -07:00
|
|
|
nsSVGUtils::GetClipRectForFrame(this, viewBox.x, viewBox.y,
|
|
|
|
viewBox.width, viewBox.height);
|
2009-06-18 04:31:25 -07:00
|
|
|
nsSVGUtils::SetClipRect(gfx, GetCanvasTM(), clipRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsISVGChildFrame* SVGFrame = do_QueryFrame(kid);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (SVGFrame) {
|
2008-01-25 01:27:03 -08:00
|
|
|
// The CTM of each frame referencing us may be different.
|
2012-03-11 08:53:36 -07:00
|
|
|
SVGFrame->NotifySVGChanged(
|
|
|
|
nsISVGChildFrame::DO_NOT_NOTIFY_RENDERING_OBSERVERS |
|
|
|
|
nsISVGChildFrame::TRANSFORM_CHANGED);
|
2008-10-20 01:42:03 -07:00
|
|
|
nsSVGUtils::PaintFrameWithEffects(aContext, nsnull, kid);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GetStyleDisplay()->IsScrollableOverflow())
|
|
|
|
gfx->Restore();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-30 02:25:37 -07:00
|
|
|
gfxRect
|
|
|
|
nsSVGMarkerFrame::GetMarkBBoxContribution(const gfxMatrix &aToBBoxUserspace,
|
|
|
|
PRUint32 aFlags,
|
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame,
|
|
|
|
const nsSVGMark *aMark,
|
|
|
|
float aStrokeWidth)
|
|
|
|
{
|
|
|
|
// If the flag is set when we get here, it means this marker frame
|
|
|
|
// has already been used in calculating the current mark bbox, and
|
|
|
|
// the document has a marker reference loop.
|
|
|
|
if (mInUse)
|
|
|
|
return gfxRect();
|
|
|
|
|
|
|
|
AutoMarkerReferencer markerRef(this, aMarkedFrame);
|
|
|
|
|
2011-10-06 12:03:16 -07:00
|
|
|
nsSVGMarkerElement *content = static_cast<nsSVGMarkerElement*>(mContent);
|
|
|
|
|
|
|
|
const nsSVGViewBoxRect viewBox = content->GetViewBoxRect();
|
|
|
|
|
|
|
|
if (viewBox.width <= 0.0f || viewBox.height <= 0.0f) {
|
|
|
|
return gfxRect();
|
|
|
|
}
|
|
|
|
|
2011-09-30 02:25:37 -07:00
|
|
|
mStrokeWidth = aStrokeWidth;
|
|
|
|
mX = aMark->x;
|
|
|
|
mY = aMark->y;
|
|
|
|
mAutoAngle = aMark->angle;
|
|
|
|
|
|
|
|
gfxMatrix markerTM =
|
|
|
|
content->GetMarkerTransform(mStrokeWidth, mX, mY, mAutoAngle);
|
|
|
|
gfxMatrix viewBoxTM = content->GetViewBoxTransform();
|
|
|
|
|
|
|
|
gfxMatrix tm = viewBoxTM * markerTM * aToBBoxUserspace;
|
|
|
|
|
2012-01-23 09:42:32 -08:00
|
|
|
gfxRect bbox;
|
|
|
|
bool firstChild = true;
|
|
|
|
|
2011-09-30 02:25:37 -07:00
|
|
|
for (nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
|
|
|
nsISVGChildFrame* child = do_QueryFrame(kid);
|
|
|
|
if (child) {
|
|
|
|
// When we're being called to obtain the invalidation area, we need to
|
|
|
|
// pass down all the flags so that stroke is included. However, once DOM
|
|
|
|
// getBBox() accepts flags, maybe we should strip some of those here?
|
2012-01-23 09:42:32 -08:00
|
|
|
|
|
|
|
// We need to include zero width/height vertical/horizontal lines, so we have
|
|
|
|
// to use UnionEdges, but we must special case the first bbox so that we don't
|
|
|
|
// include the initial gfxRect(0,0,0,0).
|
|
|
|
gfxRect childBBox = child->GetBBoxContribution(tm, aFlags);
|
|
|
|
if (firstChild) {
|
|
|
|
bbox = childBBox;
|
|
|
|
firstChild = false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bbox = bbox.UnionEdges(childBBox);
|
2011-09-30 02:25:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return bbox;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
|
|
|
nsSVGMarkerFrame::SetParentCoordCtxProvider(nsSVGSVGElement *aContext)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsSVGMarkerElement *marker = static_cast<nsSVGMarkerElement*>(mContent);
|
2007-03-22 10:30:00 -07:00
|
|
|
marker->SetParentCoordCtxProvider(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// helper class
|
|
|
|
|
|
|
|
nsSVGMarkerFrame::AutoMarkerReferencer::AutoMarkerReferencer(
|
|
|
|
nsSVGMarkerFrame *aFrame,
|
|
|
|
nsSVGPathGeometryFrame *aMarkedFrame)
|
|
|
|
: mFrame(aFrame)
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mFrame->mInUse = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
mFrame->mMarkedFrame = aMarkedFrame;
|
|
|
|
|
|
|
|
nsSVGSVGElement *ctx =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsSVGElement*>(aMarkedFrame->GetContent())->GetCtx();
|
2007-03-22 10:30:00 -07:00
|
|
|
mFrame->SetParentCoordCtxProvider(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGMarkerFrame::AutoMarkerReferencer::~AutoMarkerReferencer()
|
|
|
|
{
|
|
|
|
mFrame->SetParentCoordCtxProvider(nsnull);
|
|
|
|
|
|
|
|
mFrame->mMarkedFrame = nsnull;
|
2011-10-17 07:59:28 -07:00
|
|
|
mFrame->mInUse = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|