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"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsISVGChildFrame.h"
|
|
|
|
#include "nsSVGOuterSVGFrame.h"
|
|
|
|
#include "nsIDOMSVGAnimatedRect.h"
|
|
|
|
#include "nsSVGMatrix.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
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// 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
|
2008-10-20 01:42:03 -07:00
|
|
|
nsSVGInnerSVGFrame::PaintSVG(nsSVGRenderState *aContext,
|
|
|
|
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();
|
|
|
|
|
|
|
|
gfxContext *gfx = aContext->GetGfxContext();
|
|
|
|
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
|
|
|
{
|
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() ||
|
|
|
|
(mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::viewBox) &&
|
|
|
|
(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
|
|
|
}
|
|
|
|
|
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-21 13:34:37 -07:00
|
|
|
nsSVGElement *content = static_cast<nsSVGElement*>(mContent);
|
|
|
|
nsSVGContainerFrame *parent = static_cast<nsSVGContainerFrame*>(mParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-21 13:34:37 -07:00
|
|
|
float clipX, clipY, clipWidth, clipHeight;
|
|
|
|
content->GetAnimatedLengthValues(&clipX, &clipY, &clipWidth, &clipHeight, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-21 13:34:37 -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:
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGInnerSVGFrame::SuspendRedraw()
|
|
|
|
{
|
|
|
|
nsSVGOuterSVGFrame *outerSVGFrame = nsSVGUtils::GetOuterSVGFrame(this);
|
|
|
|
if (!outerSVGFrame) {
|
|
|
|
NS_ERROR("no outer svg frame");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return outerSVGFrame->SuspendRedraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGInnerSVGFrame::UnsuspendRedraw()
|
|
|
|
{
|
|
|
|
nsSVGOuterSVGFrame *outerSVGFrame = nsSVGUtils::GetOuterSVGFrame(this);
|
|
|
|
if (!outerSVGFrame) {
|
|
|
|
NS_ERROR("no outer svg frame");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return outerSVGFrame->UnsuspendRedraw();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSVGInnerSVGFrame::NotifyViewportChange()
|
|
|
|
{
|
2008-01-25 01:27:03 -08:00
|
|
|
PRUint32 flags = COORD_CONTEXT_CHANGED;
|
|
|
|
|
|
|
|
#if 1
|
|
|
|
// XXX nsSVGSVGElement::InvalidateTransformNotifyFrame calls us for changes
|
|
|
|
// to 'x' and 'y'. Until this is fixed, add TRANSFORM_CHANGED to flags
|
|
|
|
// unconditionally.
|
|
|
|
|
|
|
|
flags |= TRANSFORM_CHANGED;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// make sure canvas transform matrix gets (lazily) recalculated:
|
|
|
|
mCanvasTM = nsnull;
|
2008-01-25 01:27:03 -08:00
|
|
|
#else
|
|
|
|
// viewport changes only affect our transform if we have a viewBox attribute
|
|
|
|
if (mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::viewBox)) {
|
|
|
|
// make sure canvas transform matrix gets (lazily) recalculated:
|
|
|
|
mCanvasTM = nsnull;
|
|
|
|
|
|
|
|
flags |= TRANSFORM_CHANGED;
|
|
|
|
}
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// inform children
|
|
|
|
SuspendRedraw();
|
2008-01-25 01:27:03 -08:00
|
|
|
nsSVGUtils::NotifyChildrenOfSVGChange(this, flags);
|
2007-03-22 10:30:00 -07:00
|
|
|
UnsuspendRedraw();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// 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
|
|
|
|
2009-04-28 21:31:34 -07:00
|
|
|
gfxMatrix tm = content->PrependLocalTransformTo(parent->GetCanvasTM());
|
|
|
|
|
|
|
|
mCanvasTM = NS_NewSVGMatrix(tm);
|
|
|
|
}
|
|
|
|
return nsSVGUtils::ConvertSVGMatrixToThebes(mCanvasTM);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|