fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef SkSVGPoly_DEFINED |
| 9 | #define SkSVGPoly_DEFINED |
| 10 | |
| 11 | #include "SkPath.h" |
| 12 | #include "SkSVGShape.h" |
| 13 | |
| 14 | // Handles <polygon> and <polyline> elements. |
| 15 | class SkSVGPoly final : public SkSVGShape { |
| 16 | public: |
Brian Salomon | d3b6597 | 2017-03-22 12:05:03 -0400 | [diff] [blame] | 17 | ~SkSVGPoly() override = default; |
fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 18 | |
| 19 | static sk_sp<SkSVGPoly> MakePolygon() { |
| 20 | return sk_sp<SkSVGPoly>(new SkSVGPoly(SkSVGTag::kPolygon)); |
| 21 | } |
| 22 | |
| 23 | static sk_sp<SkSVGPoly> MakePolyline() { |
| 24 | return sk_sp<SkSVGPoly>(new SkSVGPoly(SkSVGTag::kPolyline)); |
| 25 | } |
| 26 | |
| 27 | void setPoints(const SkSVGPointsType&); |
| 28 | |
| 29 | protected: |
| 30 | void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override; |
| 31 | |
Florin Malita | e932d4b | 2016-12-01 13:35:11 -0500 | [diff] [blame] | 32 | void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&, |
| 33 | SkPath::FillType) const override; |
fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 34 | |
Florin Malita | ce8840e | 2016-12-08 09:26:47 -0500 | [diff] [blame] | 35 | SkPath onAsPath(const SkSVGRenderContext&) const override; |
| 36 | |
fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 37 | private: |
| 38 | SkSVGPoly(SkSVGTag); |
| 39 | |
Florin Malita | e932d4b | 2016-12-01 13:35:11 -0500 | [diff] [blame] | 40 | mutable SkPath fPath; // mutated in onDraw(), to apply inherited fill types. |
fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 41 | |
| 42 | typedef SkSVGShape INHERITED; |
| 43 | }; |
| 44 | |
| 45 | #endif // SkSVGPoly_DEFINED |