diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/base/WebKitCSSMatrix.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-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/base/WebKitCSSMatrix.h')
-rw-r--r-- | dom/base/WebKitCSSMatrix.h | 72 |
1 files changed, 72 insertions, 0 deletions
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<WebKitCSSMatrix> + Constructor(const GlobalObject& aGlobal, ErrorResult& aRv); + static already_AddRefed<WebKitCSSMatrix> + Constructor(const GlobalObject& aGlobal, + const nsAString& aTransformList, ErrorResult& aRv); + static already_AddRefed<WebKitCSSMatrix> + Constructor(const GlobalObject& aGlobal, + const DOMMatrixReadOnly& aOther, ErrorResult& aRv); + + nsISupports* GetParentObject() const { return mParent; } + virtual JSObject* WrapObject(JSContext* aCx, + JS::Handle<JSObject*> aGivenProto) override; + + WebKitCSSMatrix* SetMatrixValue(const nsAString& aTransformList, + ErrorResult& aRv); + + already_AddRefed<WebKitCSSMatrix> Multiply(const WebKitCSSMatrix& aOther) const; + already_AddRefed<WebKitCSSMatrix> Inverse(ErrorResult& aRv) const; + already_AddRefed<WebKitCSSMatrix> Translate(double aTx, + double aTy, + double aTz) const; + already_AddRefed<WebKitCSSMatrix> Scale(double aScaleX, + const Optional<double>& aScaleY, + double aScaleZ) const; + already_AddRefed<WebKitCSSMatrix> Rotate(double aRotX, + const Optional<double>& aRotY, + const Optional<double>& aRotZ) const; + already_AddRefed<WebKitCSSMatrix> RotateAxisAngle(double aX, + double aY, + double aZ, + double aAngle) const; + already_AddRefed<WebKitCSSMatrix> SkewX(double aSx) const; + already_AddRefed<WebKitCSSMatrix> 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__ */ |