OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
4 * | 5 * |
5 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
9 * | 10 * |
10 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 14 * Library General Public License for more details. |
14 * | 15 * |
15 * You should have received a copy of the GNU Library General Public License | 16 * 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 * 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 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
19 */ | 20 */ |
20 | 21 |
21 #ifndef SVGPathSegCurvetoQuadraticSmooth_h | 22 #ifndef SVGPathSegCurvetoQuadraticSmoothRel_h |
22 #define SVGPathSegCurvetoQuadraticSmooth_h | 23 #define SVGPathSegCurvetoQuadraticSmoothRel_h |
23 | 24 |
24 #include "core/svg/SVGPathSegWithContext.h" | 25 #include "core/svg/SVGPathSegWithContext.h" |
25 | 26 |
26 namespace WebCore { | 27 namespace WebCore { |
27 | 28 |
28 class SVGPathSegCurvetoQuadraticSmoothAbs : public SVGPathSegSingleCoordinate { | |
29 public: | |
30 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement
* element, SVGPathSegRole role, float x, float y) | |
31 { | |
32 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x
, y)); | |
33 } | |
34 | |
35 private: | |
36 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole
role, float x, float y) | |
37 : SVGPathSegSingleCoordinate(element, role, x, y) | |
38 { | |
39 ScriptWrappable::init(this); | |
40 } | |
41 | |
42 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI
C_SMOOTH_ABS; } | |
43 virtual String pathSegTypeAsLetter() const { return "T"; } | |
44 }; | |
45 | |
46 class SVGPathSegCurvetoQuadraticSmoothRel : public SVGPathSegSingleCoordinate { | 29 class SVGPathSegCurvetoQuadraticSmoothRel : public SVGPathSegSingleCoordinate { |
47 public: | 30 public: |
48 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement
* element, SVGPathSegRole role, float x, float y) | 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement
* element, SVGPathSegRole role, float x, float y) |
49 { | 32 { |
50 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x
, y)); | 33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x
, y)); |
51 } | 34 } |
52 | 35 |
53 private: | 36 private: |
54 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole
role, float x, float y) | 37 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole
role, float x, float y) |
55 : SVGPathSegSingleCoordinate(element, role, x, y) | 38 : SVGPathSegSingleCoordinate(element, role, x, y) |
56 { | 39 { |
57 ScriptWrappable::init(this); | 40 ScriptWrappable::init(this); |
58 } | 41 } |
59 | 42 |
60 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI
C_SMOOTH_REL; } | 43 virtual unsigned short pathSegType() const { return PATHSEG_CURVETO_QUADRATI
C_SMOOTH_REL; } |
61 virtual String pathSegTypeAsLetter() const { return "t"; } | 44 virtual String pathSegTypeAsLetter() const { return "t"; } |
62 }; | 45 }; |
63 | 46 |
64 } // namespace WebCore | 47 } // namespace WebCore |
65 | 48 |
66 #endif | 49 #endif |
OLD | NEW |