2011-11-19 09:53:52 -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/. */
|
2011-11-19 09:53:52 -08:00
|
|
|
|
2012-03-26 04:58:59 -07:00
|
|
|
// Keep in (case-insensitive) order:
|
2014-11-06 01:30:11 -08:00
|
|
|
#include "nsContainerFrame.h"
|
2011-11-19 09:53:52 -08:00
|
|
|
#include "nsFrame.h"
|
2012-03-26 04:58:59 -07:00
|
|
|
#include "nsGkAtoms.h"
|
2011-11-19 09:53:52 -08:00
|
|
|
#include "nsSVGEffects.h"
|
2012-03-26 04:58:59 -07:00
|
|
|
#include "nsSVGFilters.h"
|
2011-11-19 09:53:52 -08:00
|
|
|
|
|
|
|
typedef nsFrame SVGFELeafFrameBase;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This frame is used by filter primitive elements that don't
|
|
|
|
* have special child elements that provide parameters.
|
|
|
|
*/
|
|
|
|
class SVGFELeafFrame : public SVGFELeafFrameBase
|
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewSVGFELeafFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
protected:
|
2014-08-31 20:36:37 -07:00
|
|
|
explicit SVGFELeafFrame(nsStyleContext* aContext)
|
2012-07-15 17:42:50 -07:00
|
|
|
: SVGFELeafFrameBase(aContext)
|
|
|
|
{
|
2013-07-12 00:13:07 -07:00
|
|
|
AddStateBits(NS_FRAME_SVG_LAYOUT | NS_FRAME_IS_NONDISPLAY);
|
2012-07-15 17:42:50 -07:00
|
|
|
}
|
2011-11-19 09:53:52 -08:00
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-05-24 15:20:40 -07:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 09:28:04 -07:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2011-11-19 09:53:52 -08:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2011-11-19 09:53:52 -08:00
|
|
|
{
|
|
|
|
return SVGFELeafFrameBase::IsFrameOfType(aFlags & ~(nsIFrame::eSVG));
|
|
|
|
}
|
|
|
|
|
2014-01-05 15:31:14 -08:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override
|
2011-11-19 09:53:52 -08:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGFELeaf"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgFELeafFrame
|
|
|
|
*/
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2011-11-19 09:53:52 -08:00
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 00:36:33 -08:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 09:28:04 -07:00
|
|
|
int32_t aModType) override;
|
2012-08-14 02:04:24 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool UpdateOverflow() override {
|
2012-08-14 02:04:24 -07:00
|
|
|
// We don't maintain a visual overflow rect
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-19 09:53:52 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewSVGFELeafFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) SVGFELeafFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(SVGFELeafFrame)
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2013-03-19 18:47:48 -07:00
|
|
|
void
|
2014-05-24 15:20:40 -07:00
|
|
|
SVGFELeafFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2011-11-19 09:53:52 -08:00
|
|
|
{
|
2013-03-06 23:12:32 -08:00
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eFILTER),
|
2011-11-19 09:53:52 -08:00
|
|
|
"Trying to construct an SVGFELeafFrame for a "
|
|
|
|
"content element that doesn't support the right interfaces");
|
|
|
|
|
2013-03-19 18:47:48 -07:00
|
|
|
SVGFELeafFrameBase::Init(aContent, aParent, aPrevInFlow);
|
2011-11-19 09:53:52 -08:00
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
nsIAtom *
|
|
|
|
SVGFELeafFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgFELeafFrame;
|
|
|
|
}
|
|
|
|
|
2014-02-17 23:47:48 -08:00
|
|
|
nsresult
|
2012-08-22 08:56:38 -07:00
|
|
|
SVGFELeafFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-11-19 09:53:52 -08:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aModType)
|
2011-11-19 09:53:52 -08:00
|
|
|
{
|
|
|
|
nsSVGFE *element = static_cast<nsSVGFE*>(mContent);
|
|
|
|
if (element->AttributeAffectsRendering(aNameSpaceID, aAttribute)) {
|
2014-11-06 01:30:11 -08:00
|
|
|
MOZ_ASSERT(GetParent()->GetType() == nsGkAtoms::svgFilterFrame,
|
|
|
|
"Observers observe the filter, so that's what we must invalidate");
|
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(GetParent());
|
2011-11-19 09:53:52 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFELeafFrameBase::AttributeChanged(aNameSpaceID,
|
2014-11-06 01:30:11 -08:00
|
|
|
aAttribute, aModType);
|
2011-11-19 09:53:52 -08:00
|
|
|
}
|