2017-12-27 16:13:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSGPath_DEFINED
|
|
|
|
#define SkSGPath_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "modules/sksg/include/SkSGGeometryNode.h"
|
2017-12-27 16:13:13 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkPath.h"
|
2017-12-27 16:13:13 +00:00
|
|
|
|
|
|
|
class SkCanvas;
|
|
|
|
class SkPaint;
|
|
|
|
|
|
|
|
namespace sksg {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Concrete Geometry node, wrapping an SkPath.
|
|
|
|
*/
|
|
|
|
class Path : public GeometryNode {
|
|
|
|
public:
|
|
|
|
static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); }
|
|
|
|
static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); }
|
|
|
|
|
|
|
|
SG_ATTRIBUTE(Path, SkPath, fPath)
|
2019-11-25 14:03:35 +00:00
|
|
|
|
|
|
|
// Temporarily inlined for SkPathFillType staging
|
|
|
|
// SG_MAPPED_ATTRIBUTE(FillType, SkPathFillType, fPath)
|
|
|
|
|
2019-11-26 17:17:17 +00:00
|
|
|
SkPathFillType getFillType() const {
|
2019-12-03 21:26:15 +00:00
|
|
|
return fPath.getFillType();
|
2019-11-25 14:03:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 17:17:17 +00:00
|
|
|
void setFillType(SkPathFillType fillType) {
|
2019-12-03 21:26:15 +00:00
|
|
|
if (fillType != fPath.getFillType()) {
|
2019-11-25 14:03:35 +00:00
|
|
|
fPath.setFillType(fillType);
|
|
|
|
this->invalidate();
|
|
|
|
}
|
|
|
|
}
|
2017-12-27 16:13:13 +00:00
|
|
|
|
|
|
|
protected:
|
2018-01-29 21:31:14 +00:00
|
|
|
void onClip(SkCanvas*, bool antiAlias) const override;
|
2017-12-27 16:13:13 +00:00
|
|
|
void onDraw(SkCanvas*, const SkPaint&) const override;
|
2019-02-12 14:33:21 +00:00
|
|
|
bool onContains(const SkPoint&) const override;
|
2017-12-27 16:13:13 +00:00
|
|
|
|
2018-01-05 16:32:31 +00:00
|
|
|
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
|
2018-01-04 04:37:54 +00:00
|
|
|
SkPath onAsPath() const override;
|
2017-12-27 16:13:13 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit Path(const SkPath&);
|
|
|
|
|
|
|
|
SkPath fPath;
|
2018-01-31 22:06:59 +00:00
|
|
|
|
|
|
|
using INHERITED = GeometryNode;
|
2017-12-27 16:13:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace sksg
|
|
|
|
|
|
|
|
#endif // SkSGPath_DEFINED
|