OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2002, 2003 The Karbon Developers | 2 * Copyright (C) 2002, 2003 The Karbon Developers |
3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
4 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2006, 2007 Rob Buis <buis@kde.org> |
5 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. |
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 14 matching lines...) Expand all Loading... |
25 #define SVGPathSegListBuilder_h | 25 #define SVGPathSegListBuilder_h |
26 | 26 |
27 #include "core/svg/SVGPathConsumer.h" | 27 #include "core/svg/SVGPathConsumer.h" |
28 #include "core/svg/SVGPathSegList.h" | 28 #include "core/svg/SVGPathSegList.h" |
29 #include "platform/geometry/FloatPoint.h" | 29 #include "platform/geometry/FloatPoint.h" |
30 | 30 |
31 namespace blink { | 31 namespace blink { |
32 | 32 |
33 class SVGPathElement; | 33 class SVGPathElement; |
34 | 34 |
35 class SVGPathSegListBuilder FINAL : public SVGPathConsumer { | 35 class SVGPathSegListBuilder final : public SVGPathConsumer { |
36 public: | 36 public: |
37 SVGPathSegListBuilder(); | 37 SVGPathSegListBuilder(); |
38 | 38 |
39 void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement =
pathElement; } | 39 void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement =
pathElement; } |
40 void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pa
thSegList = pathSegList; } | 40 void setCurrentSVGPathSegList(PassRefPtr<SVGPathSegList> pathSegList) { m_pa
thSegList = pathSegList; } |
41 | 41 |
42 private: | 42 private: |
43 virtual void incrementPathSegmentCount() OVERRIDE { } | 43 virtual void incrementPathSegmentCount() override { } |
44 virtual bool continueConsuming() OVERRIDE { return true; } | 44 virtual bool continueConsuming() override { return true; } |
45 virtual void cleanup() OVERRIDE | 45 virtual void cleanup() override |
46 { | 46 { |
47 m_pathElement = 0; | 47 m_pathElement = 0; |
48 m_pathSegList = nullptr; | 48 m_pathSegList = nullptr; |
49 } | 49 } |
50 | 50 |
51 // Used in UnalteredParsing/NormalizedParsing modes. | 51 // Used in UnalteredParsing/NormalizedParsing modes. |
52 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) OVER
RIDE; | 52 virtual void moveTo(const FloatPoint&, bool closed, PathCoordinateMode) over
ride; |
53 virtual void lineTo(const FloatPoint&, PathCoordinateMode) OVERRIDE; | 53 virtual void lineTo(const FloatPoint&, PathCoordinateMode) override; |
54 virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatP
oint&, PathCoordinateMode) OVERRIDE; | 54 virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatP
oint&, PathCoordinateMode) override; |
55 virtual void closePath() OVERRIDE; | 55 virtual void closePath() override; |
56 | 56 |
57 // Only used in UnalteredParsing mode. | 57 // Only used in UnalteredParsing mode. |
58 virtual void lineToHorizontal(float, PathCoordinateMode) OVERRIDE; | 58 virtual void lineToHorizontal(float, PathCoordinateMode) override; |
59 virtual void lineToVertical(float, PathCoordinateMode) OVERRIDE; | 59 virtual void lineToVertical(float, PathCoordinateMode) override; |
60 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo
ordinateMode) OVERRIDE; | 60 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo
ordinateMode) override; |
61 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor
dinateMode) OVERRIDE; | 61 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor
dinateMode) override; |
62 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) O
VERRIDE; | 62 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) o
verride; |
63 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, c
onst FloatPoint&, PathCoordinateMode) OVERRIDE; | 63 virtual void arcTo(float, float, float, bool largeArcFlag, bool sweepFlag, c
onst FloatPoint&, PathCoordinateMode) override; |
64 | 64 |
65 SVGPathElement* m_pathElement; | 65 SVGPathElement* m_pathElement; |
66 RefPtr<SVGPathSegList> m_pathSegList; | 66 RefPtr<SVGPathSegList> m_pathSegList; |
67 }; | 67 }; |
68 | 68 |
69 } // namespace blink | 69 } // namespace blink |
70 | 70 |
71 #endif // SVGPathSegListBuilder_h | 71 #endif // SVGPathSegListBuilder_h |
OLD | NEW |