summaryrefslogtreecommitdiffstats
path: root/dom/svg/DOMSVGPoint.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/svg/DOMSVGPoint.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/svg/DOMSVGPoint.h')
-rw-r--r--dom/svg/DOMSVGPoint.h113
1 files changed, 113 insertions, 0 deletions
diff --git a/dom/svg/DOMSVGPoint.h b/dom/svg/DOMSVGPoint.h
new file mode 100644
index 000000000..3c8780a20
--- /dev/null
+++ b/dom/svg/DOMSVGPoint.h
@@ -0,0 +1,113 @@
+/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
+/* vim: set ts=8 sts=2 et sw=2 tw=80: */
+/* 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_DOMSVGPOINT_H__
+#define MOZILLA_DOMSVGPOINT_H__
+
+#include "DOMSVGPointList.h"
+#include "mozilla/gfx/2D.h"
+#include "nsDebug.h"
+#include "nsISVGPoint.h"
+#include "SVGPoint.h"
+#include "mozilla/Attributes.h"
+#include "mozilla/FloatingPoint.h"
+
+class nsSVGElement;
+
+namespace mozilla {
+
+namespace dom {
+class SVGMatrix;
+} // namespace dom
+
+/**
+ * Class DOMSVGPoint
+ *
+ * This class creates the DOM objects that wrap internal SVGPoint objects that
+ * are in an SVGPointList. It is also used to create the objects returned by
+ * SVGSVGElement.createSVGPoint() and other functions that return DOM SVGPoint
+ * objects.
+ *
+ * See the architecture comment in DOMSVGPointList.h for an overview of the
+ * important points regarding these DOM wrapper structures.
+ *
+ * See the architecture comment in DOMSVGLength.h (yes, LENGTH) for an overview
+ * of the important points regarding how this specific class works.
+ */
+class DOMSVGPoint final : public nsISVGPoint
+{
+ friend class AutoChangePointNotifier;
+
+ typedef mozilla::gfx::Point Point;
+
+public:
+ /**
+ * Generic ctor for DOMSVGPoint objects that are created for an attribute.
+ */
+ DOMSVGPoint(DOMSVGPointList *aList,
+ uint32_t aListIndex,
+ bool aIsAnimValItem)
+ : nsISVGPoint()
+ {
+ mList = aList;
+ mListIndex = aListIndex;
+ mIsAnimValItem = aIsAnimValItem;
+
+ // These shifts are in sync with the members.
+ MOZ_ASSERT(aList && aListIndex <= MaxListIndex(), "bad arg");
+
+ MOZ_ASSERT(IndexIsValid(), "Bad index for DOMSVGPoint!");
+ }
+
+ explicit DOMSVGPoint(const DOMSVGPoint *aPt = nullptr)
+ : nsISVGPoint()
+ {
+ if (aPt) {
+ mPt = aPt->ToSVGPoint();
+ }
+ }
+
+ DOMSVGPoint(float aX, float aY)
+ : nsISVGPoint()
+ {
+ mPt.mX = aX;
+ mPt.mY = aY;
+ }
+
+ explicit DOMSVGPoint(const Point& aPt)
+ : nsISVGPoint()
+ {
+ mPt.mX = aPt.x;
+ mPt.mY = aPt.y;
+ NS_ASSERTION(IsFinite(mPt.mX) && IsFinite(mPt.mX),
+ "DOMSVGPoint coords are not finite");
+ }
+
+
+ // WebIDL
+ virtual float X() override;
+ virtual void SetX(float aX, ErrorResult& rv) override;
+ virtual float Y() override;
+ virtual void SetY(float aY, ErrorResult& rv) override;
+ virtual already_AddRefed<nsISVGPoint> MatrixTransform(dom::SVGMatrix& matrix) override;
+ nsISupports* GetParentObject() override {
+ return mList;
+ }
+
+ virtual DOMSVGPoint* Copy() override {
+ return new DOMSVGPoint(this);
+ }
+
+protected:
+
+ nsSVGElement* Element() {
+ return mList->Element();
+ }
+};
+
+} // namespace mozilla
+
+#endif // MOZILLA_DOMSVGPOINT_H__