2016-08-12 19:15:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSVGPoly_DEFINED
|
|
|
|
#define SkSVGPoly_DEFINED
|
|
|
|
|
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkSVGShape.h"
|
|
|
|
|
|
|
|
// Handles <polygon> and <polyline> elements.
|
|
|
|
class SkSVGPoly final : public SkSVGShape {
|
|
|
|
public:
|
2017-03-22 16:05:03 +00:00
|
|
|
~SkSVGPoly() override = default;
|
2016-08-12 19:15:33 +00:00
|
|
|
|
|
|
|
static sk_sp<SkSVGPoly> MakePolygon() {
|
|
|
|
return sk_sp<SkSVGPoly>(new SkSVGPoly(SkSVGTag::kPolygon));
|
|
|
|
}
|
|
|
|
|
|
|
|
static sk_sp<SkSVGPoly> MakePolyline() {
|
|
|
|
return sk_sp<SkSVGPoly>(new SkSVGPoly(SkSVGTag::kPolyline));
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPoints(const SkSVGPointsType&);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
|
|
|
|
|
2016-12-01 18:35:11 +00:00
|
|
|
void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&,
|
|
|
|
SkPath::FillType) const override;
|
2016-08-12 19:15:33 +00:00
|
|
|
|
2016-12-08 14:26:47 +00:00
|
|
|
SkPath onAsPath(const SkSVGRenderContext&) const override;
|
|
|
|
|
2016-08-12 19:15:33 +00:00
|
|
|
private:
|
|
|
|
SkSVGPoly(SkSVGTag);
|
|
|
|
|
2016-12-01 18:35:11 +00:00
|
|
|
mutable SkPath fPath; // mutated in onDraw(), to apply inherited fill types.
|
2016-08-12 19:15:33 +00:00
|
|
|
|
|
|
|
typedef SkSVGShape INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGPoly_DEFINED
|