skia2/experimental/svg/model/SkSVGStop.h
Tyler Denniston 308c07212a [svg] Implement currentColor for gradient stops
Required introducing a new type for stop-color attribute. A test that
exercises this is 'color-prop-01-b'.

Note that stop-color should be an inherited presentation attribute, but
that is not addressed in this CL.

Change-Id: I65b99bfc989f1d4b5a0746de31011b0e72eb6c59
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/282592
Commit-Queue: Tyler Denniston <tdenniston@google.com>
Reviewed-by: Florin Malita <fmalita@chromium.org>
2020-04-14 16:20:44 +00:00

45 lines
1.2 KiB
C++

/*
* 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 SkSVGStop_DEFINED
#define SkSVGStop_DEFINED
#include "experimental/svg/model/SkSVGHiddenContainer.h"
#include "experimental/svg/model/SkSVGTypes.h"
class SkSVGLengthContext;
class SkSVGStop : public SkSVGHiddenContainer {
public:
~SkSVGStop() override = default;
static sk_sp<SkSVGStop> Make() {
return sk_sp<SkSVGStop>(new SkSVGStop());
}
const SkSVGLength& offset() const { return fOffset; }
const SkSVGStopColor& stopColor() const { return fStopColor; }
const SkSVGNumberType& stopOpacity() const { return fStopOpacity; }
void setOffset(const SkSVGLength&);
void setStopColor(const SkSVGStopColor&);
void setStopOpacity(const SkSVGNumberType&);
protected:
void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
private:
SkSVGStop();
SkSVGLength fOffset = SkSVGLength(0 , SkSVGLength::Unit::kPercentage);
SkSVGStopColor fStopColor = SkSVGStopColor(SK_ColorBLACK);
SkSVGNumberType fStopOpacity = SkSVGNumberType(1);
typedef SkSVGHiddenContainer INHERITED;
};
#endif // SkSVGStop_DEFINED