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: */
|
2013-01-06 13:32:01 +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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_SVGRectElement_h
|
|
|
|
#define mozilla_dom_SVGRectElement_h
|
|
|
|
|
|
|
|
#include "nsSVGLength2.h"
|
2016-12-18 14:11:47 +03:00
|
|
|
#include "SVGGeometryElement.h"
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
nsresult NS_NewSVGRectElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-12-18 14:11:47 +03:00
|
|
|
typedef SVGGeometryElement SVGRectElementBase;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGRectElement final : public SVGRectElementBase
|
2013-01-06 13:32:01 +04:00
|
|
|
{
|
|
|
|
protected:
|
2014-09-01 05:08:04 +04:00
|
|
|
explicit SVGRectElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-01-06 13:32:01 +04:00
|
|
|
friend nsresult (::NS_NewSVGRectElement(nsIContent **aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// nsSVGSVGElement methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool HasValidDimensions() const override;
|
2013-01-06 13:32:01 +04:00
|
|
|
|
2016-12-18 14:11:47 +03:00
|
|
|
// SVGGeometryElement methods:
|
2015-02-03 21:36:32 +03:00
|
|
|
virtual bool GetGeometryBounds(Rect* aBounds, const StrokeOptions& aStrokeOptions,
|
2015-09-01 07:17:00 +03:00
|
|
|
const Matrix& aToBoundsSpace,
|
|
|
|
const Matrix* aToNonScalingStrokeSpace = nullptr) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void GetAsSimplePath(SimplePath* aSimplePath) override;
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<Path> BuildPath(PathBuilder* aBuilder = nullptr) override;
|
2013-01-06 13:32:01 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
// WebIDL
|
2013-01-20 00:56:00 +04:00
|
|
|
already_AddRefed<SVGAnimatedLength> X();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Y();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Height();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Width();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Rx();
|
|
|
|
already_AddRefed<SVGAnimatedLength> Ry();
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual LengthAttributesInfo GetLengthInfo() override;
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
enum { ATTR_X, ATTR_Y, ATTR_WIDTH, ATTR_HEIGHT, ATTR_RX, ATTR_RY };
|
|
|
|
nsSVGLength2 mLengthAttributes[6];
|
|
|
|
static LengthInfo sLengthInfo[6];
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGRectElement_h
|