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/. */
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#ifndef DOM_SVG_SVGPOLYGONELEMENT_H_
|
|
|
|
#define DOM_SVG_SVGPOLYGONELEMENT_H_
|
2013-01-06 13:32:01 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2016-12-18 14:11:47 +03:00
|
|
|
#include "SVGPolyElement.h"
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
nsresult NS_NewSVGPolygonElement(
|
2014-06-20 06:01:40 +04:00
|
|
|
nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
2013-01-06 13:32:01 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2020-07-15 13:37:55 +03:00
|
|
|
using SVGPolygonElementBase = SVGPolyElement;
|
2016-12-18 14:11:47 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class SVGPolygonElement final : public SVGPolygonElementBase {
|
2013-01-06 13:32:01 +04:00
|
|
|
protected:
|
2018-09-21 23:45:49 +03:00
|
|
|
explicit SVGPolygonElement(
|
|
|
|
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_NewSVGPolygonElement(
|
|
|
|
nsIContent** aResult,
|
2014-06-20 06:01:40 +04:00
|
|
|
already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-01-06 13:32:01 +04:00
|
|
|
public:
|
2016-12-18 14:11:47 +03:00
|
|
|
// SVGGeometryElement methods:
|
2019-01-26 16:01:31 +03:00
|
|
|
virtual void GetMarkPoints(nsTArray<SVGMark>* aMarks) override;
|
2015-06-17 17:00:52 +03:00
|
|
|
virtual already_AddRefed<Path> BuildPath(PathBuilder* aBuilder) override;
|
2013-01-06 13:32:01 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
|
2013-01-06 13:32:01 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2020-07-15 02:40:05 +03:00
|
|
|
#endif // DOM_SVG_SVGPOLYGONELEMENT_H_
|