2007-12-03 22:51:36 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
#ifndef mozilla_dom_SVGTextPathElement_h
|
|
|
|
#define mozilla_dom_SVGTextPathElement_h
|
2007-12-03 22:51:36 -08:00
|
|
|
|
|
|
|
#include "nsSVGEnum.h"
|
|
|
|
#include "nsSVGLength2.h"
|
2008-06-14 02:01:02 -07:00
|
|
|
#include "nsSVGString.h"
|
2013-02-08 11:55:49 -08:00
|
|
|
#include "mozilla/dom/SVGTextContentElement.h"
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2012-01-26 01:57:21 -08:00
|
|
|
class nsIAtom;
|
|
|
|
class nsIContent;
|
2013-01-06 06:14:43 -08:00
|
|
|
|
|
|
|
nsresult NS_NewSVGTextPathElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2012-01-26 01:57:21 -08:00
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-02-08 11:55:49 -08:00
|
|
|
// textPath Method Types
|
|
|
|
static const unsigned short TEXTPATH_METHODTYPE_UNKNOWN = 0;
|
|
|
|
static const unsigned short TEXTPATH_METHODTYPE_ALIGN = 1;
|
|
|
|
static const unsigned short TEXTPATH_METHODTYPE_STRETCH = 2;
|
|
|
|
// textPath Spacing Types
|
|
|
|
static const unsigned short TEXTPATH_SPACINGTYPE_UNKNOWN = 0;
|
|
|
|
static const unsigned short TEXTPATH_SPACINGTYPE_AUTO = 1;
|
|
|
|
static const unsigned short TEXTPATH_SPACINGTYPE_EXACT = 2;
|
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
typedef SVGTextContentElement SVGTextPathElementBase;
|
|
|
|
|
2013-03-27 18:23:09 -07:00
|
|
|
class SVGTextPathElement MOZ_FINAL : public SVGTextPathElementBase
|
2007-12-03 22:51:36 -08:00
|
|
|
{
|
2013-12-20 08:38:51 -08:00
|
|
|
friend class ::SVGTextFrame;
|
2007-12-03 22:51:36 -08:00
|
|
|
|
|
|
|
protected:
|
2013-01-06 06:14:43 -08:00
|
|
|
friend nsresult (::NS_NewSVGTextPathElement(nsIContent **aResult,
|
2014-06-19 19:01:40 -07:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2014-08-31 18:08:04 -07:00
|
|
|
explicit SVGTextPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2014-04-08 15:27:17 -07:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx) MOZ_OVERRIDE;
|
2013-01-06 06:14:43 -08:00
|
|
|
|
2007-12-03 22:51:36 -08:00
|
|
|
public:
|
|
|
|
// nsIContent interface
|
2013-05-07 22:11:24 -07:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsIAtom* aAttribute) const MOZ_OVERRIDE;
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2014-06-19 19:01:40 -07:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult) const MOZ_OVERRIDE;
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
// WebIDL
|
2013-01-19 12:56:00 -08:00
|
|
|
already_AddRefed<SVGAnimatedLength> StartOffset();
|
2013-07-01 00:02:46 -07:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration> Method();
|
|
|
|
already_AddRefed<SVGAnimatedEnumeration> Spacing();
|
2013-06-14 15:37:27 -07:00
|
|
|
already_AddRefed<SVGAnimatedString> Href();
|
2013-01-02 12:24:07 -08:00
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
protected:
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2013-05-07 22:11:24 -07:00
|
|
|
virtual LengthAttributesInfo GetLengthInfo() MOZ_OVERRIDE;
|
|
|
|
virtual EnumAttributesInfo GetEnumInfo() MOZ_OVERRIDE;
|
|
|
|
virtual StringAttributesInfo GetStringInfo() MOZ_OVERRIDE;
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2013-07-23 17:01:35 -07:00
|
|
|
enum { /* TEXTLENGTH, */ STARTOFFSET = 1 };
|
|
|
|
nsSVGLength2 mLengthAttributes[2];
|
|
|
|
virtual nsSVGLength2* LengthAttributes() MOZ_OVERRIDE
|
|
|
|
{ return mLengthAttributes; }
|
|
|
|
static LengthInfo sLengthInfo[2];
|
|
|
|
|
|
|
|
enum { /* LENGTHADJUST, */ METHOD = 1, SPACING };
|
|
|
|
nsSVGEnum mEnumAttributes[3];
|
|
|
|
virtual nsSVGEnum* EnumAttributes() MOZ_OVERRIDE
|
|
|
|
{ return mEnumAttributes; }
|
2007-12-03 22:51:36 -08:00
|
|
|
static nsSVGEnumMapping sMethodMap[];
|
|
|
|
static nsSVGEnumMapping sSpacingMap[];
|
2013-07-23 17:01:35 -07:00
|
|
|
static EnumInfo sEnumInfo[3];
|
2007-12-03 22:51:36 -08:00
|
|
|
|
2008-06-14 02:01:02 -07:00
|
|
|
enum { HREF };
|
|
|
|
nsSVGString mStringAttributes[1];
|
|
|
|
static StringInfo sStringInfo[1];
|
2007-12-03 22:51:36 -08:00
|
|
|
};
|
|
|
|
|
2013-01-06 06:14:43 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGTextPathElement_h
|