2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 21:53:52 +04:00
|
|
|
|
2012-03-26 15:58:59 +04:00
|
|
|
// Keep in (case-insensitive) order:
|
2011-11-19 21:53:52 +04:00
|
|
|
#include "nsContainerFrame.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsLiteralString.h"
|
2017-08-30 16:14:46 +03:00
|
|
|
#include "SVGObserverUtils.h"
|
2011-11-19 21:53:52 +04:00
|
|
|
#include "nsSVGFilters.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This frame is used by filter primitive elements that
|
|
|
|
* have special child elements that provide parameters.
|
|
|
|
*/
|
2016-04-18 10:47:37 +03:00
|
|
|
class SVGFEContainerFrame : public nsContainerFrame
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewSVGFEContainerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit SVGFEContainerFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsContainerFrame(aContext, kClassID)
|
2012-07-16 04:42:50 +04:00
|
|
|
{
|
2013-07-12 11:13:07 +04:00
|
|
|
AddStateBits(NS_FRAME_SVG_LAYOUT | NS_FRAME_IS_NONDISPLAY);
|
2012-07-16 04:42:50 +04:00
|
|
|
}
|
2011-11-19 21:53:52 +04:00
|
|
|
|
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(SVGFEContainerFrame)
|
2011-11-19 21:53:52 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
2016-04-18 10:47:37 +03:00
|
|
|
return nsContainerFrame::IsFrameOfType(
|
2011-11-19 21:53:52 +04:00
|
|
|
aFlags & ~(nsIFrame::eSVG | nsIFrame::eSVGContainer));
|
|
|
|
}
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("SVGFEContainer"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2011-11-19 21:53:52 +04:00
|
|
|
#endif
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2012-08-14 13:04:24 +04:00
|
|
|
|
2016-05-04 03:27:43 +03:00
|
|
|
virtual bool ComputeCustomOverflow(nsOverflowAreas& aOverflowAreas) override {
|
2012-08-14 13:04:24 +04:00
|
|
|
// We don't maintain a visual overflow rect
|
|
|
|
return false;
|
|
|
|
}
|
2011-11-19 21:53:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewSVGFEContainerFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) SVGFEContainerFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(SVGFEContainerFrame)
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
SVGFEContainerFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
2013-03-07 11:12:32 +04:00
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eFILTER),
|
2011-11-19 21:53:52 +04:00
|
|
|
"Trying to construct an SVGFEContainerFrame for a "
|
|
|
|
"content element that doesn't support the right interfaces");
|
|
|
|
|
2016-04-18 10:47:37 +03:00
|
|
|
nsContainerFrame::Init(aContent, aParent, aPrevInFlow);
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
SVGFEContainerFrame::AttributeChanged(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
2017-08-27 01:58:38 +03:00
|
|
|
nsSVGFE *element = static_cast<nsSVGFE*>(GetContent());
|
2011-11-19 21:53:52 +04:00
|
|
|
if (element->AttributeAffectsRendering(aNameSpaceID, aAttribute)) {
|
2017-04-30 18:30:08 +03:00
|
|
|
MOZ_ASSERT(GetParent()->IsSVGFilterFrame(),
|
2014-11-06 12:30:11 +03:00
|
|
|
"Observers observe the filter, so that's what we must invalidate");
|
2017-08-30 17:58:31 +03:00
|
|
|
SVGObserverUtils::InvalidateDirectRenderingObservers(GetParent());
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|
|
|
|
|
2016-04-18 10:47:37 +03:00
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|