2008-01-03 06:30:02 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2008-01-03 06:30:02 -08:00
|
|
|
|
2012-03-26 04:58:59 -07:00
|
|
|
// Keep in (case-insensitive) order:
|
|
|
|
#include "gfxRect.h"
|
2012-05-16 21:05:09 -07:00
|
|
|
#include "nsSVGEffects.h"
|
2008-01-03 06:30:02 -08:00
|
|
|
#include "nsSVGGFrame.h"
|
2013-01-05 22:25:54 -08:00
|
|
|
#include "mozilla/dom/SVGSwitchElement.h"
|
2012-03-18 03:32:02 -07:00
|
|
|
#include "nsSVGUtils.h"
|
2008-01-03 06:30:02 -08:00
|
|
|
|
2012-03-02 00:28:59 -08:00
|
|
|
class nsRenderingContext;
|
|
|
|
|
2013-12-29 22:50:07 -08:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2008-07-13 04:30:48 -07:00
|
|
|
typedef nsSVGGFrame nsSVGSwitchFrameBase;
|
2008-01-03 06:30:02 -08:00
|
|
|
|
2008-07-13 04:30:48 -07:00
|
|
|
class nsSVGSwitchFrame : public nsSVGSwitchFrameBase
|
2008-01-03 06:30:02 -08:00
|
|
|
{
|
|
|
|
friend nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGSwitchFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2008-01-03 06:30:02 -08:00
|
|
|
protected:
|
|
|
|
nsSVGSwitchFrame(nsStyleContext* aContext) :
|
2008-07-13 04:30:48 -07:00
|
|
|
nsSVGSwitchFrameBase(aContext) {}
|
2008-01-03 06:30:02 -08:00
|
|
|
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
#ifdef DEBUG
|
2013-03-19 18:47:48 -07:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2009-01-19 10:31:34 -08:00
|
|
|
#endif
|
|
|
|
|
2008-01-03 06:30:02 -08:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgSwitchFrame
|
|
|
|
*/
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
2014-01-05 15:31:14 -08:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const
|
2008-01-03 06:30:02 -08:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGSwitch"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2012-07-20 11:12:29 -07:00
|
|
|
|
2008-07-13 04:30:48 -07:00
|
|
|
// nsISVGChildFrame interface:
|
2014-02-19 14:34:31 -08:00
|
|
|
virtual nsresult PaintSVG(nsRenderingContext* aContext,
|
|
|
|
const nsIntRect *aDirtyRect,
|
|
|
|
nsIFrame* aTransformRoot) MOZ_OVERRIDE;
|
|
|
|
nsIFrame* GetFrameForPoint(const nsPoint &aPoint);
|
|
|
|
nsRect GetCoveredRegion();
|
2012-07-21 17:01:44 -07:00
|
|
|
virtual void ReflowSVG();
|
2013-12-29 22:50:07 -08:00
|
|
|
virtual SVGBBox GetBBoxContribution(const Matrix &aToBBoxUserspace,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags);
|
2008-07-13 04:30:48 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsIFrame *GetActiveChildFrame();
|
2008-01-03 06:30:02 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
|
|
|
nsIFrame*
|
2009-01-19 10:31:34 -08:00
|
|
|
NS_NewSVGSwitchFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2008-01-03 06:30:02 -08:00
|
|
|
{
|
2009-01-19 10:31:34 -08:00
|
|
|
return new (aPresShell) nsSVGSwitchFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSVGSwitchFrame)
|
|
|
|
|
2009-01-19 10:31:34 -08:00
|
|
|
#ifdef DEBUG
|
2013-03-19 18:47:48 -07:00
|
|
|
void
|
2009-01-19 10:31:34 -08:00
|
|
|
nsSVGSwitchFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
2013-01-07 19:22:41 -08:00
|
|
|
NS_ASSERTION(aContent->IsSVG(nsGkAtoms::svgSwitch),
|
2013-03-20 09:50:36 -07:00
|
|
|
"Content is not an SVG switch");
|
2008-01-03 06:30:02 -08:00
|
|
|
|
2013-03-19 18:47:48 -07:00
|
|
|
nsSVGSwitchFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2008-01-03 06:30:02 -08:00
|
|
|
}
|
2009-01-19 10:31:34 -08:00
|
|
|
#endif /* DEBUG */
|
2008-01-03 06:30:02 -08:00
|
|
|
|
|
|
|
nsIAtom *
|
|
|
|
nsSVGSwitchFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgSwitchFrame;
|
|
|
|
}
|
2008-07-13 04:30:48 -07:00
|
|
|
|
2013-02-14 03:12:27 -08:00
|
|
|
void
|
2012-07-20 11:12:29 -07:00
|
|
|
nsSVGSwitchFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
nsIFrame* kid = GetActiveChildFrame();
|
|
|
|
if (kid) {
|
2013-02-14 03:08:08 -08:00
|
|
|
BuildDisplayListForChild(aBuilder, kid, aDirtyRect, aLists);
|
2012-07-20 11:12:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-19 14:34:31 -08:00
|
|
|
nsresult
|
2012-03-02 00:28:59 -08:00
|
|
|
nsSVGSwitchFrame::PaintSVG(nsRenderingContext* aContext,
|
2013-09-11 00:27:45 -07:00
|
|
|
const nsIntRect *aDirtyRect,
|
|
|
|
nsIFrame* aTransformRoot)
|
2008-07-13 04:30:48 -07:00
|
|
|
{
|
2012-07-20 11:12:29 -07:00
|
|
|
NS_ASSERTION(!NS_SVGDisplayListPaintingEnabled() ||
|
2013-07-12 00:13:07 -07:00
|
|
|
(mState & NS_FRAME_IS_NONDISPLAY),
|
2012-07-20 11:12:29 -07:00
|
|
|
"If display lists are enabled, only painting of non-display "
|
|
|
|
"SVG should take this code path");
|
|
|
|
|
2013-02-16 13:51:02 -08:00
|
|
|
if (StyleDisplay()->mOpacity == 0.0)
|
2008-07-13 04:30:48 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsIFrame *kid = GetActiveChildFrame();
|
|
|
|
if (kid) {
|
2013-09-11 00:27:45 -07:00
|
|
|
nsSVGUtils::PaintFrameWithEffects(aContext, aDirtyRect, kid, aTransformRoot);
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-19 14:34:31 -08:00
|
|
|
nsIFrame*
|
2008-08-25 02:23:54 -07:00
|
|
|
nsSVGSwitchFrame::GetFrameForPoint(const nsPoint &aPoint)
|
2008-07-13 04:30:48 -07:00
|
|
|
{
|
2012-07-20 11:12:29 -07:00
|
|
|
NS_ASSERTION(!NS_SVGDisplayListHitTestingEnabled() ||
|
2013-07-12 00:13:07 -07:00
|
|
|
(mState & NS_FRAME_IS_NONDISPLAY),
|
2012-07-20 11:12:29 -07:00
|
|
|
"If display lists are enabled, only hit-testing of non-display "
|
|
|
|
"SVG should take this code path");
|
|
|
|
|
2008-07-13 04:30:48 -07:00
|
|
|
nsIFrame *kid = GetActiveChildFrame();
|
|
|
|
if (kid) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsISVGChildFrame* svgFrame = do_QueryFrame(kid);
|
2008-07-13 04:30:48 -07:00
|
|
|
if (svgFrame) {
|
2008-08-25 02:23:54 -07:00
|
|
|
return svgFrame->GetFrameForPoint(aPoint);
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|
|
|
|
|
2014-02-19 14:34:31 -08:00
|
|
|
nsRect
|
2008-07-13 04:30:48 -07:00
|
|
|
nsSVGSwitchFrame::GetCoveredRegion()
|
|
|
|
{
|
|
|
|
nsRect rect;
|
|
|
|
|
|
|
|
nsIFrame *kid = GetActiveChildFrame();
|
|
|
|
if (kid) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsISVGChildFrame* child = do_QueryFrame(kid);
|
2008-07-13 04:30:48 -07:00
|
|
|
if (child) {
|
|
|
|
rect = child->GetCoveredRegion();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
2012-05-16 21:05:09 -07:00
|
|
|
void
|
2012-07-21 17:01:44 -07:00
|
|
|
nsSVGSwitchFrame::ReflowSVG()
|
2012-05-16 21:05:09 -07:00
|
|
|
{
|
2012-07-21 17:01:44 -07:00
|
|
|
NS_ASSERTION(nsSVGUtils::OuterSVGIsCallingReflowSVG(this),
|
|
|
|
"This call is probably a wasteful mistake");
|
2012-05-16 21:05:09 -07:00
|
|
|
|
2013-07-12 00:13:07 -07:00
|
|
|
NS_ABORT_IF_FALSE(!(GetStateBits() & NS_FRAME_IS_NONDISPLAY),
|
2012-07-21 17:01:44 -07:00
|
|
|
"ReflowSVG mechanism not designed for this");
|
2012-05-16 21:05:09 -07:00
|
|
|
|
2012-07-21 17:01:44 -07:00
|
|
|
if (!nsSVGUtils::NeedsReflowSVG(this)) {
|
2012-05-16 21:05:09 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the NS_FRAME_FIRST_REFLOW bit has been removed from our parent frame,
|
|
|
|
// then our outer-<svg> has previously had its initial reflow. In that case
|
|
|
|
// we need to make sure that that bit has been removed from ourself _before_
|
|
|
|
// recursing over our children to ensure that they know too. Otherwise, we
|
|
|
|
// need to remove it _after_ recursing over our children so that they know
|
|
|
|
// the initial reflow is currently underway.
|
|
|
|
|
2013-08-24 04:31:48 -07:00
|
|
|
bool isFirstReflow = (mState & NS_FRAME_FIRST_REFLOW);
|
|
|
|
|
2012-05-16 21:05:09 -07:00
|
|
|
bool outerSVGHasHadFirstReflow =
|
|
|
|
(GetParent()->GetStateBits() & NS_FRAME_FIRST_REFLOW) == 0;
|
|
|
|
|
|
|
|
if (outerSVGHasHadFirstReflow) {
|
|
|
|
mState &= ~NS_FRAME_FIRST_REFLOW; // tell our children
|
|
|
|
}
|
|
|
|
|
|
|
|
nsOverflowAreas overflowRects;
|
|
|
|
|
|
|
|
nsIFrame *child = GetActiveChildFrame();
|
|
|
|
if (child) {
|
|
|
|
nsISVGChildFrame* svgChild = do_QueryFrame(child);
|
|
|
|
if (svgChild) {
|
2013-07-12 00:13:07 -07:00
|
|
|
NS_ABORT_IF_FALSE(!(child->GetStateBits() & NS_FRAME_IS_NONDISPLAY),
|
2012-05-16 21:05:09 -07:00
|
|
|
"Check for this explicitly in the |if|, then");
|
2012-07-21 17:01:44 -07:00
|
|
|
svgChild->ReflowSVG();
|
2012-05-16 21:05:09 -07:00
|
|
|
|
|
|
|
// We build up our child frame overflows here instead of using
|
|
|
|
// nsLayoutUtils::UnionChildOverflow since SVG frame's all use the same
|
|
|
|
// frame list, and we're iterating over that list now anyway.
|
|
|
|
ConsiderChildOverflow(overflowRects, child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-24 04:31:48 -07:00
|
|
|
if (isFirstReflow) {
|
2012-05-16 21:05:09 -07:00
|
|
|
// Make sure we have our filter property (if any) before calling
|
|
|
|
// FinishAndStoreOverflow (subsequent filter changes are handled off
|
|
|
|
// nsChangeHint_UpdateEffects):
|
|
|
|
nsSVGEffects::UpdateEffects(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
FinishAndStoreOverflow(overflowRects, mRect.Size());
|
|
|
|
|
|
|
|
// Remove state bits after FinishAndStoreOverflow so that it doesn't
|
|
|
|
// invalidate on first reflow:
|
|
|
|
mState &= ~(NS_FRAME_FIRST_REFLOW | NS_FRAME_IS_DIRTY |
|
|
|
|
NS_FRAME_HAS_DIRTY_CHILDREN);
|
|
|
|
}
|
|
|
|
|
2012-04-16 01:23:48 -07:00
|
|
|
SVGBBox
|
2013-12-29 22:50:07 -08:00
|
|
|
nsSVGSwitchFrame::GetBBoxContribution(const Matrix &aToBBoxUserspace,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFlags)
|
2008-07-13 04:30:48 -07:00
|
|
|
{
|
2009-04-28 21:31:34 -07:00
|
|
|
nsIFrame* kid = GetActiveChildFrame();
|
2012-04-16 01:23:48 -07:00
|
|
|
if (kid) {
|
|
|
|
nsISVGChildFrame* svgKid = do_QueryFrame(kid);
|
|
|
|
if (svgKid) {
|
|
|
|
nsIContent *content = kid->GetContent();
|
2013-12-29 22:50:07 -08:00
|
|
|
gfxMatrix transform = ThebesMatrix(aToBBoxUserspace);
|
2012-04-16 01:23:48 -07:00
|
|
|
if (content->IsSVG()) {
|
|
|
|
transform = static_cast<nsSVGElement*>(content)->
|
2013-12-29 22:50:07 -08:00
|
|
|
PrependLocalTransformsTo(transform);
|
2012-04-16 01:23:48 -07:00
|
|
|
}
|
2013-12-29 22:50:07 -08:00
|
|
|
return svgKid->GetBBoxContribution(ToMatrix(transform), aFlags);
|
2009-06-17 14:29:55 -07:00
|
|
|
}
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|
2012-04-16 01:23:48 -07:00
|
|
|
return SVGBBox();
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame *
|
|
|
|
nsSVGSwitchFrame::GetActiveChildFrame()
|
|
|
|
{
|
|
|
|
nsIContent *activeChild =
|
2013-01-05 22:25:54 -08:00
|
|
|
static_cast<mozilla::dom::SVGSwitchElement*>(mContent)->GetActiveChild();
|
2008-07-13 04:30:48 -07:00
|
|
|
|
|
|
|
if (activeChild) {
|
|
|
|
for (nsIFrame* kid = mFrames.FirstChild(); kid;
|
|
|
|
kid = kid->GetNextSibling()) {
|
|
|
|
|
|
|
|
if (activeChild == kid->GetContent()) {
|
|
|
|
return kid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-07-13 04:30:48 -07:00
|
|
|
}
|