2015-05-03 22:32:37 +03: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-16 08:13:31 +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/. */
|
|
|
|
|
2013-03-16 08:13:31 +04:00
|
|
|
#include "mozilla/dom/SVGComponentTransferFunctionElement.h"
|
2013-03-16 08:13:31 +04:00
|
|
|
#include "mozilla/dom/SVGFEComponentTransferElement.h"
|
2013-03-16 08:13:31 +04:00
|
|
|
#include "mozilla/dom/SVGFEComponentTransferElementBinding.h"
|
|
|
|
#include "nsSVGUtils.h"
|
2013-11-27 15:25:29 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2013-03-16 08:13:31 +04:00
|
|
|
|
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(FEComponentTransfer)
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
using namespace mozilla::gfx;;
|
|
|
|
|
2013-03-16 08:13:31 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-16 08:13:31 +04: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 17:13:33 +03:00
|
|
|
SVGFEComponentTransferElement::WrapNode(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-03-16 08:13:31 +04: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 17:13:33 +03:00
|
|
|
return SVGFEComponentTransferElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-16 08:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsSVGElement::StringInfo SVGFEComponentTransferElement::sStringInfo[2] =
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
|
|
|
{ &nsGkAtoms::result, kNameSpaceID_None, true },
|
|
|
|
{ &nsGkAtoms::in, kNameSpaceID_None, true }
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
2013-03-16 08:13:31 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGFEComponentTransferElement)
|
2013-03-16 08:13:31 +04:00
|
|
|
|
2013-06-15 02:37:27 +04:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-03-16 08:13:31 +04:00
|
|
|
SVGFEComponentTransferElement::In1()
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
2013-03-16 08:13:31 +04:00
|
|
|
return mStringAttributes[IN1].ToDOMAnimatedString(this);
|
2013-03-16 08:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement methods
|
|
|
|
|
|
|
|
nsSVGElement::StringAttributesInfo
|
2013-03-16 08:13:31 +04:00
|
|
|
SVGFEComponentTransferElement::GetStringInfo()
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
|
|
|
ArrayLength(sStringInfo));
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
FilterPrimitiveDescription
|
|
|
|
SVGFEComponentTransferElement::GetPrimitiveDescription(nsSVGFilterInstance* aInstance,
|
|
|
|
const IntRect& aFilterSubregion,
|
2014-01-08 13:30:03 +04:00
|
|
|
const nsTArray<bool>& aInputsAreTainted,
|
2015-10-18 08:24:48 +03:00
|
|
|
nsTArray<RefPtr<SourceSurface>>& aInputImages)
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SVGComponentTransferFunctionElement> childForChannel[4];
|
2013-11-27 15:25:29 +04:00
|
|
|
|
2013-03-16 08:13:31 +04:00
|
|
|
for (nsIContent* childContent = nsINode::GetFirstChild();
|
|
|
|
childContent;
|
|
|
|
childContent = childContent->GetNextSibling()) {
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SVGComponentTransferFunctionElement> child;
|
2013-03-16 08:13:31 +04:00
|
|
|
CallQueryInterface(childContent,
|
|
|
|
(SVGComponentTransferFunctionElement**)getter_AddRefs(child));
|
|
|
|
if (child) {
|
2013-11-27 15:25:29 +04:00
|
|
|
childForChannel[child->GetChannel()] = child;
|
2013-03-16 08:13:31 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-27 15:25:29 +04:00
|
|
|
static const AttributeName attributeNames[4] = {
|
|
|
|
eComponentTransferFunctionR,
|
|
|
|
eComponentTransferFunctionG,
|
|
|
|
eComponentTransferFunctionB,
|
|
|
|
eComponentTransferFunctionA
|
|
|
|
};
|
|
|
|
|
2014-03-20 06:12:43 +04:00
|
|
|
FilterPrimitiveDescription descr(PrimitiveType::ComponentTransfer);
|
2013-11-27 15:25:29 +04:00
|
|
|
for (int32_t i = 0; i < 4; i++) {
|
|
|
|
if (childForChannel[i]) {
|
|
|
|
descr.Attributes().Set(attributeNames[i], childForChannel[i]->ComputeAttributes());
|
|
|
|
} else {
|
|
|
|
AttributeMap functionAttributes;
|
|
|
|
functionAttributes.Set(eComponentTransferFunctionType,
|
|
|
|
(uint32_t)SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY);
|
|
|
|
descr.Attributes().Set(attributeNames[i], functionAttributes);
|
2013-03-16 08:13:31 +04:00
|
|
|
}
|
|
|
|
}
|
2013-11-27 15:25:29 +04:00
|
|
|
return descr;
|
2013-03-16 08:13:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-03-16 08:13:31 +04:00
|
|
|
SVGFEComponentTransferElement::AttributeAffectsRendering(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute) const
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
2013-03-16 08:13:31 +04:00
|
|
|
return SVGFEComponentTransferElementBase::AttributeAffectsRendering(aNameSpaceID, aAttribute) ||
|
2013-03-16 08:13:31 +04:00
|
|
|
(aNameSpaceID == kNameSpaceID_None &&
|
|
|
|
aAttribute == nsGkAtoms::in);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-03-16 08:13:31 +04:00
|
|
|
SVGFEComponentTransferElement::GetSourceImageNames(nsTArray<nsSVGStringInfo>& aSources)
|
2013-03-16 08:13:31 +04:00
|
|
|
{
|
|
|
|
aSources.AppendElement(nsSVGStringInfo(&mStringAttributes[IN1], this));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|