7571f9e490
Mechanically updated via Xcode "Replace Regular Expression": typedef (.*) INHERITED; --> using INHERITED = $1; The ClangTidy approach generated an even larger CL which would have required a significant amount of hand-tweaking to be usable. Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
45 lines
1.2 KiB
C++
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);
|
|
|
|
using INHERITED = SkSVGHiddenContainer;
|
|
};
|
|
|
|
#endif // SkSVGStop_DEFINED
|