2015-05-03 22:32:37 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +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/. */
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2013-08-02 11:04:22 +04:00
|
|
|
#include "mozilla/dom/SVGPathElement.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
2010-11-08 18:07:00 +03:00
|
|
|
#include "DOMSVGPathSeg.h"
|
|
|
|
#include "DOMSVGPathSegList.h"
|
2013-11-18 05:29:06 +04:00
|
|
|
#include "gfx2DGlue.h"
|
2014-07-06 00:53:04 +04:00
|
|
|
#include "gfxPlatform.h"
|
2013-01-17 00:50:59 +04:00
|
|
|
#include "mozilla/dom/SVGPathElementBinding.h"
|
2013-11-18 05:29:06 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-08-02 11:04:22 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2013-11-02 15:10:38 +04:00
|
|
|
#include "nsComputedDOMStyle.h"
|
2013-08-02 11:04:22 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2013-11-02 15:10:38 +04:00
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsStyleStruct.h"
|
|
|
|
#include "SVGContentUtils.h"
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2013-01-13 02:22:31 +04:00
|
|
|
NS_IMPL_NS_NEW_NAMESPACED_SVG_ELEMENT(Path)
|
|
|
|
|
2013-11-02 15:10:38 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2013-01-13 02:22:31 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2013-01-17 00:50:59 +04: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 17:13:33 +03:00
|
|
|
SVGPathElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto)
|
2013-01-17 00:50:59 +04: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 17:13:33 +03:00
|
|
|
return SVGPathElementBinding::Wrap(aCx, this, aGivenProto);
|
2013-01-17 00:50:59 +04:00
|
|
|
}
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2014-06-20 06:01:40 +04:00
|
|
|
SVGPathElement::SVGPathElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo)
|
2013-01-13 02:22:31 +04:00
|
|
|
: SVGPathElementBase(aNodeInfo)
|
2001-12-12 10:59:31 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-26 19:21:23 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// memory reporting methods
|
|
|
|
|
Bug 1387956 - Overhaul ComputedValues measurement, and add style structs measurement. r=bholley.
This patch moves measurement of ComputedValues objects from Rust to C++.
Measurement now happens (a) via DOM elements and (b) remaining elements via
the frame tree. Likewise for the style structs hanging off ComputedValues
objects.
Here is an example of the output.
> ├──27,600,448 B (26.49%) -- active/window(https://en.wikipedia.org/wiki/Barack_Obama)
> │ ├──12,772,544 B (12.26%) -- layout
> │ │ ├───4,483,744 B (04.30%) -- frames
> │ │ │ ├──1,653,552 B (01.59%) ── nsInlineFrame
> │ │ │ ├──1,415,760 B (01.36%) ── nsTextFrame
> │ │ │ ├────431,376 B (00.41%) ── nsBlockFrame
> │ │ │ ├────340,560 B (00.33%) ── nsHTMLScrollFrame
> │ │ │ ├────302,544 B (00.29%) ── nsContinuingTextFrame
> │ │ │ ├────156,408 B (00.15%) ── nsBulletFrame
> │ │ │ ├─────73,024 B (00.07%) ── nsPlaceholderFrame
> │ │ │ ├─────27,656 B (00.03%) ── sundries
> │ │ │ ├─────23,520 B (00.02%) ── nsTableCellFrame
> │ │ │ ├─────16,704 B (00.02%) ── nsImageFrame
> │ │ │ ├─────15,488 B (00.01%) ── nsTableRowFrame
> │ │ │ ├─────13,776 B (00.01%) ── nsTableColFrame
> │ │ │ └─────13,376 B (00.01%) ── nsTableFrame
> │ │ ├───3,412,192 B (03.28%) -- servo-style-structs
> │ │ │ ├──1,288,224 B (01.24%) ── Display
> │ │ │ ├────742,400 B (00.71%) ── Position
> │ │ │ ├────308,736 B (00.30%) ── Font
> │ │ │ ├────226,512 B (00.22%) ── Background
> │ │ │ ├────218,304 B (00.21%) ── TextReset
> │ │ │ ├────214,896 B (00.21%) ── Text
> │ │ │ ├────130,560 B (00.13%) ── Border
> │ │ │ ├─────81,408 B (00.08%) ── UIReset
> │ │ │ ├─────61,440 B (00.06%) ── Padding
> │ │ │ ├─────38,176 B (00.04%) ── UserInterface
> │ │ │ ├─────29,232 B (00.03%) ── Margin
> │ │ │ ├─────21,824 B (00.02%) ── sundries
> │ │ │ ├─────20,080 B (00.02%) ── Color
> │ │ │ ├─────20,080 B (00.02%) ── Column
> │ │ │ └─────10,320 B (00.01%) ── Effects
> │ │ ├───2,227,680 B (02.14%) -- computed-values
> │ │ │ ├──1,182,928 B (01.14%) ── non-dom
> │ │ │ └──1,044,752 B (01.00%) ── dom
> │ │ ├───1,500,016 B (01.44%) ── text-runs
> │ │ ├─────492,640 B (00.47%) ── line-boxes
> │ │ ├─────326,688 B (00.31%) ── frame-properties
> │ │ ├─────301,760 B (00.29%) ── pres-shell
> │ │ ├──────27,648 B (00.03%) ── pres-contexts
> │ │ └─────────176 B (00.00%) ── style-sets
The 'servo-style-structs' and 'computed-values' sub-trees are new. (Prior to
this patch, ComputedValues under DOM elements were tallied under the the
'dom/element-nodes' sub-tree, and ComputedValues not under DOM element were
ignored.) 'servo-style-structs/sundries' aggregates all the style structs that
are smaller than 8 KiB.
Other notable things done by the patch are as follows.
- It significantly changes the signatures of the methods measuring nsINode and
its subclasses, in order to handle the tallying of style structs separately
from element-nodes. Likewise for nsIFrame.
- It renames the 'layout/style-structs' sub-tree as
'layout/gecko-style-structs', to clearly distinguish it from the new
'layout/servo-style-structs' sub-tree.
- It adds some FFI functions to access various Rust-side data structures from
C++ code.
- There is a nasty hack used twice to measure Arcs, by stepping backwards from
an interior pointer to a base pointer. It works, but I want to replace it
with something better eventually. The "XXX WARNING" comments have details.
- It makes DMD print a line to the console if it sees a pointer it doesn't
recognise. This is useful for detecting when we are measuring an interior
pointer instead of a base pointer, which is bad but easy to do when Arcs are
involved.
- It removes the Rust code for measuring CVs, because it's now all done on the
C++ side.
MozReview-Commit-ID: BKebACLKtCi
--HG--
extra : rebase_source : 4d9a8c6b198a0ff025b811759a6bfa9f33a260ba
2017-08-11 09:37:33 +03:00
|
|
|
void
|
2017-08-25 07:47:54 +03:00
|
|
|
SVGPathElement::AddSizeOfExcludingThis(nsWindowSizes& aSizes,
|
Bug 1387956 - Overhaul ComputedValues measurement, and add style structs measurement. r=bholley.
This patch moves measurement of ComputedValues objects from Rust to C++.
Measurement now happens (a) via DOM elements and (b) remaining elements via
the frame tree. Likewise for the style structs hanging off ComputedValues
objects.
Here is an example of the output.
> ├──27,600,448 B (26.49%) -- active/window(https://en.wikipedia.org/wiki/Barack_Obama)
> │ ├──12,772,544 B (12.26%) -- layout
> │ │ ├───4,483,744 B (04.30%) -- frames
> │ │ │ ├──1,653,552 B (01.59%) ── nsInlineFrame
> │ │ │ ├──1,415,760 B (01.36%) ── nsTextFrame
> │ │ │ ├────431,376 B (00.41%) ── nsBlockFrame
> │ │ │ ├────340,560 B (00.33%) ── nsHTMLScrollFrame
> │ │ │ ├────302,544 B (00.29%) ── nsContinuingTextFrame
> │ │ │ ├────156,408 B (00.15%) ── nsBulletFrame
> │ │ │ ├─────73,024 B (00.07%) ── nsPlaceholderFrame
> │ │ │ ├─────27,656 B (00.03%) ── sundries
> │ │ │ ├─────23,520 B (00.02%) ── nsTableCellFrame
> │ │ │ ├─────16,704 B (00.02%) ── nsImageFrame
> │ │ │ ├─────15,488 B (00.01%) ── nsTableRowFrame
> │ │ │ ├─────13,776 B (00.01%) ── nsTableColFrame
> │ │ │ └─────13,376 B (00.01%) ── nsTableFrame
> │ │ ├───3,412,192 B (03.28%) -- servo-style-structs
> │ │ │ ├──1,288,224 B (01.24%) ── Display
> │ │ │ ├────742,400 B (00.71%) ── Position
> │ │ │ ├────308,736 B (00.30%) ── Font
> │ │ │ ├────226,512 B (00.22%) ── Background
> │ │ │ ├────218,304 B (00.21%) ── TextReset
> │ │ │ ├────214,896 B (00.21%) ── Text
> │ │ │ ├────130,560 B (00.13%) ── Border
> │ │ │ ├─────81,408 B (00.08%) ── UIReset
> │ │ │ ├─────61,440 B (00.06%) ── Padding
> │ │ │ ├─────38,176 B (00.04%) ── UserInterface
> │ │ │ ├─────29,232 B (00.03%) ── Margin
> │ │ │ ├─────21,824 B (00.02%) ── sundries
> │ │ │ ├─────20,080 B (00.02%) ── Color
> │ │ │ ├─────20,080 B (00.02%) ── Column
> │ │ │ └─────10,320 B (00.01%) ── Effects
> │ │ ├───2,227,680 B (02.14%) -- computed-values
> │ │ │ ├──1,182,928 B (01.14%) ── non-dom
> │ │ │ └──1,044,752 B (01.00%) ── dom
> │ │ ├───1,500,016 B (01.44%) ── text-runs
> │ │ ├─────492,640 B (00.47%) ── line-boxes
> │ │ ├─────326,688 B (00.31%) ── frame-properties
> │ │ ├─────301,760 B (00.29%) ── pres-shell
> │ │ ├──────27,648 B (00.03%) ── pres-contexts
> │ │ └─────────176 B (00.00%) ── style-sets
The 'servo-style-structs' and 'computed-values' sub-trees are new. (Prior to
this patch, ComputedValues under DOM elements were tallied under the the
'dom/element-nodes' sub-tree, and ComputedValues not under DOM element were
ignored.) 'servo-style-structs/sundries' aggregates all the style structs that
are smaller than 8 KiB.
Other notable things done by the patch are as follows.
- It significantly changes the signatures of the methods measuring nsINode and
its subclasses, in order to handle the tallying of style structs separately
from element-nodes. Likewise for nsIFrame.
- It renames the 'layout/style-structs' sub-tree as
'layout/gecko-style-structs', to clearly distinguish it from the new
'layout/servo-style-structs' sub-tree.
- It adds some FFI functions to access various Rust-side data structures from
C++ code.
- There is a nasty hack used twice to measure Arcs, by stepping backwards from
an interior pointer to a base pointer. It works, but I want to replace it
with something better eventually. The "XXX WARNING" comments have details.
- It makes DMD print a line to the console if it sees a pointer it doesn't
recognise. This is useful for detecting when we are measuring an interior
pointer instead of a base pointer, which is bad but easy to do when Arcs are
involved.
- It removes the Rust code for measuring CVs, because it's now all done on the
C++ side.
MozReview-Commit-ID: BKebACLKtCi
--HG--
extra : rebase_source : 4d9a8c6b198a0ff025b811759a6bfa9f33a260ba
2017-08-11 09:37:33 +03:00
|
|
|
size_t* aNodeSize) const
|
2014-05-26 19:21:23 +04:00
|
|
|
{
|
2017-08-25 07:47:54 +03:00
|
|
|
SVGPathElementBase::AddSizeOfExcludingThis(aSizes, aNodeSize);
|
|
|
|
*aNodeSize += mD.SizeOfExcludingThis(aSizes.mState.mMallocSizeOf);
|
2014-05-26 19:21:23 +04:00
|
|
|
}
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// nsIDOMNode methods
|
|
|
|
|
2013-01-13 02:22:31 +04:00
|
|
|
NS_IMPL_ELEMENT_CLONE_WITH_INIT(SVGPathElement)
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
uint32_t
|
|
|
|
SVGPathElement::GetPathSegAtLength(float distance)
|
|
|
|
{
|
|
|
|
return mD.GetAnimValue().GetPathSegAtLength(distance);
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<DOMSVGPathSegClosePath>
|
|
|
|
SVGPathElement::CreateSVGPathSegClosePath()
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegClosePath> pathSeg = new DOMSVGPathSegClosePath();
|
2013-01-17 00:50:59 +04:00
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegMovetoAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegMovetoAbs(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegMovetoAbs> pathSeg = new DOMSVGPathSegMovetoAbs(x, y);
|
2013-01-17 00:50:59 +04:00
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegMovetoRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegMovetoRel(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegMovetoRel> pathSeg = new DOMSVGPathSegMovetoRel(x, y);
|
2013-01-17 00:50:59 +04:00
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoAbs(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoAbs> pathSeg = new DOMSVGPathSegLinetoAbs(x, y);
|
2013-01-17 00:50:59 +04:00
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoRel(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoRel> pathSeg = new DOMSVGPathSegLinetoRel(x, y);
|
2013-01-17 00:50:59 +04:00
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2)
|
|
|
|
{
|
|
|
|
// Note that we swap from DOM API argument order to the argument order used
|
|
|
|
// in the <path> element's 'd' attribute (i.e. we put the arguments for the
|
|
|
|
// end point of the segment last instead of first).
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoCubicAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoCubicAbs(x1, y1, x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoCubicRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoCubicRel(x1, y1, x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoQuadraticAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoQuadraticAbs(x1, y1, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoQuadraticRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoQuadraticRel(x1, y1, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegArcAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegArcAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegArcAbs(r1, r2, angle, largeArcFlag, sweepFlag, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegArcRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegArcRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegArcRel(r1, r2, angle, largeArcFlag, sweepFlag, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoHorizontalAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoHorizontalAbs(float x)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoHorizontalAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegLinetoHorizontalAbs(x);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoHorizontalRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoHorizontalRel(float x)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoHorizontalRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegLinetoHorizontalRel(x);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoVerticalAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoVerticalAbs(float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoVerticalAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegLinetoVerticalAbs(y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegLinetoVerticalRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegLinetoVerticalRel(float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegLinetoVerticalRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegLinetoVerticalRel(y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicSmoothAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicSmoothAbs(float x, float y, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoCubicSmoothAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoCubicSmoothAbs(x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoCubicSmoothRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoCubicSmoothRel(float x, float y, float x2, float y2)
|
|
|
|
{
|
|
|
|
// See comment in CreateSVGPathSegCurvetoCubicAbs
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoCubicSmoothRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoCubicSmoothRel(x2, y2, x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticSmoothAbs>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticSmoothAbs(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoQuadraticSmoothAbs> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoQuadraticSmoothAbs(x, y);
|
|
|
|
return pathSeg.forget();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegCurvetoQuadraticSmoothRel>
|
|
|
|
SVGPathElement::CreateSVGPathSegCurvetoQuadraticSmoothRel(float x, float y)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMSVGPathSegCurvetoQuadraticSmoothRel> pathSeg =
|
2013-01-17 00:50:59 +04:00
|
|
|
new DOMSVGPathSegCurvetoQuadraticSmoothRel(x, y);
|
|
|
|
return pathSeg.forget();
|
|
|
|
}
|
2006-07-28 22:10:48 +04:00
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegList>
|
|
|
|
SVGPathElement::PathSegList()
|
2012-03-03 13:21:09 +04:00
|
|
|
{
|
2013-01-17 00:50:59 +04:00
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetBaseValKey(), this, false);
|
2012-03-03 13:21:09 +04:00
|
|
|
}
|
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegList>
|
|
|
|
SVGPathElement::AnimatedPathSegList()
|
2006-07-28 22:10:48 +04:00
|
|
|
{
|
2013-01-17 00:50:59 +04:00
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetAnimValKey(), this, true);
|
2006-07-28 22:10:48 +04:00
|
|
|
}
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
//----------------------------------------------------------------------
|
2013-01-17 00:50:59 +04:00
|
|
|
// nsSVGElement methods
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2013-01-17 00:50:59 +04:00
|
|
|
/* virtual */ bool
|
|
|
|
SVGPathElement::HasValidDimensions() const
|
2001-12-12 10:59:31 +03:00
|
|
|
{
|
2013-01-17 00:50:59 +04:00
|
|
|
return !mD.GetAnimValue().IsEmpty();
|
2001-12-12 10:59:31 +03:00
|
|
|
}
|
|
|
|
|
2004-12-09 06:16:15 +03:00
|
|
|
//----------------------------------------------------------------------
|
2005-11-02 03:41:51 +03:00
|
|
|
// nsIContent methods
|
2004-12-09 06:16:15 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHODIMP_(bool)
|
2017-10-03 01:05:19 +03:00
|
|
|
SVGPathElement::IsAttributeMapped(const nsAtom* name) const
|
2004-12-09 06:16:15 +03:00
|
|
|
{
|
|
|
|
static const MappedAttributeEntry* const map[] = {
|
2007-03-20 13:43:33 +03:00
|
|
|
sMarkersMap
|
2004-12-09 06:16:15 +03:00
|
|
|
};
|
2006-08-11 02:17:14 +04:00
|
|
|
|
2011-12-18 14:09:27 +04:00
|
|
|
return FindAttributeDependence(name, map) ||
|
2013-01-13 02:22:31 +04:00
|
|
|
SVGPathElementBase::IsAttributeMapped(name);
|
2004-12-09 06:16:15 +03:00
|
|
|
}
|
2005-08-26 06:49:52 +04:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<Path>
|
2014-10-04 15:13:30 +04:00
|
|
|
SVGPathElement::GetOrBuildPathForMeasuring()
|
2005-08-26 06:49:52 +04:00
|
|
|
{
|
2014-10-04 15:13:30 +04:00
|
|
|
return mD.GetAnimValue().BuildPathForMeasuring();
|
2005-08-26 06:49:52 +04:00
|
|
|
}
|
2006-05-03 21:01:28 +04:00
|
|
|
|
2006-06-21 19:42:28 +04:00
|
|
|
//----------------------------------------------------------------------
|
2016-12-18 14:11:47 +03:00
|
|
|
// SVGGeometryElement methods
|
2006-06-21 19:42:28 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2017-10-03 01:05:19 +03:00
|
|
|
SVGPathElement::AttributeDefinesGeometry(const nsAtom *aName)
|
2006-06-21 19:42:28 +04:00
|
|
|
{
|
2011-05-01 22:26:20 +04:00
|
|
|
return aName == nsGkAtoms::d ||
|
|
|
|
aName == nsGkAtoms::pathLength;
|
2006-06-21 19:42:28 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2013-01-13 02:22:31 +04:00
|
|
|
SVGPathElement::IsMarkable()
|
2006-06-21 19:42:28 +04:00
|
|
|
{
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2006-06-21 19:42:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-13 02:22:31 +04:00
|
|
|
SVGPathElement::GetMarkPoints(nsTArray<nsSVGMark> *aMarks)
|
2007-07-02 13:54:11 +04:00
|
|
|
{
|
2010-11-08 18:07:00 +03:00
|
|
|
mD.GetAnimValue().GetMarkerPositioningData(aMarks);
|
2006-06-21 19:42:28 +04:00
|
|
|
}
|
|
|
|
|
2014-03-19 05:13:19 +04:00
|
|
|
float
|
2013-01-13 02:22:31 +04:00
|
|
|
SVGPathElement::GetPathLengthScale(PathLengthScaleForType aFor)
|
2011-05-01 22:26:20 +04:00
|
|
|
{
|
2015-02-10 01:34:50 +03:00
|
|
|
MOZ_ASSERT(aFor == eForTextPath || aFor == eForStroking,
|
|
|
|
"Unknown enum");
|
2011-05-01 22:26:20 +04:00
|
|
|
if (mPathLength.IsExplicitlySet()) {
|
2011-11-22 01:22:19 +04:00
|
|
|
float authorsPathLengthEstimate = mPathLength.GetAnimValue();
|
|
|
|
if (authorsPathLengthEstimate > 0) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<Path> path = GetOrBuildPathForMeasuring();
|
2014-07-03 22:50:42 +04:00
|
|
|
if (!path) {
|
|
|
|
// The path is empty or invalid so its length must be zero and
|
|
|
|
// we know that 0 / authorsPathLengthEstimate = 0.
|
|
|
|
return 0.0;
|
|
|
|
}
|
2011-11-22 01:22:19 +04:00
|
|
|
if (aFor == eForTextPath) {
|
|
|
|
// For textPath, a transform on the referenced path affects the
|
|
|
|
// textPath layout, so when calculating the actual path length
|
|
|
|
// we need to take that into account.
|
2013-12-27 00:13:57 +04:00
|
|
|
gfxMatrix matrix = PrependLocalTransformsTo(gfxMatrix());
|
2013-11-18 05:29:06 +04:00
|
|
|
if (!matrix.IsIdentity()) {
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<PathBuilder> builder =
|
2013-12-27 00:13:57 +04:00
|
|
|
path->TransformedCopyToBuilder(ToMatrix(matrix));
|
2013-11-18 05:29:06 +04:00
|
|
|
path = builder->Finish();
|
|
|
|
}
|
2011-11-22 01:22:19 +04:00
|
|
|
}
|
2014-07-03 22:50:42 +04:00
|
|
|
return path->ComputeLength() / authorsPathLengthEstimate;
|
2011-05-01 22:26:20 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 1.0;
|
|
|
|
}
|
2013-01-13 02:22:31 +04:00
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
already_AddRefed<Path>
|
2014-07-06 00:53:04 +04:00
|
|
|
SVGPathElement::BuildPath(PathBuilder* aBuilder)
|
2013-11-02 15:10:38 +04:00
|
|
|
{
|
|
|
|
// The Moz2D PathBuilder that our SVGPathData will be using only cares about
|
|
|
|
// the fill rule. However, in order to fulfill the requirements of the SVG
|
|
|
|
// spec regarding zero length sub-paths when square line caps are in use,
|
|
|
|
// SVGPathData needs to know our stroke-linecap style and, if "square", then
|
|
|
|
// also our stroke width. See the comment for
|
|
|
|
// ApproximateZeroLengthSubpathSquareCaps for more info.
|
|
|
|
|
|
|
|
uint8_t strokeLineCap = NS_STYLE_STROKE_LINECAP_BUTT;
|
|
|
|
Float strokeWidth = 0;
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsStyleContext> styleContext =
|
2017-04-05 08:39:23 +03:00
|
|
|
nsComputedDOMStyle::GetStyleContextNoFlush(this, nullptr, nullptr);
|
2013-11-02 15:10:38 +04:00
|
|
|
if (styleContext) {
|
|
|
|
const nsStyleSVG* style = styleContext->StyleSVG();
|
|
|
|
// Note: the path that we return may be used for hit-testing, and SVG
|
|
|
|
// exposes hit-testing of strokes that are not actually painted. For that
|
|
|
|
// reason we do not check for eStyleSVGPaintType_None or check the stroke
|
|
|
|
// opacity here.
|
2014-10-03 12:50:42 +04:00
|
|
|
if (style->mStrokeLinecap != NS_STYLE_STROKE_LINECAP_BUTT) {
|
2013-11-02 15:10:38 +04:00
|
|
|
strokeLineCap = style->mStrokeLinecap;
|
2014-07-06 00:53:04 +04:00
|
|
|
strokeWidth = SVGContentUtils::GetStrokeWidth(this, styleContext, nullptr);
|
2013-11-02 15:10:38 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-04 15:13:30 +04:00
|
|
|
return mD.GetAnimValue().BuildPath(aBuilder, strokeLineCap, strokeWidth);
|
2013-11-02 15:10:38 +04:00
|
|
|
}
|
|
|
|
|
2013-01-13 02:22:31 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|