2013-03-21 17:38:28 +00:00
|
|
|
/* a*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGFEOffsetElement.h"
|
2013-03-21 17:38:28 +00:00
|
|
|
#include "mozilla/dom/SVGFEOffsetElementBinding.h"
|
|
|
|
#include "nsSVGFilterInstance.h"
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEOffset)
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
JSObject*
|
2014-04-08 22:27:17 +00:00
|
|
|
SVGFEOffsetElement::WrapNode(JSContext* aCx)
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return SVGFEOffsetElementBinding::Wrap(aCx, this);
|
2013-03-21 17:38:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::NumberInfo SVGFEOffsetElement::sNumberInfo[2] =
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::dx, 0, false },
|
|
|
|
{ &nsGkAtoms::dy, 0, false }
|
|
|
|
};
|
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
nsSVGElement::StringInfo SVGFEOffsetElement::sStringInfo[2] =
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::result, kNameSpaceID_None, true },
|
|
|
|
{ &nsGkAtoms::in, kNameSpaceID_None, true }
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
|
|
|
|
2013-03-21 17:38:28 +00:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEOffsetElement)
|
2013-03-21 17:38:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::In1()
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
2013-03-21 17:38:28 +00:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-21 17:38:28 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::Dx()
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
2013-03-21 17:38:28 +00:00
|
|
|
return mNumberAttributes[DX].ToDOMAnimatedNumber(this);
|
2013-03-21 17:38:28 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::Dy()
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
2013-03-21 17:38:28 +00:00
|
|
|
return mNumberAttributes[DY].ToDOMAnimatedNumber(this);
|
2013-03-21 17:38:28 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
FilterPrimitiveDescription
|
|
|
|
SVGFEOffsetElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
|
|
|
|
const IntRect& aFilterSubregion,
|
2014-01-08 09:30:03 +00:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2013-11-28 14:38:43 +00:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages)
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
2014-03-20 02:12:43 +00:00
|
|
|
FilterPrimitiveDescription descr(PrimitiveType::Offset);
|
2014-02-11 22:24:43 +00:00
|
|
|
IntPoint offset(int32_t(aInstance->GetPrimitiveNumber(
|
|
|
|
SVGContentUtils::X, &mNumberAttributes[DX])),
|
|
|
|
int32_t(aInstance->GetPrimitiveNumber(
|
|
|
|
SVGContentUtils::Y, &mNumberAttributes[DY])));
|
|
|
|
descr.Attributes().Set(eOffsetOffset, offset);
|
2013-11-27 11:25:29 +00:00
|
|
|
return descr;
|
2013-03-21 17:38:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::AttributeAffectsRendering(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute) const
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
2013-03-21 17:38:28 +00:00
|
|
|
return SVGFEOffsetElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
|
2013-03-21 17:38:28 +00:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in ||
|
|
|
|
aAttribute == nsGkAtoms::dx ||
|
|
|
|
aAttribute == nsGkAtoms::dy));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
|
|
|
aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement methods
|
|
|
|
|
|
|
|
nsSVGElement::NumberAttributesInfo
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::GetNumberInfo()
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
|
|
|
return NumberAttributesInfo(mNumberAttributes, sNumberInfo,
|
|
|
|
ArrayLength(sNumberInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::StringAttributesInfo
|
2013-03-21 17:38:28 +00:00
|
|
|
SVGFEOffsetElement::GetStringInfo()
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|