blob: 832c9a36ac041a78046a3bf7845193cc628ff869 [file] [log] [blame]
Florin Malitab3418102020-10-15 18:10:29 -04001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkSVGClipPath_DEFINED
9#define SkSVGClipPath_DEFINED
10
11#include "modules/svg/include/SkSVGHiddenContainer.h"
12#include "modules/svg/include/SkSVGTypes.h"
13
14class SkSVGClipPath final : public SkSVGHiddenContainer {
15public:
16 static sk_sp<SkSVGClipPath> Make() {
17 return sk_sp<SkSVGClipPath>(new SkSVGClipPath());
18 }
19
Florin Malita3c106182021-01-14 13:44:06 -050020 SVG_ATTR(ClipPathUnits, SkSVGObjectBoundingBoxUnits,
21 SkSVGObjectBoundingBoxUnits(SkSVGObjectBoundingBoxUnits::Type::kUserSpaceOnUse))
22
Florin Malitab3418102020-10-15 18:10:29 -040023private:
Florin Malita3c106182021-01-14 13:44:06 -050024 friend class SkSVGRenderContext;
25
Florin Malitab3418102020-10-15 18:10:29 -040026 SkSVGClipPath();
27
Florin Malita3c106182021-01-14 13:44:06 -050028 bool parseAndSetAttribute(const char*, const char*) override;
29
30 SkPath resolveClip(const SkSVGRenderContext&) const;
31
Florin Malitab3418102020-10-15 18:10:29 -040032 using INHERITED = SkSVGHiddenContainer;
33};
34
35#endif // SkSVGClipPath_DEFINED