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:
|
|
|
|
#include "nsContentUtils.h"
|
2011-11-19 17:53:52 +00:00
|
|
|
#include "nsFrame.h"
|
2012-03-26 11:58:59 +00:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsLiteralString.h"
|
2011-11-19 17:53:52 +00:00
|
|
|
#include "nsSVGEffects.h"
|
|
|
|
#include "nsSVGFilters.h"
|
2013-03-07 09:15:23 +00:00
|
|
|
#include "mozilla/dom/SVGFEImageElement.h"
|
2011-11-19 17:53:52 +00:00
|
|
|
|
|
|
|
using namespace mozilla;
|
2013-03-07 09:15:23 +00:00
|
|
|
using namespace mozilla::dom;
|
2011-11-19 17:53:52 +00:00
|
|
|
|
|
|
|
typedef nsFrame SVGFEImageFrameBase;
|
|
|
|
|
|
|
|
class SVGFEImageFrame : public SVGFEImageFrameBase
|
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewSVGFEImageFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
protected:
|
2012-07-16 00:42:50 +00:00
|
|
|
SVGFEImageFrame(nsStyleContext* aContext)
|
|
|
|
: SVGFEImageFrameBase(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
|
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2014-02-24 14:41:56 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2011-11-19 17:53:52 +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 SVGFEImageFrameBase::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("SVGFEImage"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::svgFEImageFrame
|
|
|
|
*/
|
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_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);
|
2013-02-25 00:59:23 +00:00
|
|
|
imageLoader->DecrementVisibleCount();
|
2011-11-19 17:53:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SVGFEImageFrameBase::DestroyFrom(aDestructRoot);
|
|
|
|
}
|
|
|
|
|
2013-03-20 01:47:48 +00:00
|
|
|
void
|
2014-05-24 22:20:40 +00:00
|
|
|
SVGFEImageFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
2011-11-19 17:53:52 +00:00
|
|
|
{
|
2013-01-08 03:22:41 +00:00
|
|
|
NS_ASSERTION(aContent->IsSVG(nsGkAtoms::feImage),
|
2011-11-19 17:53:52 +00: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 00:59:23 +00:00
|
|
|
// We assume that feImage's are always visible.
|
2013-04-26 19:58:15 +00:00
|
|
|
// Increment the visible count before calling FrameCreated so that
|
|
|
|
// FrameCreated will actually track the image correctly.
|
2013-02-25 00:59:23 +00:00
|
|
|
imageLoader->IncrementVisibleCount();
|
2013-04-26 19:58:15 +00:00
|
|
|
imageLoader->FrameCreated(this);
|
2011-11-19 17:53:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom *
|
|
|
|
SVGFEImageFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::svgFEImageFrame;
|
|
|
|
}
|
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
nsresult
|
2012-08-22 15:56:38 +00:00
|
|
|
SVGFEImageFrame::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
|
|
|
{
|
2013-03-07 09:15:23 +00:00
|
|
|
SVGFEImageElement *element = static_cast<SVGFEImageElement*>(mContent);
|
2011-11-19 17:53:52 +00:00
|
|
|
if (element->AttributeAffectsRendering(aNameSpaceID, aAttribute)) {
|
|
|
|
nsSVGEffects::InvalidateRenderingObservers(this);
|
|
|
|
}
|
|
|
|
if (aNameSpaceID == kNameSpaceID_XLink &&
|
|
|
|
aAttribute == nsGkAtoms::href) {
|
|
|
|
|
|
|
|
// Prevent setting image.src by exiting early
|
|
|
|
if (nsContentUtils::IsImageSrcSetDisabled()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-03-07 09:15:23 +00:00
|
|
|
if (element->mStringAttributes[SVGFEImageElement::HREF].IsExplicitlySet()) {
|
2011-11-19 17:53:52 +00:00
|
|
|
element->LoadSVGImage(true, true);
|
|
|
|
} else {
|
|
|
|
element->CancelImageRequests(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SVGFEImageFrameBase::AttributeChanged(aNameSpaceID,
|
|
|
|
aAttribute, aModType);
|
|
|
|
}
|