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
|
|
|
|
* Crocodile Clips Ltd..
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Alex Fritze <alex.fritze@crocodile-clips.com> (original author)
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
2009-04-24 16:17:43 -07:00
|
|
|
#include "nsSVGInnerSVGFrame.h"
|
2012-03-20 05:15:55 -07:00
|
|
|
|
|
|
|
#include "nsRenderingContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsISVGChildFrame.h"
|
|
|
|
#include "nsIDOMSVGAnimatedRect.h"
|
|
|
|
#include "nsSVGSVGElement.h"
|
|
|
|
#include "nsSVGContainerFrame.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
|
|
|
|
nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGInnerSVGFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-07-25 02:16:02 -07:00
|
|
|
return new (aPresShell) nsSVGInnerSVGFrame(aContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGInnerSVGFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIFrame methods
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_QUERYFRAME_HEAD(nsSVGInnerSVGFrame)
|
2009-04-24 16:17:43 -07:00
|
|
|
NS_QUERYFRAME_ENTRY(nsSVGInnerSVGFrame)
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_QUERYFRAME_ENTRY(nsISVGSVGFrame)
|
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsSVGInnerSVGFrameBase)
|
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGInnerSVGFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMSVGSVGElement> svg = do_QueryInterface(aContent);
|
|
|
|
NS_ASSERTION(svg, "Content is not an SVG 'svg' element!");
|
|
|
|
|
|
|
|
return nsSVGInnerSVGFrameBase::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom *
|
|
|
|
nsSVGInnerSVGFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgInnerSVGFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsISVGChildFrame methods
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-03-02 00:28:59 -08:00
|
|
|
nsSVGInnerSVGFrame::PaintSVG(nsRenderingContext *aContext,
|
2008-10-20 01:42:03 -07:00
|
|
|
const nsIntRect *aDirtyRect)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-01-27 12:39:27 -08:00
|
|
|
gfxContextAutoSaveRestore autoSR;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-27 12:39:27 -08:00
|
|
|
if (GetStyleDisplay()->IsScrollableOverflow()) {
|
|
|
|
float x, y, width, height;
|
|
|
|
static_cast<nsSVGSVGElement*>(mContent)->
|
|
|
|
GetAnimatedLengthValues(&x, &y, &width, &height, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-27 12:39:27 -08:00
|
|
|
if (width <= 0 || height <= 0) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-18 04:31:25 -07:00
|
|
|
nsSVGContainerFrame *parent = static_cast<nsSVGContainerFrame*>(mParent);
|
|
|
|
gfxMatrix clipTransform = parent->GetCanvasTM();
|
|
|
|
|
2012-03-02 00:28:59 -08:00
|
|
|
gfxContext *gfx = aContext->ThebesContext();
|
2009-06-18 04:31:25 -07:00
|
|
|
autoSR.SetContext(gfx);
|
|
|
|
gfxRect clipRect =
|
|
|
|
nsSVGUtils::GetClipRectForFrame(this, x, y, width, height);
|
|
|
|
nsSVGUtils::SetClipRect(gfx, clipTransform, clipRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-27 12:39:27 -08:00
|
|
|
return nsSVGInnerSVGFrameBase::PaintSVG(aContext, aDirtyRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-01-25 01:27:03 -08:00
|
|
|
void
|
|
|
|
nsSVGInnerSVGFrame::NotifySVGChanged(PRUint32 aFlags)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-11 08:53:36 -07:00
|
|
|
NS_ABORT_IF_FALSE(!(aFlags & DO_NOT_NOTIFY_RENDERING_OBSERVERS) ||
|
|
|
|
(GetStateBits() & NS_STATE_SVG_NONDISPLAY_CHILD),
|
|
|
|
"Must be NS_STATE_SVG_NONDISPLAY_CHILD!");
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(aFlags & (TRANSFORM_CHANGED | COORD_CONTEXT_CHANGED),
|
|
|
|
"Invalidation logic may need adjusting");
|
|
|
|
|
2008-01-25 01:27:03 -08:00
|
|
|
if (aFlags & COORD_CONTEXT_CHANGED) {
|
|
|
|
|
|
|
|
nsSVGSVGElement *svg = static_cast<nsSVGSVGElement*>(mContent);
|
|
|
|
|
|
|
|
// Coordinate context changes affect mCanvasTM if we have a
|
|
|
|
// percentage 'x' or 'y', or if we have a percentage 'width' or 'height' AND
|
|
|
|
// a 'viewBox'.
|
|
|
|
|
|
|
|
if (!(aFlags & TRANSFORM_CHANGED) &&
|
2008-09-15 08:40:25 -07:00
|
|
|
(svg->mLengthAttributes[nsSVGSVGElement::X].IsPercentage() ||
|
|
|
|
svg->mLengthAttributes[nsSVGSVGElement::Y].IsPercentage() ||
|
2011-09-30 01:25:01 -07:00
|
|
|
(svg->mViewBox.IsValid() &&
|
2008-09-15 08:40:25 -07:00
|
|
|
(svg->mLengthAttributes[nsSVGSVGElement::WIDTH].IsPercentage() ||
|
|
|
|
svg->mLengthAttributes[nsSVGSVGElement::HEIGHT].IsPercentage())))) {
|
2008-01-25 01:27:03 -08:00
|
|
|
|
|
|
|
aFlags |= TRANSFORM_CHANGED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX We could clear the COORD_CONTEXT_CHANGED flag in some circumstances
|
|
|
|
// if we have a non-percentage 'width' AND 'height, or if we have a 'viewBox'
|
|
|
|
// rect. This is because, when we have a viewBox rect, the viewBox rect
|
|
|
|
// is the coordinate context for our children, and it isn't changing.
|
|
|
|
// Percentage lengths on our children will continue to resolve to the
|
|
|
|
// same number of user units because they're relative to our viewBox rect. The
|
|
|
|
// same is true if we have a non-percentage width and height and don't have a
|
|
|
|
// viewBox. We (the <svg>) establish the coordinate context for our children. Our
|
|
|
|
// children don't care about changes to our parent coordinate context unless that
|
|
|
|
// change results in a change to the coordinate context that _we_ establish. Hence
|
|
|
|
// we can (should, really) stop propagating COORD_CONTEXT_CHANGED in these cases.
|
|
|
|
// We'd actually need to check that we have a viewBox rect and not just
|
|
|
|
// that viewBox is set, since it could be set to none.
|
|
|
|
// Take care not to break the testcase for bug 394463 when implementing this
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & TRANSFORM_CHANGED) {
|
|
|
|
// make sure our cached transform matrix gets (lazily) updated
|
|
|
|
mCanvasTM = nsnull;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-01-25 01:27:03 -08:00
|
|
|
nsSVGInnerSVGFrameBase::NotifySVGChanged(aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 12:19:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGInnerSVGFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None) {
|
|
|
|
if (aAttribute == nsGkAtoms::width ||
|
2011-09-30 01:25:01 -07:00
|
|
|
aAttribute == nsGkAtoms::height) {
|
|
|
|
|
2012-03-03 01:21:09 -08:00
|
|
|
nsSVGSVGElement* svg = static_cast<nsSVGSVGElement*>(mContent);
|
|
|
|
if (svg->mViewBox.IsValid()) {
|
2011-09-30 01:25:01 -07:00
|
|
|
|
|
|
|
// make sure our cached transform matrix gets (lazily) updated
|
|
|
|
mCanvasTM = nsnull;
|
|
|
|
|
|
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(this, TRANSFORM_CHANGED);
|
|
|
|
} else {
|
2012-03-03 01:21:09 -08:00
|
|
|
|
|
|
|
PRUint32 flags = COORD_CONTEXT_CHANGED;
|
|
|
|
|
|
|
|
if (mCanvasTM && mCanvasTM->IsSingular()) {
|
|
|
|
|
|
|
|
mCanvasTM = nsnull;
|
|
|
|
|
|
|
|
flags |= TRANSFORM_CHANGED;
|
|
|
|
}
|
|
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(this, flags);
|
2011-09-30 01:25:01 -07:00
|
|
|
}
|
|
|
|
|
2010-10-07 12:19:32 -07:00
|
|
|
} else if (aAttribute == nsGkAtoms::transform ||
|
2011-09-30 01:25:01 -07:00
|
|
|
aAttribute == nsGkAtoms::preserveAspectRatio ||
|
|
|
|
aAttribute == nsGkAtoms::viewBox ||
|
2010-10-07 12:19:32 -07:00
|
|
|
aAttribute == nsGkAtoms::x ||
|
|
|
|
aAttribute == nsGkAtoms::y) {
|
|
|
|
// make sure our cached transform matrix gets (lazily) updated
|
|
|
|
mCanvasTM = nsnull;
|
|
|
|
|
2011-09-30 01:25:01 -07:00
|
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(
|
|
|
|
this, aAttribute == nsGkAtoms::viewBox ?
|
|
|
|
TRANSFORM_CHANGED | COORD_CONTEXT_CHANGED : TRANSFORM_CHANGED);
|
2010-10-07 12:19:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-08-25 02:23:54 -07:00
|
|
|
NS_IMETHODIMP_(nsIFrame*)
|
|
|
|
nsSVGInnerSVGFrame::GetFrameForPoint(const nsPoint &aPoint)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (GetStyleDisplay()->IsScrollableOverflow()) {
|
2009-07-23 01:35:59 -07:00
|
|
|
nsSVGElement *content = static_cast<nsSVGElement*>(mContent);
|
|
|
|
nsSVGContainerFrame *parent = static_cast<nsSVGContainerFrame*>(mParent);
|
2009-07-21 15:55:48 -07:00
|
|
|
|
2009-07-23 01:35:59 -07:00
|
|
|
float clipX, clipY, clipWidth, clipHeight;
|
|
|
|
content->GetAnimatedLengthValues(&clipX, &clipY, &clipWidth, &clipHeight, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-23 01:35:59 -07:00
|
|
|
if (!nsSVGUtils::HitTestRect(parent->GetCanvasTM(),
|
2007-03-22 10:30:00 -07:00
|
|
|
clipX, clipY, clipWidth, clipHeight,
|
2008-08-25 02:23:54 -07:00
|
|
|
PresContext()->AppUnitsToDevPixels(aPoint.x),
|
|
|
|
PresContext()->AppUnitsToDevPixels(aPoint.y))) {
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-25 02:23:54 -07:00
|
|
|
return nsSVGInnerSVGFrameBase::GetFrameForPoint(aPoint);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsISVGSVGFrame methods:
|
|
|
|
|
2012-02-04 05:58:46 -08:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSVGInnerSVGFrame::NotifyViewportChange()
|
|
|
|
{
|
2011-09-30 01:25:01 -07:00
|
|
|
NS_ERROR("Inner SVG frames should not get Viewport changes.");
|
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
|
|
|
nsSVGInnerSVGFrame::GetCanvasTM()
|
|
|
|
{
|
|
|
|
if (!mCanvasTM) {
|
|
|
|
NS_ASSERTION(mParent, "null parent");
|
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
nsSVGContainerFrame *parent = static_cast<nsSVGContainerFrame*>(mParent);
|
|
|
|
nsSVGSVGElement *content = static_cast<nsSVGSVGElement*>(mContent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-02-17 00:12:47 -08:00
|
|
|
gfxMatrix tm = content->PrependLocalTransformsTo(parent->GetCanvasTM());
|
2009-04-28 21:31:34 -07:00
|
|
|
|
2011-09-25 14:04:32 -07:00
|
|
|
mCanvasTM = new gfxMatrix(tm);
|
2009-04-28 21:31:34 -07:00
|
|
|
}
|
2011-09-25 14:04:32 -07:00
|
|
|
return *mCanvasTM;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|