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-25 10:26:05 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGFEDisplacementMapElement_h
|
|
|
|
#define mozilla_dom_SVGFEDisplacementMapElement_h
|
|
|
|
|
2019-01-02 21:24:11 +03:00
|
|
|
#include "SVGEnum.h"
|
2018-12-21 19:24:17 +03:00
|
|
|
#include "SVGFilters.h"
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2013-03-25 10:26:06 +04:00
|
|
|
nsresult NS_NewSVGFEDisplacementMapElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-03-25 10:26:06 +04:00
|
|
|
|
2013-03-25 10:26:05 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-12-21 15:32:35 +03:00
|
|
|
typedef SVGFE SVGFEDisplacementMapElementBase;
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2013-03-28 05:23:09 +04:00
|
|
|
class SVGFEDisplacementMapElement : public SVGFEDisplacementMapElementBase {
|
2013-03-25 10:26:05 +04:00
|
|
|
protected:
|
2013-03-25 10:26:06 +04:00
|
|
|
friend nsresult(::NS_NewSVGFEDisplacementMapElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGFEDisplacementMapElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: SVGFEDisplacementMapElementBase(std::move(aNodeInfo)) {}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
|
|
|
public:
|
2013-11-27 15:25:29 +04:00
|
|
|
virtual FilterPrimitiveDescription 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) override;
|
2013-03-25 10:26:05 +04:00
|
|
|
virtual bool AttributeAffectsRendering(int32_t aNameSpaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute) const override;
|
2019-01-06 20:52:55 +03:00
|
|
|
virtual SVGString& GetResultImageName() override {
|
2015-03-21 19:28:04 +03:00
|
|
|
return mStringAttributes[RESULT];
|
2013-03-25 10:26:06 +04:00
|
|
|
}
|
2018-12-21 19:24:17 +03:00
|
|
|
virtual void GetSourceImageNames(nsTArray<SVGStringInfo>& aSources) override;
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-03-25 10:26:05 +04:00
|
|
|
|
2013-03-25 10:26:06 +04:00
|
|
|
// WebIDL
|
2013-06-15 02:37:27 +04:00
|
|
|
already_AddRefed<SVGAnimatedString> In1();
|
|
|
|
already_AddRefed<SVGAnimatedString> In2();
|
2013-07-01 11:03:04 +04:00
|
|
|
already_AddRefed<SVGAnimatedNumber> Scale();
|
2013-07-01 11:02:46 +04:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> XChannelSelector();
|
|
|
|
already_AddRefed<SVGAnimatedEnumeration> YChannelSelector();
|
2013-03-25 10:26:06 +04:00
|
|
|
|
2013-03-25 10:26:05 +04:00
|
|
|
protected:
|
2013-11-27 15:25:29 +04:00
|
|
|
virtual bool OperatesOnSRGB(int32_t aInputIndex,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aInputIsAlreadySRGB) override {
|
2013-11-27 15:25:29 +04:00
|
|
|
switch (aInputIndex) {
|
2013-03-25 10:26:05 +04:00
|
|
|
case 0:
|
2013-11-27 15:25:29 +04:00
|
|
|
return aInputIsAlreadySRGB;
|
2013-03-25 10:26:05 +04:00
|
|
|
case 1:
|
2013-11-27 15:25:29 +04:00
|
|
|
return SVGFEDisplacementMapElementBase::OperatesOnSRGB(
|
|
|
|
aInputIndex, aInputIsAlreadySRGB);
|
2013-03-25 10:26:05 +04:00
|
|
|
default:
|
2013-11-27 15:25:29 +04:00
|
|
|
NS_ERROR("Will not give correct color model");
|
2013-03-25 10:26:05 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual NumberAttributesInfo GetNumberInfo() override;
|
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-03-25 10:26:05 +04:00
|
|
|
|
|
|
|
enum { SCALE };
|
|
|
|
nsSVGNumber2 mNumberAttributes[1];
|
|
|
|
static NumberInfo sNumberInfo[1];
|
|
|
|
|
|
|
|
enum { CHANNEL_X, CHANNEL_Y };
|
2019-01-02 21:24:11 +03:00
|
|
|
SVGEnum mEnumAttributes[2];
|
|
|
|
static SVGEnumMapping sChannelMap[];
|
2013-03-25 10:26:05 +04:00
|
|
|
static EnumInfo sEnumInfo[2];
|
|
|
|
|
|
|
|
enum { RESULT, IN1, IN2 };
|
2019-01-06 20:52:55 +03:00
|
|
|
SVGString mStringAttributes[3];
|
2013-03-25 10:26:05 +04:00
|
|
|
static StringInfo sStringInfo[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGFEDisplacementMapElement_h
|