skia2/modules/svg/include/SkSVGRadialGradient.h
Tyler Denniston a0a5146ba9 [svg] Use new parsing for gradient classes
- Added new SVG_OPTIONAL_ATTR macro for lazy properties
- Added SkSVGIRI type -- we need explicit types now to be able to
  dispatch via the templated parse function
- Converted several attribute parse functions to templated version

Change-Id: I270d35983083f368e36afd96a62c768161d49942
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/333518
Commit-Queue: Tyler Denniston <tdenniston@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2020-11-10 19:04:49 +00:00

40 lines
1.2 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 SkSVGRadialGradient_DEFINED
#define SkSVGRadialGradient_DEFINED
#include "modules/svg/include/SkSVGGradient.h"
#include "modules/svg/include/SkSVGTypes.h"
class SkSVGRadialGradient final : public SkSVGGradient {
public:
~SkSVGRadialGradient() override = default;
static sk_sp<SkSVGRadialGradient> Make() {
return sk_sp<SkSVGRadialGradient>(new SkSVGRadialGradient());
}
SVG_ATTR(Cx, SkSVGLength, SkSVGLength(50, SkSVGLength::Unit::kPercentage))
SVG_ATTR(Cy, SkSVGLength, SkSVGLength(50, SkSVGLength::Unit::kPercentage))
SVG_ATTR(R, SkSVGLength, SkSVGLength(50, SkSVGLength::Unit::kPercentage))
SVG_OPTIONAL_ATTR(Fx, SkSVGLength)
SVG_OPTIONAL_ATTR(Fy, SkSVGLength)
protected:
bool parseAndSetAttribute(const char*, const char*) override;
sk_sp<SkShader> onMakeShader(const SkSVGRenderContext&,
const SkColor*, const SkScalar*, int count,
SkTileMode, const SkMatrix&) const override;
private:
SkSVGRadialGradient();
using INHERITED = SkSVGGradient;
};
#endif // SkSVGRadialGradient_DEFINED