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/. */
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
#include "mozilla/dom/SVGTextPathElement.h"
|
|
|
|
#include "mozilla/dom/SVGTextPathElementBinding.h"
|
2012-12-23 08:22:22 +00:00
|
|
|
#include "nsSVGElement.h"
|
2006-12-26 17:47:52 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2012-07-27 14:03:27 +00:00
|
|
|
#include "nsError.h"
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(TextPath)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-03-11 22:05:58 +00:00
|
|
|
class SVGAnimatedLength;
|
|
|
|
|
2013-01-06 14:14:43 +00: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 14:13:33 +00:00
|
|
|
SVGTextPathElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-01-06 14:14:43 +00: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 14:13:33 +00:00
|
|
|
return SVGTextPathElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-01-06 14:14:43 +00:00
|
|
|
}
|
2011-10-11 05:50:08 +00:00
|
|
|
|
2013-07-24 00:01:35 +00:00
|
|
|
nsSVGElement::LengthInfo SVGTextPathElement::sLengthInfo[2] =
|
2006-04-14 15:09:39 +00:00
|
|
|
{
|
2013-07-24 00:01:35 +00:00
|
|
|
// from SVGTextContentElement:
|
|
|
|
{ &nsGkAtoms::textLength, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::XY },
|
|
|
|
// from SVGTextPathElement:
|
|
|
|
{ &nsGkAtoms::startOffset, 0, nsIDOMSVGLength::SVG_LENGTHTYPE_NUMBER, SVGContentUtils::X }
|
2006-04-14 15:09:39 +00:00
|
|
|
};
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
nsSVGEnumMapping SVGTextPathElement::sMethodMap[] = {
|
2013-02-08 19:55:49 +00:00
|
|
|
{&nsGkAtoms::align, TEXTPATH_METHODTYPE_ALIGN},
|
|
|
|
{&nsGkAtoms::stretch, TEXTPATH_METHODTYPE_STRETCH},
|
2012-07-30 14:20:58 +00:00
|
|
|
{nullptr, 0}
|
2007-08-27 23:11:14 +00:00
|
|
|
};
|
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
nsSVGEnumMapping SVGTextPathElement::sSpacingMap[] = {
|
2013-02-08 19:55:49 +00:00
|
|
|
{&nsGkAtoms::_auto, TEXTPATH_SPACINGTYPE_AUTO},
|
|
|
|
{&nsGkAtoms::exact, TEXTPATH_SPACINGTYPE_EXACT},
|
2012-07-30 14:20:58 +00:00
|
|
|
{nullptr, 0}
|
2007-08-27 23:11:14 +00:00
|
|
|
};
|
|
|
|
|
2013-07-24 00:01:35 +00:00
|
|
|
nsSVGElement::EnumInfo SVGTextPathElement::sEnumInfo[3] =
|
2007-08-27 23:11:14 +00:00
|
|
|
{
|
2013-07-24 00:01:35 +00:00
|
|
|
// from SVGTextContentElement:
|
|
|
|
{ &nsGkAtoms::lengthAdjust,
|
|
|
|
sLengthAdjustMap,
|
|
|
|
SVG_LENGTHADJUST_SPACING
|
|
|
|
},
|
|
|
|
// from SVGTextPathElement:
|
2007-08-27 23:11:14 +00:00
|
|
|
{ &nsGkAtoms::method,
|
|
|
|
sMethodMap,
|
2013-02-08 19:55:49 +00:00
|
|
|
TEXTPATH_METHODTYPE_ALIGN
|
2007-08-27 23:11:14 +00:00
|
|
|
},
|
|
|
|
{ &nsGkAtoms::spacing,
|
|
|
|
sSpacingMap,
|
2013-02-08 19:55:49 +00:00
|
|
|
TEXTPATH_SPACINGTYPE_EXACT
|
2007-08-27 23:11:14 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
nsSVGElement::StringInfo SVGTextPathElement::sStringInfo[1] =
|
2008-06-14 09:01:02 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
{ &nsGkAtoms::href, kNameSpaceID_XLink, true }
|
2008-06-14 09:01:02 +00:00
|
|
|
};
|
|
|
|
|
2005-08-26 02:49:52 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2014-06-20 02:01:40 +00:00
|
|
|
SVGTextPathElement::SVGTextPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-01-06 14:14:43 +00:00
|
|
|
: SVGTextPathElementBase(aNodeInfo)
|
2005-08-26 02:49:52 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
2013-01-06 14:14:43 +00:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGTextPathElement)
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2013-06-14 22:37:27 +00:00
|
|
|
already_AddRefed<SVGAnimatedString>
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::Href()
|
2005-08-26 02:49:52 +00:00
|
|
|
{
|
2013-02-07 08:08:56 +00:00
|
|
|
return mStringAttributes[HREF].ToDOMAnimatedString(this);
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2013-01-06 14:14:43 +00:00
|
|
|
|
2013-01-19 20:56:00 +00:00
|
|
|
already_AddRefed<SVGAnimatedLength>
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::StartOffset()
|
|
|
|
{
|
|
|
|
return mLengthAttributes[STARTOFFSET].ToDOMAnimatedLength(this);
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:02:46 +00:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration>
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::Method()
|
2005-08-26 02:49:52 +00:00
|
|
|
{
|
2013-01-06 14:14:43 +00:00
|
|
|
return mEnumAttributes[METHOD].ToDOMAnimatedEnum(this);
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
|
|
|
|
2013-07-01 07:02:46 +00:00
|
|
|
already_AddRefed<SVGAnimatedEnumeration>
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::Spacing()
|
|
|
|
{
|
|
|
|
return mEnumAttributes[SPACING].ToDOMAnimatedEnum(this);
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2005-11-02 00:41:51 +00:00
|
|
|
// nsIContent methods
|
2005-08-26 02:49:52 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHODIMP_(bool)
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::IsAttributeMapped(const nsIAtom* name) const
|
2005-08-26 02:49:52 +00:00
|
|
|
{
|
|
|
|
static const MappedAttributeEntry* const map[] = {
|
2007-03-20 10:43:33 +00:00
|
|
|
sColorMap,
|
2005-08-26 02:49:52 +00:00
|
|
|
sFillStrokeMap,
|
2006-10-19 23:48:12 +00:00
|
|
|
sFontSpecificationMap,
|
2007-03-20 10:43:33 +00:00
|
|
|
sGraphicsMap,
|
|
|
|
sTextContentElementsMap
|
2005-08-26 02:49:52 +00:00
|
|
|
};
|
2013-01-06 14:14:43 +00:00
|
|
|
|
2011-12-18 10:09:27 +00:00
|
|
|
return FindAttributeDependence(name, map) ||
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElementBase::IsAttributeMapped(name);
|
2005-08-26 02:49:52 +00:00
|
|
|
}
|
|
|
|
|
2013-01-02 20:24:07 +00:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsSVGElement overrides
|
|
|
|
|
2006-04-14 15:09:39 +00:00
|
|
|
nsSVGElement::LengthAttributesInfo
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::GetLengthInfo()
|
2006-04-14 15:09:39 +00:00
|
|
|
{
|
|
|
|
return LengthAttributesInfo(mLengthAttributes, sLengthInfo,
|
2011-10-11 05:50:08 +00:00
|
|
|
ArrayLength(sLengthInfo));
|
2006-04-14 15:09:39 +00:00
|
|
|
}
|
|
|
|
|
2007-08-27 23:11:14 +00:00
|
|
|
nsSVGElement::EnumAttributesInfo
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::GetEnumInfo()
|
2007-08-27 23:11:14 +00:00
|
|
|
{
|
|
|
|
return EnumAttributesInfo(mEnumAttributes, sEnumInfo,
|
2011-10-11 05:50:08 +00:00
|
|
|
ArrayLength(sEnumInfo));
|
2007-08-27 23:11:14 +00:00
|
|
|
}
|
|
|
|
|
2008-06-14 09:01:02 +00:00
|
|
|
nsSVGElement::StringAttributesInfo
|
2013-01-06 14:14:43 +00:00
|
|
|
SVGTextPathElement::GetStringInfo()
|
2008-06-14 09:01:02 +00:00
|
|
|
{
|
|
|
|
return StringAttributesInfo(mStringAttributes, sStringInfo,
|
2011-10-11 05:50:08 +00:00
|
|
|
ArrayLength(sStringInfo));
|
2008-06-14 09:01:02 +00:00
|
|
|
}
|
2013-01-06 14:14:43 +00:00
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|