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: */
|
2012-05-21 11:12:37 +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/. */
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
#ifndef mozilla_dom_SVGImageElement_h
|
|
|
|
#define mozilla_dom_SVGImageElement_h
|
2009-01-05 01:19:38 +00:00
|
|
|
|
|
|
|
#include "nsImageLoadingContent.h"
|
2019-04-09 20:04:33 +00:00
|
|
|
#include "SVGAnimatedLength.h"
|
2019-04-04 17:40:56 +00:00
|
|
|
#include "SVGAnimatedString.h"
|
2016-12-18 11:11:47 +00:00
|
|
|
#include "SVGGeometryElement.h"
|
2010-12-20 00:45:29 +00:00
|
|
|
#include "SVGAnimatedPreserveAspectRatio.h"
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
nsresult NS_NewSVGImageElement(
|
2014-06-20 02:01:40 +00:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
class nsSVGImageFrame;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class DOMSVGAnimatedPreserveAspectRatio;
|
|
|
|
|
2016-12-18 11:11:47 +00:00
|
|
|
typedef SVGGeometryElement SVGImageElementBase;
|
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
class SVGImageElement : public SVGImageElementBase,
|
|
|
|
public nsImageLoadingContent {
|
|
|
|
friend class ::nsSVGImageFrame;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
|
|
|
protected:
|
2018-09-21 20:45:49 +00:00
|
|
|
explicit SVGImageElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 09:32:01 +00:00
|
|
|
virtual ~SVGImageElement();
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 09:32:01 +00:00
|
|
|
friend nsresult(::NS_NewSVGImageElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2009-01-05 01:19:38 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// interfaces:
|
2013-01-06 09:32:01 +00:00
|
|
|
|
2009-01-05 01:19:38 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2016-10-06 04:30:35 +00:00
|
|
|
// EventTarget
|
|
|
|
virtual void AsyncEventRunning(AsyncEventDispatcher* aEvent) override;
|
|
|
|
|
2009-01-05 01:19:38 +00:00
|
|
|
// nsIContent interface
|
2018-08-08 11:56:01 +00:00
|
|
|
bool ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
|
|
|
nsAttrValue& aResult) override;
|
2017-10-02 22:05:19 +00:00
|
|
|
virtual nsresult AfterSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-05-18 21:09:01 +00:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
2017-10-09 21:33:38 +00:00
|
|
|
nsIPrincipal* aSubjectPrincipal,
|
2017-05-18 21:09:01 +00:00
|
|
|
bool aNotify) override;
|
2019-01-02 13:05:23 +00:00
|
|
|
virtual nsresult BindToTree(Document* aDocument, nsIContent* aParent,
|
2018-07-31 18:18:38 +00:00
|
|
|
nsIContent* aBindingParent) override;
|
2019-05-28 22:47:08 +00:00
|
|
|
virtual void UnbindFromTree(bool aNullParent) override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual EventStates IntrinsicState() const override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2017-10-02 22:05:19 +00:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* name) const override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2016-12-18 11:11:47 +00:00
|
|
|
// SVGGeometryElement methods:
|
2015-02-03 18:36:32 +00:00
|
|
|
virtual bool GetGeometryBounds(
|
|
|
|
Rect* aBounds, const StrokeOptions& aStrokeOptions,
|
2015-09-01 04:17:00 +00:00
|
|
|
const Matrix& aToBoundsSpace,
|
|
|
|
const Matrix* aToNonScalingStrokeSpace = nullptr) override;
|
2015-06-17 14:00:52 +00:00
|
|
|
virtual already_AddRefed<Path> BuildPath(PathBuilder* aBuilder) override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2012-03-03 09:21:09 +00:00
|
|
|
// nsSVGSVGElement methods:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool HasValidDimensions() const override;
|
2012-03-03 09:21:09 +00:00
|
|
|
|
2018-08-08 23:58:44 +00:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2018-08-08 23:58:44 +00:00
|
|
|
nsresult CopyInnerTo(mozilla::dom::Element* aDest);
|
2009-12-11 04:02:13 +00:00
|
|
|
|
2009-05-20 08:00:04 +00:00
|
|
|
void MaybeLoadSVGImage();
|
2010-07-23 09:49:57 +00:00
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
// WebIDL
|
2019-03-19 00:01:03 +00:00
|
|
|
already_AddRefed<DOMSVGAnimatedLength> X();
|
|
|
|
already_AddRefed<DOMSVGAnimatedLength> Y();
|
|
|
|
already_AddRefed<DOMSVGAnimatedLength> Width();
|
|
|
|
already_AddRefed<DOMSVGAnimatedLength> Height();
|
2013-01-06 09:32:01 +00:00
|
|
|
already_AddRefed<DOMSVGAnimatedPreserveAspectRatio> PreserveAspectRatio();
|
2019-03-19 00:01:03 +00:00
|
|
|
already_AddRefed<DOMSVGAnimatedString> Href();
|
2013-01-06 09:32:01 +00:00
|
|
|
|
2018-08-08 11:56:01 +00:00
|
|
|
void SetDecoding(const nsAString& aDecoding, ErrorResult& aError) {
|
|
|
|
SetAttr(nsGkAtoms::decoding, aDecoding, aError);
|
|
|
|
}
|
|
|
|
void GetDecoding(nsAString& aValue);
|
|
|
|
|
2018-11-08 17:45:50 +00:00
|
|
|
already_AddRefed<Promise> Decode(ErrorResult& aRv);
|
|
|
|
|
2019-05-24 12:40:12 +00:00
|
|
|
static nsCSSPropertyID GetCSSPropertyIdForAttrEnum(uint8_t aAttrEnum);
|
|
|
|
|
2009-01-05 01:19:38 +00:00
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult LoadSVGImage(bool aForce, bool aNotify);
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual LengthAttributesInfo GetLengthInfo() override;
|
2019-04-10 04:08:14 +00:00
|
|
|
virtual SVGAnimatedPreserveAspectRatio* GetAnimatedPreserveAspectRatio()
|
|
|
|
override;
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2017-03-16 21:43:34 +00:00
|
|
|
// Override for nsImageLoadingContent.
|
|
|
|
nsIContent* AsContent() override { return this; }
|
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
enum { ATTR_X, ATTR_Y, ATTR_WIDTH, ATTR_HEIGHT };
|
2019-04-09 20:04:33 +00:00
|
|
|
SVGAnimatedLength mLengthAttributes[4];
|
2009-01-05 01:19:38 +00:00
|
|
|
static LengthInfo sLengthInfo[4];
|
|
|
|
|
2010-12-20 00:45:29 +00:00
|
|
|
SVGAnimatedPreserveAspectRatio mPreserveAspectRatio;
|
2009-01-05 01:19:38 +00:00
|
|
|
|
2016-07-05 09:35:24 +00:00
|
|
|
enum { HREF, XLINK_HREF };
|
2019-04-04 17:40:56 +00:00
|
|
|
SVGAnimatedString mStringAttributes[2];
|
2016-07-05 09:35:24 +00:00
|
|
|
static StringInfo sStringInfo[2];
|
2009-01-05 01:19:38 +00:00
|
|
|
};
|
|
|
|
|
2013-01-06 09:32:01 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGImageElement_h
|