2017-10-27 01:08:41 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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"
|
2019-05-31 16:17:46 +03:00
|
|
|
#include "SVGGeometryProperty.h"
|
2013-11-18 05:29:06 +04:00
|
|
|
#include "gfx2DGlue.h"
|
2014-07-06 00:53:04 +04:00
|
|
|
#include "gfxPlatform.h"
|
2013-08-02 11:04:22 +04:00
|
|
|
#include "nsGkAtoms.h"
|
2019-05-27 08:06:47 +03:00
|
|
|
#include "nsIFrame.h"
|
2013-11-02 15:10:38 +04:00
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsStyleStruct.h"
|
2018-03-28 02:44:49 +03:00
|
|
|
#include "nsWindowSizes.h"
|
2019-01-25 05:00:52 +03:00
|
|
|
#include "mozilla/dom/SVGPathElementBinding.h"
|
|
|
|
#include "mozilla/gfx/2D.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
2022-08-18 00:26:36 +03:00
|
|
|
#include "mozilla/StaticPrefs_layout.h"
|
2019-01-25 05:00:52 +03:00
|
|
|
#include "mozilla/SVGContentUtils.h"
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2018-12-21 14:43:29 +03:00
|
|
|
NS_IMPL_NS_NEW_SVG_ELEMENT(Path)
|
2013-01-13 02:22:31 +04:00
|
|
|
|
2013-11-02 15:10:38 +04:00
|
|
|
using namespace mozilla::gfx;
|
|
|
|
|
2022-05-09 23:41:17 +03:00
|
|
|
namespace mozilla::dom {
|
2006-07-28 22:10:48 +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
|
|
|
JSObject* SVGPathElement::WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) {
|
2018-06-26 00:20:54 +03:00
|
|
|
return SVGPathElement_Binding::Wrap(aCx, this, aGivenProto);
|
2013-01-17 00:50:59 +04:00
|
|
|
}
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// Implementation
|
|
|
|
|
2018-09-21 23:45:49 +03:00
|
|
|
SVGPathElement::SVGPathElement(
|
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo)
|
|
|
|
: SVGPathElementBase(std::move(aNodeInfo)) {}
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2014-05-26 19:21:23 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// memory reporting methods
|
|
|
|
|
2017-08-25 07:47:54 +03:00
|
|
|
void 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 {
|
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
|
|
|
//----------------------------------------------------------------------
|
2018-05-30 05:58:49 +03:00
|
|
|
// nsINode methods
|
2001-12-12 10:59:31 +03:00
|
|
|
|
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) {
|
2021-06-10 00:17:21 +03:00
|
|
|
uint32_t seg = 0;
|
|
|
|
auto callback = [&](const ComputedStyle* s) {
|
|
|
|
const nsStyleSVGReset* styleSVGReset = s->StyleSVGReset();
|
|
|
|
if (styleSVGReset->mD.IsPath()) {
|
|
|
|
seg = SVGPathData::GetPathSegAtLength(
|
|
|
|
styleSVGReset->mD.AsPath()._0.AsSpan(), distance);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-03-27 23:49:41 +03:00
|
|
|
FlushStyleIfNeeded();
|
|
|
|
if (SVGGeometryProperty::DoForComputedStyle(this, callback)) {
|
|
|
|
return seg;
|
2021-06-10 00:17:21 +03:00
|
|
|
}
|
2013-01-17 00:50:59 +04:00
|
|
|
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
|
|
|
|
2021-12-10 04:01:40 +03:00
|
|
|
// FIXME: This API is enabled only if dom.svg.pathSeg.enabled is true. This
|
|
|
|
// preference is off by default in Bug 1388931, and will be dropped later.
|
|
|
|
// So we are not planning to map d property for this API.
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegList> SVGPathElement::PathSegList() {
|
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetBaseValKey(), this, false);
|
2012-03-03 13:21:09 +04:00
|
|
|
}
|
|
|
|
|
2021-12-10 04:01:40 +03:00
|
|
|
// FIXME: This API is enabled only if dom.svg.pathSeg.enabled is true. This
|
|
|
|
// preference is off by default in Bug 1388931, and will be dropped later.
|
|
|
|
// So we are not planning to map d property for this API.
|
2013-01-17 00:50:59 +04:00
|
|
|
already_AddRefed<DOMSVGPathSegList> SVGPathElement::AnimatedPathSegList() {
|
|
|
|
return DOMSVGPathSegList::GetDOMWrapper(mD.GetAnimValKey(), this, true);
|
2006-07-28 22:10:48 +04:00
|
|
|
}
|
|
|
|
|
2001-12-12 10:59:31 +03:00
|
|
|
//----------------------------------------------------------------------
|
2018-12-21 11:58:14 +03:00
|
|
|
// SVGElement methods
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2019-02-26 01:05:29 +03:00
|
|
|
/* virtual */
|
|
|
|
bool SVGPathElement::HasValidDimensions() const {
|
2021-06-10 00:17:21 +03:00
|
|
|
bool hasPath = false;
|
|
|
|
auto callback = [&](const ComputedStyle* s) {
|
|
|
|
const nsStyleSVGReset* styleSVGReset = s->StyleSVGReset();
|
|
|
|
hasPath =
|
|
|
|
styleSVGReset->mD.IsPath() && !styleSVGReset->mD.AsPath()._0.IsEmpty();
|
|
|
|
};
|
|
|
|
|
|
|
|
SVGGeometryProperty::DoForComputedStyle(this, callback);
|
|
|
|
// If hasPath is false, we may disable the pref of d property, so we fallback
|
|
|
|
// to check mD.
|
|
|
|
return hasPath || !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 {
|
2023-03-27 23:49:41 +03:00
|
|
|
return name == nsGkAtoms::d || SVGPathElementBase::IsAttributeMapped(name);
|
2004-12-09 06:16:15 +03:00
|
|
|
}
|
2005-08-26 06:49:52 +04:00
|
|
|
|
2014-10-04 15:13:30 +04:00
|
|
|
already_AddRefed<Path> SVGPathElement::GetOrBuildPathForMeasuring() {
|
2021-06-10 00:17:21 +03:00
|
|
|
RefPtr<Path> path;
|
|
|
|
bool success = SVGGeometryProperty::DoForComputedStyle(
|
|
|
|
this, [&path](const ComputedStyle* s) {
|
|
|
|
const auto& d = s->StyleSVGReset()->mD;
|
|
|
|
if (d.IsNone()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
path = SVGPathData::BuildPathForMeasuring(d.AsPath()._0.AsSpan());
|
|
|
|
});
|
|
|
|
return success ? path.forget() : 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
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
bool SVGPathElement::AttributeDefinesGeometry(const nsAtom* aName) {
|
2011-05-01 22:26:20 +04:00
|
|
|
return aName == nsGkAtoms::d || aName == nsGkAtoms::pathLength;
|
2006-06-21 19:42:28 +04:00
|
|
|
}
|
|
|
|
|
2013-01-13 02:22:31 +04:00
|
|
|
bool SVGPathElement::IsMarkable() { return true; }
|
2006-06-21 19:42:28 +04:00
|
|
|
|
2019-01-26 16:01:31 +03:00
|
|
|
void SVGPathElement::GetMarkPoints(nsTArray<SVGMark>* aMarks) {
|
2021-06-10 00:17:22 +03:00
|
|
|
auto callback = [aMarks](const ComputedStyle* s) {
|
|
|
|
const nsStyleSVGReset* styleSVGReset = s->StyleSVGReset();
|
|
|
|
if (styleSVGReset->mD.IsPath()) {
|
|
|
|
Span<const StylePathCommand> path =
|
|
|
|
styleSVGReset->mD.AsPath()._0.AsSpan();
|
|
|
|
SVGPathData::GetMarkerPositioningData(path, aMarks);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-03-27 23:49:41 +03:00
|
|
|
if (SVGGeometryProperty::DoForComputedStyle(this, callback)) {
|
2021-06-10 00:17:22 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-08 18:07:00 +03:00
|
|
|
mD.GetAnimValue().GetMarkerPositioningData(aMarks);
|
2006-06-21 19:42:28 +04:00
|
|
|
}
|
|
|
|
|
2022-02-21 16:35:44 +03:00
|
|
|
void SVGPathElement::GetAsSimplePath(SimplePath* aSimplePath) {
|
|
|
|
aSimplePath->Reset();
|
|
|
|
auto callback = [&](const ComputedStyle* s) {
|
|
|
|
const nsStyleSVGReset* styleSVGReset = s->StyleSVGReset();
|
|
|
|
if (styleSVGReset->mD.IsPath()) {
|
|
|
|
auto pathData = styleSVGReset->mD.AsPath()._0.AsSpan();
|
|
|
|
auto maybeRect = SVGPathToAxisAlignedRect(pathData);
|
|
|
|
if (maybeRect.isSome()) {
|
|
|
|
Rect r = maybeRect.value();
|
|
|
|
aSimplePath->SetRect(r.x, r.y, r.width, r.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
SVGGeometryProperty::DoForComputedStyle(this, callback);
|
|
|
|
}
|
|
|
|
|
2014-07-06 00:53:04 +04:00
|
|
|
already_AddRefed<Path> 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.
|
|
|
|
|
2019-11-21 09:07:30 +03:00
|
|
|
auto strokeLineCap = StyleStrokeLinecap::Butt;
|
2013-11-02 15:10:38 +04:00
|
|
|
Float strokeWidth = 0;
|
2021-06-10 00:17:21 +03:00
|
|
|
RefPtr<Path> path;
|
2013-11-02 15:10:38 +04:00
|
|
|
|
2021-06-10 00:17:21 +03:00
|
|
|
auto callback = [&](const ComputedStyle* s) {
|
|
|
|
const nsStyleSVG* styleSVG = s->StyleSVG();
|
2013-11-02 15:10:38 +04:00
|
|
|
// 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.
|
2021-06-10 00:17:21 +03:00
|
|
|
if (styleSVG->mStrokeLinecap != StyleStrokeLinecap::Butt) {
|
|
|
|
strokeLineCap = styleSVG->mStrokeLinecap;
|
2019-05-31 16:17:46 +03:00
|
|
|
strokeWidth = SVGContentUtils::GetStrokeWidth(this, s, nullptr);
|
2013-11-02 15:10:38 +04:00
|
|
|
}
|
|
|
|
|
2021-06-10 00:17:21 +03:00
|
|
|
const auto& d = s->StyleSVGReset()->mD;
|
|
|
|
if (d.IsPath()) {
|
|
|
|
path = SVGPathData::BuildPath(d.AsPath()._0.AsSpan(), aBuilder,
|
|
|
|
strokeLineCap, strokeWidth);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool success = SVGGeometryProperty::DoForComputedStyle(this, callback);
|
2023-03-27 23:49:41 +03:00
|
|
|
if (success) {
|
2021-06-10 00:17:21 +03:00
|
|
|
return path.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fallback to use the d attribute if it exists.
|
2014-10-04 15:13:30 +04:00
|
|
|
return mD.GetAnimValue().BuildPath(aBuilder, strokeLineCap, strokeWidth);
|
2013-11-02 15:10:38 +04:00
|
|
|
}
|
|
|
|
|
2021-06-10 00:17:25 +03:00
|
|
|
bool SVGPathElement::GetDistancesFromOriginToEndsOfVisibleSegments(
|
|
|
|
FallibleTArray<double>* aOutput) {
|
|
|
|
bool ret = false;
|
|
|
|
auto callback = [&ret, aOutput](const ComputedStyle* s) {
|
|
|
|
const auto& d = s->StyleSVGReset()->mD;
|
|
|
|
ret = d.IsNone() ||
|
|
|
|
SVGPathData::GetDistancesFromOriginToEndsOfVisibleSegments(
|
|
|
|
d.AsPath()._0.AsSpan(), aOutput);
|
|
|
|
};
|
|
|
|
|
2023-03-27 23:49:41 +03:00
|
|
|
if (SVGGeometryProperty::DoForComputedStyle(this, callback)) {
|
2021-06-10 00:17:25 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mD.GetAnimValue().GetDistancesFromOriginToEndsOfVisibleSegments(
|
|
|
|
aOutput);
|
|
|
|
}
|
|
|
|
|
2021-06-10 00:17:21 +03:00
|
|
|
/* static */
|
|
|
|
bool SVGPathElement::IsDPropertyChangedViaCSS(const ComputedStyle& aNewStyle,
|
|
|
|
const ComputedStyle& aOldStyle) {
|
|
|
|
return aNewStyle.StyleSVGReset()->mD != aOldStyle.StyleSVGReset()->mD;
|
|
|
|
}
|
|
|
|
|
2022-05-09 23:41:17 +03:00
|
|
|
} // namespace mozilla::dom
|