Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / svg / SVGRectElement.h
blob3963ebba10b92aca9792cb1948da91270bb14f99
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 SVGRectElement_h
22 #define SVGRectElement_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 SVGRectElement final : public SVGGeometryElement {
33 DEFINE_WRAPPERTYPEINFO();
34 public:
35 DECLARE_NODE_FACTORY(SVGRectElement);
37 Path asPath() const override;
39 SVGAnimatedLength* x() const { return m_x.get(); }
40 SVGAnimatedLength* y() const { return m_y.get(); }
41 SVGAnimatedLength* width() const { return m_width.get(); }
42 SVGAnimatedLength* height() const { return m_height.get(); }
43 SVGAnimatedLength* rx() const { return m_rx.get(); }
44 SVGAnimatedLength* ry() const { return m_ry.get(); }
46 DECLARE_VIRTUAL_TRACE();
48 private:
49 explicit SVGRectElement(Document&);
51 bool isPresentationAttribute(const QualifiedName&) const override;
52 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
53 void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
54 void svgAttributeChanged(const QualifiedName&) override;
56 bool selfHasRelativeLengths() const override;
58 LayoutObject* createLayoutObject(const ComputedStyle&) override;
60 RefPtrWillBeMember<SVGAnimatedLength> m_x;
61 RefPtrWillBeMember<SVGAnimatedLength> m_y;
62 RefPtrWillBeMember<SVGAnimatedLength> m_width;
63 RefPtrWillBeMember<SVGAnimatedLength> m_height;
64 RefPtrWillBeMember<SVGAnimatedLength> m_rx;
65 RefPtrWillBeMember<SVGAnimatedLength> m_ry;
68 } // namespace blink
70 #endif // SVGRectElement_h