| 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 */ | 18 */ |
| 19 | 19 |
| 20 #ifndef SVGPathByteStreamSource_h | 20 #ifndef SVGPathByteStreamSource_h |
| 21 #define SVGPathByteStreamSource_h | 21 #define SVGPathByteStreamSource_h |
| 22 | 22 |
| 23 #include "core/svg/SVGPathByteStream.h" | 23 #include "core/svg/SVGPathByteStream.h" |
| 24 #include "core/svg/SVGPathSource.h" | 24 #include "core/svg/SVGPathSource.h" |
| 25 #include "platform/geometry/FloatPoint.h" | 25 #include "platform/geometry/FloatPoint.h" |
| 26 #include "wtf/PassOwnPtr.h" | 26 #include "wtf/PassOwnPtr.h" |
| 27 | 27 |
| 28 namespace WebCore { | 28 namespace WebCore { |
| 29 | 29 |
| 30 class SVGPathByteStreamSource : public SVGPathSource { | 30 class SVGPathByteStreamSource FINAL : public SVGPathSource { |
| 31 public: | 31 public: |
| 32 static PassOwnPtr<SVGPathByteStreamSource> create(SVGPathByteStream* stream) | 32 static PassOwnPtr<SVGPathByteStreamSource> create(SVGPathByteStream* stream) |
| 33 { | 33 { |
| 34 return adoptPtr(new SVGPathByteStreamSource(stream)); | 34 return adoptPtr(new SVGPathByteStreamSource(stream)); |
| 35 } | 35 } |
| 36 | 36 |
| 37 private: | 37 private: |
| 38 SVGPathByteStreamSource(SVGPathByteStream*); | 38 SVGPathByteStreamSource(SVGPathByteStream*); |
| 39 | 39 |
| 40 virtual bool hasMoreData() const; | 40 virtual bool hasMoreData() const OVERRIDE; |
| 41 virtual bool moveToNextToken() { return true; } | 41 virtual bool moveToNextToken() OVERRIDE { return true; } |
| 42 virtual bool parseSVGSegmentType(SVGPathSegType&); | 42 virtual bool parseSVGSegmentType(SVGPathSegType&) OVERRIDE; |
| 43 virtual SVGPathSegType nextCommand(SVGPathSegType); | 43 virtual SVGPathSegType nextCommand(SVGPathSegType) OVERRIDE; |
| 44 | 44 |
| 45 virtual bool parseMoveToSegment(FloatPoint&); | 45 virtual bool parseMoveToSegment(FloatPoint&) OVERRIDE; |
| 46 virtual bool parseLineToSegment(FloatPoint&); | 46 virtual bool parseLineToSegment(FloatPoint&) OVERRIDE; |
| 47 virtual bool parseLineToHorizontalSegment(float&); | 47 virtual bool parseLineToHorizontalSegment(float&) OVERRIDE; |
| 48 virtual bool parseLineToVerticalSegment(float&); | 48 virtual bool parseLineToVerticalSegment(float&) OVERRIDE; |
| 49 virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&)
; | 49 virtual bool parseCurveToCubicSegment(FloatPoint&, FloatPoint&, FloatPoint&)
OVERRIDE; |
| 50 virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&); | 50 virtual bool parseCurveToCubicSmoothSegment(FloatPoint&, FloatPoint&) OVERRI
DE; |
| 51 virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&); | 51 virtual bool parseCurveToQuadraticSegment(FloatPoint&, FloatPoint&) OVERRIDE
; |
| 52 virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&); | 52 virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&) OVERRIDE; |
| 53 virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPo
int&); | 53 virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPo
int&) OVERRIDE; |
| 54 | 54 |
| 55 #if COMPILER(MSVC) | 55 #if COMPILER(MSVC) |
| 56 #pragma warning(disable: 4701) | 56 #pragma warning(disable: 4701) |
| 57 #endif | 57 #endif |
| 58 template<typename DataType, typename ByteType> | 58 template<typename DataType, typename ByteType> |
| 59 DataType readType() | 59 DataType readType() |
| 60 { | 60 { |
| 61 ByteType data; | 61 ByteType data; |
| 62 size_t typeSize = sizeof(ByteType); | 62 size_t typeSize = sizeof(ByteType); |
| 63 | 63 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 92 return FloatPoint(x, y); | 92 return FloatPoint(x, y); |
| 93 } | 93 } |
| 94 | 94 |
| 95 SVGPathByteStream::DataIterator m_streamCurrent; | 95 SVGPathByteStream::DataIterator m_streamCurrent; |
| 96 SVGPathByteStream::DataIterator m_streamEnd; | 96 SVGPathByteStream::DataIterator m_streamEnd; |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 } // namespace WebCore | 99 } // namespace WebCore |
| 100 | 100 |
| 101 #endif // SVGPathByteStreamSource_h | 101 #endif // SVGPathByteStreamSource_h |
| OLD | NEW |