Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / Source / core / svg / SVGLineElement.h
blob81288a6d20c8d22f238c9f5b566076af4476fdb5
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 SVGLineElement_h
22 #define SVGLineElement_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 SVGLineElement final : public SVGGeometryElement {
33 DEFINE_WRAPPERTYPEINFO();
34 public:
35 DECLARE_NODE_FACTORY(SVGLineElement);
37 Path asPath() const override;
39 SVGAnimatedLength* x1() const { return m_x1.get(); }
40 SVGAnimatedLength* y1() const { return m_y1.get(); }
41 SVGAnimatedLength* x2() const { return m_x2.get(); }
42 SVGAnimatedLength* y2() const { return m_y2.get(); }
44 DECLARE_VIRTUAL_TRACE();
46 private:
47 explicit SVGLineElement(Document&);
49 void svgAttributeChanged(const QualifiedName&) override;
51 bool selfHasRelativeLengths() const override;
53 RefPtrWillBeMember<SVGAnimatedLength> m_x1;
54 RefPtrWillBeMember<SVGAnimatedLength> m_y1;
55 RefPtrWillBeMember<SVGAnimatedLength> m_x2;
56 RefPtrWillBeMember<SVGAnimatedLength> m_y2;
59 } // namespace blink
61 #endif // SVGLineElement_h