2013-03-18 23:14:40 +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/SVGFECompositeElement.h"
|
2013-03-18 23:14:40 +00:00
|
|
|
#include "mozilla/dom/SVGFECompositeElementBinding.h"
|
2013-03-18 23:14:40 +00:00
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEComposite)
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
JSObject*
|
2014-04-08 22:27:17 +00:00
|
|
|
SVGFECompositeElement::WrapNode(JSContext* aCx)
|
2013-03-18 23:14:40 +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 SVGFECompositeElementBinding::Wrap(aCx, this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::NumberInfo SVGFECompositeElement::sNumberInfo[4] =
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::k1, 0, false },
|
|
|
|
{ &nsGkAtoms::k2, 0, false },
|
|
|
|
{ &nsGkAtoms::k3, 0, false },
|
|
|
|
{ &nsGkAtoms::k4, 0, false }
|
|
|
|
};
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
nsSVGEnumMapping SVGFECompositeElement::sOperatorMap[] = {
|
|
|
|
{&nsGkAtoms::over, SVG_FECOMPOSITE_OPERATOR_OVER},
|
|
|
|
{&nsGkAtoms::in, SVG_FECOMPOSITE_OPERATOR_IN},
|
|
|
|
{&nsGkAtoms::out, SVG_FECOMPOSITE_OPERATOR_OUT},
|
|
|
|
{&nsGkAtoms::atop, SVG_FECOMPOSITE_OPERATOR_ATOP},
|
|
|
|
{&nsGkAtoms::xor_, SVG_FECOMPOSITE_OPERATOR_XOR},
|
|
|
|
{&nsGkAtoms::arithmetic, SVG_FECOMPOSITE_OPERATOR_ARITHMETIC},
|
2013-03-18 23:14:40 +00:00
|
|
|
{nullptr, 0}
|
|
|
|
};
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
nsSVGElement::EnumInfo SVGFECompositeElement::sEnumInfo[1] =
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::_operator,
|
|
|
|
sOperatorMap,
|
2013-03-18 23:14:40 +00:00
|
|
|
SVG_FECOMPOSITE_OPERATOR_OVER
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
nsSVGElement::StringInfo SVGFECompositeElement::sStringInfo[3] =
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::result, kNameSpaceID_None, true },
|
|
|
|
{ &nsGkAtoms::in, kNameSpaceID_None, true },
|
|
|
|
{ &nsGkAtoms::in2, kNameSpaceID_None, true }
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFECompositeElement)
|
2013-03-18 23:14:40 +00:00
|
|
|
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::In1()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::In2()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mStringAttributes[IN2].ToDOMAnimatedString(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:02:46 +00:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::Operator()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mEnumAttributes[OPERATOR].ToDOMAnimatedEnum(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::K1()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mNumberAttributes[ATTR_K1].ToDOMAnimatedNumber(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::K2()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mNumberAttributes[ATTR_K2].ToDOMAnimatedNumber(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::K3()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mNumberAttributes[ATTR_K3].ToDOMAnimatedNumber(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:03:04 +00:00
|
|
|
already_AddRefed<SVGAnimatedNumber>
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::K4()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return mNumberAttributes[ATTR_K4].ToDOMAnimatedNumber(this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
void
|
|
|
|
SVGFECompositeElement::SetK(float k1, float k2, float k3, float k4)
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
mNumberAttributes[ATTR_K1].SetBaseValue(k1, this);
|
|
|
|
mNumberAttributes[ATTR_K2].SetBaseValue(k2, this);
|
|
|
|
mNumberAttributes[ATTR_K3].SetBaseValue(k3, this);
|
|
|
|
mNumberAttributes[ATTR_K4].SetBaseValue(k4, this);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
FilterPrimitiveDescription
|
|
|
|
SVGFECompositeElement::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-18 23:14:40 +00:00
|
|
|
{
|
2014-03-20 02:12:43 +00:00
|
|
|
FilterPrimitiveDescription descr(PrimitiveType::Composite);
|
2013-11-27 11:25:29 +00:00
|
|
|
uint32_t op = mEnumAttributes[OPERATOR].GetAnimValue();
|
|
|
|
descr.Attributes().Set(eCompositeOperator, op);
|
2013-03-18 23:14:40 +00:00
|
|
|
|
2013-03-18 23:14:40 +00:00
|
|
|
if (op == SVG_FECOMPOSITE_OPERATOR_ARITHMETIC) {
|
2013-11-27 11:25:29 +00:00
|
|
|
float k[4];
|
|
|
|
GetAnimatedNumberValues(k, k+1, k+2, k+3, nullptr);
|
|
|
|
descr.Attributes().Set(eCompositeCoefficients, k, 4);
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
2013-11-27 11:25:29 +00:00
|
|
|
return descr;
|
2013-03-18 23:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::AttributeAffectsRendering(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute) const
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
2013-03-18 23:14:40 +00:00
|
|
|
return SVGFECompositeElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
|
2013-03-18 23:14:40 +00:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
(aAttribute == nsGkAtoms::in ||
|
|
|
|
aAttribute == nsGkAtoms::in2 ||
|
|
|
|
aAttribute == nsGkAtoms::k1 ||
|
|
|
|
aAttribute == nsGkAtoms::k2 ||
|
|
|
|
aAttribute == nsGkAtoms::k3 ||
|
|
|
|
aAttribute == nsGkAtoms::k4 ||
|
|
|
|
aAttribute == nsGkAtoms::_operator));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
|
|
|
|
aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN2], this));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement methods
|
|
|
|
|
|
|
|
nsSVGElement::NumberAttributesInfo
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::GetNumberInfo()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
return NumberAttributesInfo(mNumberAttributes, sNumberInfo,
|
|
|
|
ArrayLength(sNumberInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::EnumAttributesInfo
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::GetEnumInfo()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
return EnumAttributesInfo(mEnumAttributes, sEnumInfo,
|
|
|
|
ArrayLength(sEnumInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::StringAttributesInfo
|
2013-03-18 23:14:40 +00:00
|
|
|
SVGFECompositeElement::GetStringInfo()
|
2013-03-18 23:14:40 +00:00
|
|
|
{
|
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|