| Index: experimental/svg/model/SkSVGStop.h
|
| diff --git a/experimental/svg/model/SkSVGStop.h b/experimental/svg/model/SkSVGStop.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2ffbc5c852e798916ea85d51db4cdaede3b780dd
|
| --- /dev/null
|
| +++ b/experimental/svg/model/SkSVGStop.h
|
| @@ -0,0 +1,44 @@
|
| +/*
|
| + * 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 "SkSVGHiddenContainer.h"
|
| +#include "SkSVGTypes.h"
|
| +
|
| +class SkSVGLengthContext;
|
| +
|
| +class SkSVGStop : public SkSVGHiddenContainer {
|
| +public:
|
| + virtual ~SkSVGStop() = default;
|
| + static sk_sp<SkSVGStop> Make() {
|
| + return sk_sp<SkSVGStop>(new SkSVGStop());
|
| + }
|
| +
|
| + const SkSVGLength& offset() const { return fOffset; }
|
| + const SkSVGColorType& stopColor() const { return fStopColor; }
|
| + const SkSVGNumberType& stopOpacity() const { return fStopOpacity; }
|
| +
|
| + void setOffset(const SkSVGLength&);
|
| + void setStopColor(const SkSVGColorType&);
|
| + void setStopOpacity(const SkSVGNumberType&);
|
| +
|
| +protected:
|
| + void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
|
| +
|
| +private:
|
| + SkSVGStop();
|
| +
|
| + SkSVGLength fOffset = SkSVGLength(0 , SkSVGLength::Unit::kPercentage);
|
| + SkSVGColorType fStopColor = SkSVGColorType(SK_ColorBLACK);
|
| + SkSVGNumberType fStopOpacity = SkSVGNumberType(1);
|
| +
|
| + typedef SkSVGHiddenContainer INHERITED;
|
| +};
|
| +
|
| +#endif // SkSVGStop_DEFINED
|
|
|