2011-11-19 21:53:52 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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:
|
2014-11-06 12:30:11 +03:00
|
|
|
#include "nsContainerFrame.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsContentUtils.h"
|
2011-11-19 21:53:52 +04:00
|
|
|
#include "nsFrame.h"
|
2012-03-26 15:58:59 +04:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsLiteralString.h"
|
2011-11-19 21:53:52 +04:00
|
|
|
#include "nsSVGEffects.h"
|
|
|
|
#include "nsSVGFilters.h"
|
2013-03-07 13:15:23 +04:00
|
|
|
#include "mozilla/dom/SVGFEImageElement.h"
|
2011-11-19 21:53:52 +04:00
|
|
|
|
|
|
|
using namespace mozilla;
|
2013-03-07 13:15:23 +04:00
|
|
|
using namespace mozilla::dom;
|
2011-11-19 21:53:52 +04:00
|
|
|
|
|
|
|
typedef nsFrame SVGFEImageFrameBase;
|
|
|
|
|
|
|
|
class SVGFEImageFrame : public SVGFEImageFrameBase
|
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewSVGFEImageFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit SVGFEImageFrame(nsStyleContext* aContext)
|
2012-07-16 04:42:50 +04:00
|
|
|
: SVGFEImageFrameBase(aContext)
|
|
|
|
{
|
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:
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
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;
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
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
|
|
|
{
|
|
|
|
return SVGFEImageFrameBase::IsFrameOfType(aFlags & ~(nsIFrame::eSVG));
|
|
|
|
}
|
|
|
|
|
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("SVGFEImage"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgFEImageFrame
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2011-11-19 21:53:52 +04:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2012-08-14 13:04:24 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool UpdateOverflow() 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_NewSVGFEImageFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) SVGFEImageFrame(aContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(SVGFEImageFrame)
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
SVGFEImageFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imageLoader =
|
|
|
|
do_QueryInterface(SVGFEImageFrameBase::mContent);
|
|
|
|
|
|
|
|
if (imageLoader) {
|
|
|
|
imageLoader->FrameDestroyed(this);
|
2015-02-06 13:51:12 +03:00
|
|
|
imageLoader
|
|
|
|
->DecrementVisibleCount(nsIImageLoadingContent::ON_NONVISIBLE_NO_ACTION);
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
SVGFEImageFrameBase::DestroyFrom(aDestructRoot);
|
|
|
|
}
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2014-05-25 02:20:40 +04:00
|
|
|
SVGFEImageFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
2015-03-03 14:08:59 +03:00
|
|
|
NS_ASSERTION(aContent->IsSVGElement(nsGkAtoms::feImage),
|
2011-11-19 21:53:52 +04:00
|
|
|
"Trying to construct an SVGFEImageFrame for a "
|
|
|
|
"content element that doesn't support the right interfaces");
|
|
|
|
|
|
|
|
SVGFEImageFrameBase::Init(aContent, aParent, aPrevInFlow);
|
|
|
|
nsCOMPtr<nsIImageLoadingContent> imageLoader =
|
|
|
|
do_QueryInterface(SVGFEImageFrameBase::mContent);
|
|
|
|
|
|
|
|
if (imageLoader) {
|
2013-02-25 04:59:23 +04:00
|
|
|
// We assume that feImage's are always visible.
|
2013-04-26 23:58:15 +04:00
|
|
|
// Increment the visible count before calling FrameCreated so that
|
|
|
|
// FrameCreated will actually track the image correctly.
|
2013-02-25 04:59:23 +04:00
|
|
|
imageLoader->IncrementVisibleCount();
|
2013-04-26 23:58:15 +04:00
|
|
|
imageLoader->FrameCreated(this);
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom *
|
|
|
|
SVGFEImageFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgFEImageFrame;
|
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
SVGFEImageFrame::AttributeChanged(int32_t aNameSpaceID,
|
2011-11-19 21:53:52 +04:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aModType)
|
2011-11-19 21:53:52 +04:00
|
|
|
{
|
2013-03-07 13:15:23 +04:00
|
|
|
SVGFEImageElement *element = static_cast<SVGFEImageElement*>(mContent);
|
2011-11-19 21:53:52 +04:00
|
|
|
if (element->AttributeAffectsRendering(aNameSpaceID, aAttribute)) {
|
2014-11-06 12:30:11 +03:00
|
|
|
MOZ_ASSERT(GetParent()->GetType() == nsGkAtoms::svgFilterFrame,
|
|
|
|
"Observers observe the filter, so that's what we must invalidate");
|
|
|
|
nsSVGEffects::InvalidateDirectRenderingObservers(GetParent());
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|
|
|
|
if (aNameSpaceID == kNameSpaceID_XLink &&
|
|
|
|
aAttribute == nsGkAtoms::href) {
|
|
|
|
|
|
|
|
// Prevent setting image.src by exiting early
|
|
|
|
if (nsContentUtils::IsImageSrcSetDisabled()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-07 13:15:23 +04:00
|
|
|
if (element->mStringAttributes[SVGFEImageElement::HREF].IsExplicitlySet()) {
|
2011-11-19 21:53:52 +04:00
|
|
|
element->LoadSVGImage(true, true);
|
|
|
|
} else {
|
|
|
|
element->CancelImageRequests(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFEImageFrameBase::AttributeChanged(aNameSpaceID,
|
2014-11-06 12:30:11 +03:00
|
|
|
aAttribute, aModType);
|
2011-11-19 21:53:52 +04:00
|
|
|
}
|