Bug 1936278 - Prevent search mode chiclet from being dismissed when clicking in page...
[gecko.git] / dom / svg / SVGEllipseElement.h
blobdcfccae6cd7fe8bcdd9cc955e06eeb9781315a21
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef DOM_SVG_SVGELLIPSEELEMENT_H_
8 #define DOM_SVG_SVGELLIPSEELEMENT_H_
10 #include "nsCSSPropertyID.h"
11 #include "SVGAnimatedLength.h"
12 #include "SVGGeometryElement.h"
14 nsresult NS_NewSVGEllipseElement(
15 nsIContent** aResult, already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
17 namespace mozilla {
18 class ComputedStyle;
20 namespace dom {
22 using SVGEllipseElementBase = SVGGeometryElement;
24 class SVGEllipseElement final : public SVGEllipseElementBase {
25 protected:
26 explicit SVGEllipseElement(
27 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
28 JSObject* WrapNode(JSContext* cx, JS::Handle<JSObject*> aGivenProto) override;
29 friend nsresult(::NS_NewSVGEllipseElement(
30 nsIContent** aResult,
31 already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo));
33 public:
34 NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
36 // SVGSVGElement methods:
37 bool HasValidDimensions() const override;
39 // SVGGeometryElement methods:
40 virtual bool GetGeometryBounds(
41 Rect* aBounds, const StrokeOptions& aStrokeOptions,
42 const Matrix& aToBoundsSpace,
43 const Matrix* aToNonScalingStrokeSpace = nullptr) override;
44 already_AddRefed<Path> BuildPath(PathBuilder* aBuilder) override;
45 bool IsClosedLoop() const override { return true; }
47 nsresult Clone(dom::NodeInfo*, nsINode** aResult) const override;
49 static bool IsLengthChangedViaCSS(const ComputedStyle& aNewStyle,
50 const ComputedStyle& aOldStyle);
51 static nsCSSPropertyID GetCSSPropertyIdForAttrEnum(uint8_t aAttrEnum);
53 // WebIDL
54 already_AddRefed<DOMSVGAnimatedLength> Cx();
55 already_AddRefed<DOMSVGAnimatedLength> Cy();
56 already_AddRefed<DOMSVGAnimatedLength> Rx();
57 already_AddRefed<DOMSVGAnimatedLength> Ry();
59 protected:
60 LengthAttributesInfo GetLengthInfo() override;
62 enum { CX, CY, RX, RY };
63 SVGAnimatedLength mLengthAttributes[4];
64 static LengthInfo sLengthInfo[4];
67 } // namespace dom
68 } // namespace mozilla
70 #endif // DOM_SVG_SVGELLIPSEELEMENT_H_