2020-10-15 22:10:29 +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 SkSVGPath_DEFINED
|
|
|
|
#define SkSVGPath_DEFINED
|
|
|
|
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "modules/svg/include/SkSVGShape.h"
|
|
|
|
|
|
|
|
class SkSVGPath final : public SkSVGShape {
|
|
|
|
public:
|
|
|
|
static sk_sp<SkSVGPath> Make() { return sk_sp<SkSVGPath>(new SkSVGPath()); }
|
|
|
|
|
2021-02-08 18:58:44 +00:00
|
|
|
SVG_ATTR(Path, SkPath, SkPath())
|
2020-10-15 22:10:29 +00:00
|
|
|
|
|
|
|
protected:
|
2021-02-08 18:58:44 +00:00
|
|
|
bool parseAndSetAttribute(const char*, const char*) override;
|
2020-10-15 22:10:29 +00:00
|
|
|
|
|
|
|
void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&,
|
|
|
|
SkPathFillType) const override;
|
|
|
|
|
|
|
|
SkPath onAsPath(const SkSVGRenderContext&) const override;
|
|
|
|
|
2021-01-12 14:28:22 +00:00
|
|
|
SkRect onObjectBoundingBox(const SkSVGRenderContext&) const override;
|
|
|
|
|
2020-10-15 22:10:29 +00:00
|
|
|
private:
|
|
|
|
SkSVGPath();
|
|
|
|
|
|
|
|
using INHERITED = SkSVGShape;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGPath_DEFINED
|