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-01-06 14:14:44 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGAltGlyphElement_h
|
|
|
|
#define mozilla_dom_SVGAltGlyphElement_h
|
|
|
|
|
|
|
|
#include "mozilla/dom/SVGTextPositioningElement.h"
|
|
|
|
#include "nsSVGString.h"
|
|
|
|
|
|
|
|
nsresult NS_NewSVGAltGlyphElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 14:14:44 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
typedef SVGTextPositioningElement SVGAltGlyphElementBase;
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
class SVGAltGlyphElement final : public SVGAltGlyphElementBase
|
2013-01-06 14:14:44 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
friend nsresult (::NS_NewSVGAltGlyphElement(nsIContent **aResult,
|
2014-06-20 02:01:40 +00:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-09-01 01:08:04 +00:00
|
|
|
explicit SVGAltGlyphElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 14:14:44 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const override;
|
2013-01-06 14:14:44 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const override;
|
2013-01-06 14:14:44 +00:00
|
|
|
|
|
|
|
// WebIDL
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString> Href();
|
2013-02-02 20:22:36 +00:00
|
|
|
void GetGlyphRef(nsAString & aGlyphRef);
|
|
|
|
void SetGlyphRef(const nsAString & aGlyphRef, ErrorResult& rv);
|
|
|
|
void GetFormat(nsAString & aFormat);
|
|
|
|
void SetFormat(const nsAString & aFormat, ErrorResult& rv);
|
2013-01-06 14:14:44 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// nsSVGElement overrides
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual EnumAttributesInfo GetEnumInfo() override;
|
|
|
|
virtual LengthAttributesInfo GetLengthInfo() override;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() override;
|
2013-01-06 14:14:44 +00:00
|
|
|
|
|
|
|
enum { HREF };
|
|
|
|
nsSVGString mStringAttributes[1];
|
|
|
|
static StringInfo sStringInfo[1];
|
|
|
|
|
2013-07-24 00:01:35 +00:00
|
|
|
nsSVGEnum mEnumAttributes[1];
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsSVGEnum* EnumAttributes() override
|
2013-07-24 00:01:35 +00:00
|
|
|
{ return mEnumAttributes; }
|
|
|
|
|
|
|
|
nsSVGLength2 mLengthAttributes[1];
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsSVGLength2* LengthAttributes() override
|
2013-07-24 00:01:35 +00:00
|
|
|
{ return mLengthAttributes; }
|
2013-01-06 14:14:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGAltGlyphElement_h
|