gecko/layout/svg/base/src/nsSVGMarkerFrame.cpp

268 lines
8.0 KiB
C++
Raw Normal View History

/* -*- 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"
#include "nsIDOMSVGRect.h"
#include "nsIDocument.h"
#include "nsSVGMarkerFrame.h"
#include "nsSVGPathGeometryFrame.h"
#include "nsSVGMatrix.h"
#include "nsSVGMarkerElement.h"
#include "nsSVGPathGeometryElement.h"
#include "gfxContext.h"
nsIFrame*
NS_NewSVGMarkerFrame(nsIPresShell* aPresShell, nsIContent* aContent, nsStyleContext* aContext)
{
nsCOMPtr<nsIDOMSVGMarkerElement> marker = do_QueryInterface(aContent);
if (!marker) {
NS_ASSERTION(marker, "Can't create frame! Content is not an SVG marker");
return nsnull;
}
return new (aPresShell) nsSVGMarkerFrame(aContext);
}
nsIContent *
NS_GetSVGMarkerElement(nsIURI *aURI, nsIContent *aContent)
{
nsIContent* content = nsContentUtils::GetReferencedElement(aURI, aContent);
nsCOMPtr<nsIDOMSVGMarkerElement> marker = do_QueryInterface(content);
if (marker)
return content;
return nsnull;
}
//----------------------------------------------------------------------
// nsSVGContainerFrame methods:
already_AddRefed<nsIDOMSVGMatrix>
nsSVGMarkerFrame::GetCanvasTM()
{
if (mInUse2) {
// really we should return null, but the rest of the SVG code
// isn't set up for that. We're going to be bailing drawing the
// marker anyway, so return an identity.
nsCOMPtr<nsIDOMSVGMatrix> ident;
NS_NewSVGMatrix(getter_AddRefs(ident));
nsIDOMSVGMatrix *retval = ident.get();
NS_IF_ADDREF(retval);
return retval;
}
mInUse2 = PR_TRUE;
// get the tm from the path geometry frame and append local transform
NS_ASSERTION(mMarkedFrame, "null nsSVGPathGeometry frame");
nsCOMPtr<nsIDOMSVGMatrix> markedTM;
mMarkedFrame->GetCanvasTM(getter_AddRefs(markedTM));
NS_ASSERTION(markedTM, "null marked TM");
// get element
nsSVGMarkerElement *element = static_cast<nsSVGMarkerElement*>(mContent);
// scale/move marker
nsCOMPtr<nsIDOMSVGMatrix> markerTM;
element->GetMarkerTransform(mStrokeWidth, mX, mY, mAngle, getter_AddRefs(markerTM));
// viewport marker
nsCOMPtr<nsIDOMSVGMatrix> viewBoxTM;
nsresult res =
element->GetViewboxToViewportTransform(getter_AddRefs(viewBoxTM));
nsCOMPtr<nsIDOMSVGMatrix> tmpTM;
nsCOMPtr<nsIDOMSVGMatrix> resultTM;
markedTM->Multiply(markerTM, getter_AddRefs(tmpTM));
if (NS_SUCCEEDED(res) && viewBoxTM) {
tmpTM->Multiply(viewBoxTM, getter_AddRefs(resultTM));
} else {
NS_WARNING("We should propagate the fact that the viewBox is invalid.");
resultTM = tmpTM;
}
nsIDOMSVGMatrix *retval = resultTM.get();
NS_IF_ADDREF(retval);
mInUse2 = PR_FALSE;
return retval;
}
nsresult
nsSVGMarkerFrame::PaintMark(nsSVGRenderState *aContext,
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;
nsSVGMarkerElement *marker = static_cast<nsSVGMarkerElement*>(mContent);
nsCOMPtr<nsIDOMSVGAnimatedRect> arect;
nsresult rv = marker->GetViewBox(getter_AddRefs(arect));
NS_ENSURE_SUCCESS(rv, rv);
nsCOMPtr<nsIDOMSVGRect> rect;
rv = arect->GetAnimVal(getter_AddRefs(rect));
NS_ENSURE_SUCCESS(rv, rv);
float x, y, width, height;
rect->GetX(&x);
rect->GetY(&y);
rect->GetWidth(&width);
rect->GetHeight(&height);
if (width <= 0.0f || height <= 0.0f) {
// We must disable rendering if the viewBox width or height are zero.
return NS_OK;
}
AutoMarkerReferencer markerRef(this, aMarkedFrame);
mStrokeWidth = aStrokeWidth;
mX = aMark->x;
mY = aMark->y;
mAngle = aMark->angle;
gfxContext *gfx = aContext->GetGfxContext();
if (GetStyleDisplay()->IsScrollableOverflow()) {
nsCOMPtr<nsIDOMSVGMatrix> matrix = GetCanvasTM();
NS_ENSURE_TRUE(matrix, NS_ERROR_OUT_OF_MEMORY);
gfx->Save();
nsSVGUtils::SetClipRect(gfx, matrix, x, y, width, height);
}
for (nsIFrame* kid = mFrames.FirstChild(); kid;
kid = kid->GetNextSibling()) {
nsISVGChildFrame* SVGFrame = nsnull;
CallQueryInterface(kid, &SVGFrame);
if (SVGFrame) {
// The CTM of each frame referencing us may be different.
SVGFrame->NotifySVGChanged(nsISVGChildFrame::SUPPRESS_INVALIDATION |
nsISVGChildFrame::TRANSFORM_CHANGED);
nsSVGUtils::PaintChildWithEffects(aContext, nsnull, kid);
}
}
if (GetStyleDisplay()->IsScrollableOverflow())
gfx->Restore();
return NS_OK;
}
nsRect
nsSVGMarkerFrame::RegionMark(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 region, and
// the document has a marker reference loop.
if (mInUse)
return nsRect(0,0,0,0);
AutoMarkerReferencer markerRef(this, aMarkedFrame);
mStrokeWidth = aStrokeWidth;
mX = aMark->x;
mY = aMark->y;
mAngle = aMark->angle;
// Force children to update their covered region
for (nsIFrame* kid = mFrames.FirstChild();
kid;
kid = kid->GetNextSibling()) {
nsISVGChildFrame* child = nsnull;
CallQueryInterface(kid, &child);
if (child)
child->UpdateCoveredRegion();
}
// Now get the combined covered region
return nsSVGUtils::GetCoveredRegion(mFrames);
}
nsIAtom *
nsSVGMarkerFrame::GetType() const
{
return nsGkAtoms::svgMarkerFrame;
}
void
nsSVGMarkerFrame::SetParentCoordCtxProvider(nsSVGSVGElement *aContext)
{
nsSVGMarkerElement *marker = static_cast<nsSVGMarkerElement*>(mContent);
marker->SetParentCoordCtxProvider(aContext);
}
//----------------------------------------------------------------------
// helper class
nsSVGMarkerFrame::AutoMarkerReferencer::AutoMarkerReferencer(
nsSVGMarkerFrame *aFrame,
nsSVGPathGeometryFrame *aMarkedFrame)
: mFrame(aFrame)
{
mFrame->mInUse = PR_TRUE;
mFrame->mMarkedFrame = aMarkedFrame;
nsSVGSVGElement *ctx =
static_cast<nsSVGElement*>(aMarkedFrame->GetContent())->GetCtx();
mFrame->SetParentCoordCtxProvider(ctx);
}
nsSVGMarkerFrame::AutoMarkerReferencer::~AutoMarkerReferencer()
{
mFrame->SetParentCoordCtxProvider(nsnull);
mFrame->mMarkedFrame = nsnull;
mFrame->mInUse = PR_FALSE;
}