2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-12-23 08:54:23 +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/. */
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_DOMSVGANGLE_H_
|
|
|
|
#define DOM_SVG_DOMSVGANGLE_H_
|
2012-12-23 08:54:23 +04:00
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
2018-12-21 11:58:14 +03:00
|
|
|
#include "SVGElement.h"
|
2012-12-23 08:54:23 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2019-02-15 11:41:37 +03:00
|
|
|
|
2019-04-04 20:40:56 +03:00
|
|
|
class SVGAnimatedOrient;
|
2019-02-15 11:41:37 +03:00
|
|
|
|
2012-12-23 08:54:23 +04:00
|
|
|
namespace dom {
|
2019-01-26 20:12:16 +03:00
|
|
|
class SVGSVGElement;
|
2012-12-23 08:54:23 +04:00
|
|
|
|
2018-12-30 21:18:30 +03:00
|
|
|
class DOMSVGAngle final : public nsWrapperCache {
|
2012-12-23 08:54:23 +04:00
|
|
|
public:
|
|
|
|
typedef enum { BaseValue, AnimValue, CreatedValue } AngleType;
|
|
|
|
|
2018-12-30 21:18:30 +03:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(DOMSVGAngle)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(DOMSVGAngle)
|
2012-12-23 08:54:23 +04:00
|
|
|
|
2018-12-30 01:19:55 +03:00
|
|
|
/**
|
2018-12-30 21:18:30 +03:00
|
|
|
* Generic ctor for DOMSVGAngle objects that are created for an attribute.
|
2018-12-30 01:19:55 +03:00
|
|
|
*/
|
2019-04-04 20:40:56 +03:00
|
|
|
DOMSVGAngle(SVGAnimatedOrient* aVal, SVGElement* aSVGElement, AngleType aType)
|
2012-12-23 08:54:23 +04:00
|
|
|
: mVal(aVal), mSVGElement(aSVGElement), mType(aType) {}
|
|
|
|
|
2018-12-30 01:19:55 +03:00
|
|
|
/**
|
|
|
|
* Ctor for creating the objects returned by SVGSVGElement.createSVGAngle(),
|
|
|
|
* which do not initially belong to an attribute.
|
|
|
|
*/
|
2019-01-26 20:12:16 +03:00
|
|
|
explicit DOMSVGAngle(SVGSVGElement* aSVGElement);
|
2018-12-30 01:19:55 +03:00
|
|
|
|
2012-12-23 08:54:23 +04:00
|
|
|
// WebIDL
|
2018-12-21 11:58:14 +03:00
|
|
|
SVGElement* GetParentObject() { return mSVGElement; }
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2012-12-23 08:54:23 +04:00
|
|
|
uint16_t UnitType() const;
|
|
|
|
float Value() const;
|
2012-12-23 08:54:23 +04:00
|
|
|
void GetValueAsString(nsAString& aValue);
|
2012-12-23 08:54:23 +04:00
|
|
|
void SetValue(float aValue, ErrorResult& rv);
|
|
|
|
float ValueInSpecifiedUnits() const;
|
|
|
|
void SetValueInSpecifiedUnits(float aValue, ErrorResult& rv);
|
|
|
|
void SetValueAsString(const nsAString& aValue, ErrorResult& rv);
|
|
|
|
void NewValueSpecifiedUnits(uint16_t unitType, float value, ErrorResult& rv);
|
|
|
|
void ConvertToSpecifiedUnits(uint16_t unitType, ErrorResult& rv);
|
|
|
|
|
|
|
|
protected:
|
2018-12-30 21:18:30 +03:00
|
|
|
~DOMSVGAngle();
|
2014-06-24 20:36:45 +04:00
|
|
|
|
2019-04-04 20:40:56 +03:00
|
|
|
SVGAnimatedOrient* mVal; // if mType is CreatedValue, we own the angle.
|
|
|
|
// Otherwise, the element does.
|
2018-12-21 11:58:14 +03:00
|
|
|
RefPtr<SVGElement> mSVGElement;
|
2012-12-23 08:54:23 +04:00
|
|
|
AngleType mType;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_DOMSVGANGLE_H_
|