2015-05-03 19:32:37 +00: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: */
|
2013-03-21 17:38:28 +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/. */
|
|
|
|
|
|
|
|
#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*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
SVGFEOffsetElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-03-21 17:38:28 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return SVGFEOffsetElementBinding::Wrap(aCx, this, aGivenProto);
|
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,
|
2015-10-18 05:24:48 +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
|