2011-11-19 17:53:52 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 17:53:52 +00:00
|
|
|
|
2012-03-26 11:58:59 +00:00
|
|
|
// Keep in (case-insensitive) order:
|
2011-11-19 17:53:52 +00:00
|
|
|
#include "nsFrame.h"
|
2012-03-26 11:58:59 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2011-11-19 17:53:52 +00:00
|
|
|
#include "nsSVGEffects.h"
|
2012-03-26 11:58:59 +00:00
|
|
|
#include "nsSVGFilters.h"
|
2011-11-19 17:53:52 +00:00
|
|
|
|
|
|
|
typedef nsFrame SVGFEUnstyledLeafFrameBase;
|
|
|
|
|
|
|
|
class SVGFEUnstyledLeafFrame : public SVGFEUnstyledLeafFrameBase
|
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewSVGFEUnstyledLeafFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
protected:
|
2012-07-16 00:42:50 +00:00
|
|
|
SVGFEUnstyledLeafFrame(nsStyleContext* aContext)
|
|
|
|
: SVGFEUnstyledLeafFrameBase(aContext)
|
|
|
|
{
|
2013-07-12 07:13:07 +00:00
|
|
|
AddStateBits(NS_FRAME_SVG_LAYOUT | NS_FRAME_IS_NONDISPLAY);
|
2012-07-16 00:42:50 +00:00
|
|
|
}
|
2011-11-19 17:53:52 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2012-07-20 16:41:29 +00:00
|
|
|
const nsRect& aDirtyRect,
|
2013-02-14 11:12:27 +00:00
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE {}
|
2012-07-20 16:41:29 +00:00
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2011-11-19 17:53:52 +00:00
|
|
|
{
|
|
|
|
return SVGFEUnstyledLeafFrameBase::IsFrameOfType(aFlags & ~(nsIFrame::eSVG));
|
|
|
|
}
|
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE
|
2011-11-19 17:53:52 +00:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGFEUnstyledLeaf"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgFEUnstyledLeafFrame
|
|
|
|
*/
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2011-11-19 17:53:52 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 08:36:33 +00:00
|
|
|
nsIAtom* aAttribute,
|
2014-02-24 14:41:56 +00:00
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
2012-08-14 09:04:24 +00:00
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual bool UpdateOverflow() MOZ_OVERRIDE {
|
2012-08-14 09:04:24 +00:00
|
|
|
// We don't maintain a visual overflow rect
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-19 17:53:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewSVGFEUnstyledLeafFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) SVGFEUnstyledLeafFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(SVGFEUnstyledLeafFrame)
|
|
|
|
|
|
|
|
nsIAtom *
|
|
|
|
SVGFEUnstyledLeafFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgFEUnstyledLeafFrame;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
SVGFEUnstyledLeafFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-11-19 17:53:52 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aModType)
|
2011-11-19 17:53:52 +00:00
|
|
|
{
|
|
|
|
SVGFEUnstyledElement *element = static_cast<SVGFEUnstyledElement*>(mContent);
|
|
|
|
if (element->AttributeAffectsRendering(aNameSpaceID, aAttribute)) {
|
|
|
|
nsSVGEffects::InvalidateRenderingObservers(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFEUnstyledLeafFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|