2016-09-13 00:06:47 +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.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "experimental/svg/model/SkSVGRenderContext.h"
|
|
|
|
#include "experimental/svg/model/SkSVGStop.h"
|
2016-09-13 00:06:47 +00:00
|
|
|
|
|
|
|
SkSVGStop::SkSVGStop() : INHERITED(SkSVGTag::kStop) {}
|
|
|
|
|
|
|
|
void SkSVGStop::setOffset(const SkSVGLength& offset) {
|
|
|
|
fOffset = offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkSVGStop::setStopColor(const SkSVGColorType& color) {
|
|
|
|
fStopColor = color;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SkSVGStop::setStopOpacity(const SkSVGNumberType& opacity) {
|
2020-04-09 18:36:45 +00:00
|
|
|
fStopOpacity = SkTPin<SkScalar>(opacity, 0, 1);
|
2016-09-13 00:06:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 04:29:13 +00:00
|
|
|
void SkSVGStop::onSetAttribute(SkSVGAttribute attr, const SkSVGAttributeValue& v) {
|
2016-09-13 00:06:47 +00:00
|
|
|
switch (attr) {
|
|
|
|
case SkSVGAttribute::kOffset:
|
2020-04-10 04:29:13 +00:00
|
|
|
if (const auto* offset = std::get_if<SkSVGLength>(&v)) {
|
2016-09-13 00:06:47 +00:00
|
|
|
this->setOffset(*offset);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SkSVGAttribute::kStopColor:
|
2020-04-10 04:29:13 +00:00
|
|
|
if (const auto* color = std::get_if<SkSVGColorType>(&v)) {
|
2016-09-13 00:06:47 +00:00
|
|
|
this->setStopColor(*color);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SkSVGAttribute::kStopOpacity:
|
2020-04-10 04:29:13 +00:00
|
|
|
if (const auto* opacity = std::get_if<SkSVGNumberType>(&v)) {
|
2016-09-13 00:06:47 +00:00
|
|
|
this->setStopOpacity(*opacity);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
this->INHERITED::onSetAttribute(attr, v);
|
|
|
|
}
|
|
|
|
}
|