Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / svg / SVGEllipseElement.h
blobdcc8ab80f4a340dbae9faa0ae1a9d0cc331edeea
1 /*
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
21 #ifndef SVGEllipseElement_h
22 #define SVGEllipseElement_h
24 #include "core/SVGNames.h"
25 #include "core/svg/SVGAnimatedBoolean.h"
26 #include "core/svg/SVGAnimatedLength.h"
27 #include "core/svg/SVGGeometryElement.h"
28 #include "platform/heap/Handle.h"
30 namespace blink {
32 class SVGEllipseElement final : public SVGGeometryElement {
33 DEFINE_WRAPPERTYPEINFO();
34 public:
35 DECLARE_NODE_FACTORY(SVGEllipseElement);
37 Path asPath() const override;
39 SVGAnimatedLength* cx() const { return m_cx.get(); }
40 SVGAnimatedLength* cy() const { return m_cy.get(); }
41 SVGAnimatedLength* rx() const { return m_rx.get(); }
42 SVGAnimatedLength* ry() const { return m_ry.get(); }
44 DECLARE_VIRTUAL_TRACE();
46 private:
47 explicit SVGEllipseElement(Document&);
49 bool isPresentationAttribute(const QualifiedName&) const override;
50 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
51 void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
53 void svgAttributeChanged(const QualifiedName&) override;
55 bool selfHasRelativeLengths() const override;
57 LayoutObject* createLayoutObject(const ComputedStyle&) override;
59 RefPtrWillBeMember<SVGAnimatedLength> m_cx;
60 RefPtrWillBeMember<SVGAnimatedLength> m_cy;
61 RefPtrWillBeMember<SVGAnimatedLength> m_rx;
62 RefPtrWillBeMember<SVGAnimatedLength> m_ry;
65 } // namespace blink
67 #endif // SVGEllipseElement_h