Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: Source/core/svg/SVGPathTraversalStateBuilder.h

Issue 1037463002: Rework the SVGPathConsumer interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase; FIXME -> TODO. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
3 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 3 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 13 * Library General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU Library General Public License 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 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, 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 18 * Boston, MA 02110-1301, USA.
19 */ 19 */
20 20
21 #ifndef SVGPathTraversalStateBuilder_h 21 #ifndef SVGPathTraversalStateBuilder_h
22 #define SVGPathTraversalStateBuilder_h 22 #define SVGPathTraversalStateBuilder_h
23 23
24 #include "core/svg/SVGPathConsumer.h" 24 #include "core/svg/SVGPathConsumer.h"
25 #include "platform/graphics/PathTraversalState.h" 25 #include "platform/graphics/PathTraversalState.h"
26 26
27 namespace blink { 27 namespace blink {
28 28
29 class FloatPoint;
30
29 class SVGPathTraversalStateBuilder final : public SVGPathConsumer { 31 class SVGPathTraversalStateBuilder final : public SVGPathConsumer {
30 public: 32 public:
31 SVGPathTraversalStateBuilder(PathTraversalState::PathTraversalAction, float desiredLength = 0); 33 SVGPathTraversalStateBuilder(PathTraversalState::PathTraversalAction, float desiredLength = 0);
32 34
33 unsigned pathSegmentIndex() const { return m_segmentIndex; } 35 unsigned pathSegmentIndex() const { return m_segmentIndex; }
34 float totalLength(); 36 float totalLength();
35 FloatPoint currentPoint(); 37 FloatPoint currentPoint();
36 38
37 virtual void incrementPathSegmentCount() override; 39 virtual void incrementPathSegmentCount() override;
38 virtual bool continueConsuming() override; 40 virtual bool continueConsuming() override;
39 41
40 private: 42 private:
41 // Used in UnalteredParsing/NormalizedParsing modes. 43 virtual void emitSegment(const PathSegmentData&) override;
42 virtual void moveTo(const FloatPoint&, PathCoordinateMode) override;
43 virtual void lineTo(const FloatPoint&, PathCoordinateMode) override;
44 virtual void curveToCubic(const FloatPoint&, const FloatPoint&, const FloatP oint&, PathCoordinateMode) override;
45 virtual void closePath() override;
46
47 private:
48 // Not used for PathTraversalState.
49 virtual void lineToHorizontal(float, PathCoordinateMode) override { ASSERT_N OT_REACHED(); }
50 virtual void lineToVertical(float, PathCoordinateMode) override { ASSERT_NOT _REACHED(); }
51 virtual void curveToCubicSmooth(const FloatPoint&, const FloatPoint&, PathCo ordinateMode) override { ASSERT_NOT_REACHED(); }
52 virtual void curveToQuadratic(const FloatPoint&, const FloatPoint&, PathCoor dinateMode) override { ASSERT_NOT_REACHED(); }
53 virtual void curveToQuadraticSmooth(const FloatPoint&, PathCoordinateMode) o verride { ASSERT_NOT_REACHED(); }
54 virtual void arcTo(float, float, float, bool, bool, const FloatPoint&, PathC oordinateMode) override { ASSERT_NOT_REACHED(); }
55 44
56 PathTraversalState m_traversalState; 45 PathTraversalState m_traversalState;
57 unsigned m_segmentIndex; 46 unsigned m_segmentIndex;
58 }; 47 };
59 48
60 } // namespace blink 49 } // namespace blink
61 50
62 #endif // SVGPathTraversalStateBuilder_h 51 #endif // SVGPathTraversalStateBuilder_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGPathStringBuilder.cpp ('k') | Source/core/svg/SVGPathTraversalStateBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698