/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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__ */