From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- dom/base/WebKitCSSMatrix.h | 72 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 dom/base/WebKitCSSMatrix.h (limited to 'dom/base/WebKitCSSMatrix.h') diff --git a/dom/base/WebKitCSSMatrix.h b/dom/base/WebKitCSSMatrix.h new file mode 100644 index 000000000..4b2adf9e0 --- /dev/null +++ b/dom/base/WebKitCSSMatrix.h @@ -0,0 +1,72 @@ +/* -*- 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_dom_webkitcssmatrix_h__ +#define mozilla_dom_webkitcssmatrix_h__ + +#include "mozilla/dom/DOMMatrix.h" + +namespace mozilla { +namespace dom { + +class WebKitCSSMatrix final : public DOMMatrix +{ +public: + explicit WebKitCSSMatrix(nsISupports* aParent) + : DOMMatrix(aParent) + {} + + WebKitCSSMatrix(nsISupports* aParent, const DOMMatrixReadOnly& other) + : DOMMatrix(aParent, other) + {} + + static bool FeatureEnabled(JSContext* aCx, JSObject* aObj); + + static already_AddRefed + Constructor(const GlobalObject& aGlobal, ErrorResult& aRv); + static already_AddRefed + Constructor(const GlobalObject& aGlobal, + const nsAString& aTransformList, ErrorResult& aRv); + static already_AddRefed + Constructor(const GlobalObject& aGlobal, + const DOMMatrixReadOnly& aOther, ErrorResult& aRv); + + nsISupports* GetParentObject() const { return mParent; } + virtual JSObject* WrapObject(JSContext* aCx, + JS::Handle aGivenProto) override; + + WebKitCSSMatrix* SetMatrixValue(const nsAString& aTransformList, + ErrorResult& aRv); + + already_AddRefed Multiply(const WebKitCSSMatrix& aOther) const; + already_AddRefed Inverse(ErrorResult& aRv) const; + already_AddRefed Translate(double aTx, + double aTy, + double aTz) const; + already_AddRefed Scale(double aScaleX, + const Optional& aScaleY, + double aScaleZ) const; + already_AddRefed Rotate(double aRotX, + const Optional& aRotY, + const Optional& aRotZ) const; + already_AddRefed RotateAxisAngle(double aX, + double aY, + double aZ, + double aAngle) const; + already_AddRefed SkewX(double aSx) const; + already_AddRefed SkewY(double aSy) const; +protected: + WebKitCSSMatrix* Rotate3dSelf(double aRotX, + double aRotY, + double aRotZ); + + WebKitCSSMatrix* InvertSelfThrow(ErrorResult& aRv); +}; + +} // namespace dom +} // namespace mozilla + +#endif /* mozilla_dom_webkitcssmatrix_h__ */ -- cgit v1.2.3