| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "core/svg/SVGPathSeg.h" | 23 #include "core/svg/SVGPathSeg.h" |
| 24 #include "core/svg/SVGPathSegList.h" | 24 #include "core/svg/SVGPathSegList.h" |
| 25 #include "core/svg/SVGPathSource.h" | 25 #include "core/svg/SVGPathSource.h" |
| 26 #include "platform/geometry/FloatPoint.h" | 26 #include "platform/geometry/FloatPoint.h" |
| 27 #include "wtf/PassOwnPtr.h" | 27 #include "wtf/PassOwnPtr.h" |
| 28 #include "wtf/RefPtr.h" | 28 #include "wtf/RefPtr.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 class SVGPathSegList; | |
| 33 | |
| 34 class SVGPathSegListSource FINAL : public SVGPathSource { | 32 class SVGPathSegListSource FINAL : public SVGPathSource { |
| 35 public: | 33 public: |
| 36 SVGPathSegListSource(SVGPathSegList::ConstIterator, SVGPathSegList::ConstIte
rator); | 34 SVGPathSegListSource(SVGPathSegList::ConstIterator, SVGPathSegList::ConstIte
rator); |
| 37 | 35 |
| 38 private: | 36 private: |
| 39 virtual bool hasMoreData() const OVERRIDE; | 37 virtual bool hasMoreData() const OVERRIDE; |
| 40 virtual bool moveToNextToken() OVERRIDE { return true; } | 38 virtual bool moveToNextToken() OVERRIDE { return true; } |
| 41 virtual bool parseSVGSegmentType(SVGPathSegType&) OVERRIDE; | 39 virtual bool parseSVGSegmentType(SVGPathSegType&) OVERRIDE; |
| 42 virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE; | 40 virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE; |
| 43 | 41 |
| 44 virtual bool parseMoveToSegment(FloatPoint&) OVERRIDE; | 42 virtual bool parseMoveToSegment(FloatPoint&) OVERRIDE; |
| 45 virtual bool parseLineToSegment(FloatPoint&) OVERRIDE; | 43 virtual bool parseLineToSegment(FloatPoint&) OVERRIDE; |
| 46 virtual bool parseLineToHorizontalSegment(float&) OVERRIDE; | 44 virtual bool parseLineToHorizontalSegment(float&) OVERRIDE; |
| 47 virtual bool parseLineToVerticalSegment(float&) OVERRIDE; | 45 virtual bool parseLineToVerticalSegment(float&) OVERRIDE; |
| 48 virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&)
OVERRIDE; | 46 virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&)
OVERRIDE; |
| 49 virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&) OVERRI
DE; | 47 virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&) OVERRI
DE; |
| 50 virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&) OVERRIDE
; | 48 virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&) OVERRIDE
; |
| 51 virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&) OVERRIDE; | 49 virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&) OVERRIDE; |
| 52 virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPo
int&) OVERRIDE; | 50 virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPo
int&) OVERRIDE; |
| 53 | 51 |
| 54 RefPtr<SVGPathSeg> m_segment; | 52 RefPtr<SVGPathSeg> m_segment; |
| 55 SVGPathSegList::ConstIterator m_itCurrent; | 53 SVGPathSegList::ConstIterator m_itCurrent; |
| 56 SVGPathSegList::ConstIterator m_itEnd; | 54 SVGPathSegList::ConstIterator m_itEnd; |
| 57 }; | 55 }; |
| 58 | 56 |
| 59 } // namespace WebCore | 57 } // namespace WebCore |
| 60 | 58 |
| 61 #endif // SVGPathSegListSource_h | 59 #endif // SVGPathSegListSource_h |
| OLD | NEW |