04e03bc181
These are somewhat the first presentation attributes of their kind, in that they are non-inherited but also not applied via canvas layers. Implementation-wise the main difference is that these attributes are not propagated through the fInherited field of the render context's presentation attribute list. Change-Id: I0909507b0ecbd21732b3f80c46a343f5a0a9bf7a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/340661 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Tyler Denniston <tdenniston@google.com>
39 lines
870 B
C++
39 lines
870 B
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 "modules/svg/include/SkSVGHiddenContainer.h"
|
|
#include "modules/svg/include/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; }
|
|
|
|
void setOffset(const SkSVGLength&);
|
|
|
|
protected:
|
|
void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
|
|
|
|
private:
|
|
SkSVGStop();
|
|
|
|
SkSVGLength fOffset = SkSVGLength(0, SkSVGLength::Unit::kPercentage);
|
|
|
|
using INHERITED = SkSVGHiddenContainer;
|
|
};
|
|
|
|
#endif // SkSVGStop_DEFINED
|