blob: 6a0b00244c15e4ecac956ce4a2cc26e5bb67a6e3 [file] [log] [blame]
fmalita6ceef3d2016-07-26 18:46:34 -07001/*
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 "SkSVGTransformableNode.h"
12#include "SkTArray.h"
13
14class SkSVGContainer : public SkSVGTransformableNode {
15public:
16 virtual ~SkSVGContainer() = default;
17
18 void appendChild(sk_sp<SkSVGNode>) override;
19
20protected:
fmalita28d5b722016-09-12 17:06:47 -070021 explicit SkSVGContainer(SkSVGTag);
fmalita6ceef3d2016-07-26 18:46:34 -070022
fmalita397a5172016-08-08 11:38:55 -070023 void onRender(const SkSVGRenderContext&) const override;
fmalita6ceef3d2016-07-26 18:46:34 -070024
Florin Malitace8840e2016-12-08 09:26:47 -050025 SkPath onAsPath(const SkSVGRenderContext&) const override;
26
fmalitabef51c22016-09-20 15:45:57 -070027 bool hasChildren() const final;
28
fmalita28d5b722016-09-12 17:06:47 -070029 // TODO: add some sort of child iterator, and hide the container.
fmalita6ceef3d2016-07-26 18:46:34 -070030 SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren;
31
fmalita28d5b722016-09-12 17:06:47 -070032private:
fmalita6ceef3d2016-07-26 18:46:34 -070033 typedef SkSVGTransformableNode INHERITED;
34};
35
36#endif // SkSVGSVG_DEFINED