skia2/modules/svg/include/SkSVGPattern.h
Tyler Denniston 627c6d2569 [svg] Refactor <pattern> and gradient stop elements to new parsing
Change-Id: I1fb84760f7a657aefeb7e0af3758766daac2d0f9
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/367882
Reviewed-by: Florin Malita <fmalita@chromium.org>
2021-02-08 20:27:17 +00:00

56 lines
1.5 KiB
C++

/*
* 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 SkSVGPattern_DEFINED
#define SkSVGPattern_DEFINED
#include "modules/svg/include/SkSVGHiddenContainer.h"
#include "modules/svg/include/SkSVGTypes.h"
class SkSVGRenderContext;
class SkSVGPattern final : public SkSVGHiddenContainer {
public:
static sk_sp<SkSVGPattern> Make() {
return sk_sp<SkSVGPattern>(new SkSVGPattern());
}
SVG_ATTR(Href, SkSVGIRI, SkSVGIRI())
SVG_OPTIONAL_ATTR(X , SkSVGLength)
SVG_OPTIONAL_ATTR(Y , SkSVGLength)
SVG_OPTIONAL_ATTR(Width , SkSVGLength)
SVG_OPTIONAL_ATTR(Height , SkSVGLength)
SVG_OPTIONAL_ATTR(PatternTransform, SkSVGTransformType)
protected:
SkSVGPattern();
bool parseAndSetAttribute(const char*, const char*) override;
bool onAsPaint(const SkSVGRenderContext&, SkPaint*) const override;
private:
struct PatternAttributes {
SkTLazy<SkSVGLength> fX,
fY,
fWidth,
fHeight;
SkTLazy<SkSVGTransformType> fPatternTransform;
};
const SkSVGPattern* resolveHref(const SkSVGRenderContext&, PatternAttributes*) const;
const SkSVGPattern* hrefTarget(const SkSVGRenderContext&) const;
// TODO:
// - patternUnits
// - patternContentUnits
using INHERITED = SkSVGHiddenContainer;
};
#endif // SkSVGPattern_DEFINED