blob: 92ab80f26c344ede5308d4750bd084bda68fd803 [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 SkSVGContainer_DEFINED
9#define SkSVGContainer_DEFINED
10
11#include "include/private/SkTArray.h"
12#include "modules/svg/include/SkSVGTransformableNode.h"
13
14class SkSVGContainer : public SkSVGTransformableNode {
15public:
16 ~SkSVGContainer() override = default;
17
18 void appendChild(sk_sp<SkSVGNode>) override;
19
20protected:
21 explicit SkSVGContainer(SkSVGTag);
22
23 void onRender(const SkSVGRenderContext&) const override;
24
25 SkPath onAsPath(const SkSVGRenderContext&) const override;
26
Tyler Dennistonf548a022020-10-27 15:02:02 -040027 SkRect onObjectBoundingBox(const SkSVGRenderContext&) const override;
28
Florin Malitab3418102020-10-15 18:10:29 -040029 bool hasChildren() const final;
30
31 // TODO: add some sort of child iterator, and hide the container.
32 SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
33
34private:
35 using INHERITED = SkSVGTransformableNode;
36};
37
38#endif // SkSVGContainer_DEFINED