fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 14 | class SkSVGContainer : public SkSVGTransformableNode { |
| 15 | public: |
| 16 | virtual ~SkSVGContainer() = default; |
| 17 | |
| 18 | void appendChild(sk_sp<SkSVGNode>) override; |
| 19 | |
| 20 | protected: |
fmalita | 28d5b72 | 2016-09-12 17:06:47 -0700 | [diff] [blame^] | 21 | explicit SkSVGContainer(SkSVGTag); |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 22 | |
fmalita | 397a517 | 2016-08-08 11:38:55 -0700 | [diff] [blame] | 23 | void onRender(const SkSVGRenderContext&) const override; |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 24 | |
fmalita | 28d5b72 | 2016-09-12 17:06:47 -0700 | [diff] [blame^] | 25 | // TODO: add some sort of child iterator, and hide the container. |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 26 | SkSTArray<1, sk_sp<SkSVGNode>, true> fChildren; |
| 27 | |
fmalita | 28d5b72 | 2016-09-12 17:06:47 -0700 | [diff] [blame^] | 28 | private: |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 29 | typedef SkSVGTransformableNode INHERITED; |
| 30 | }; |
| 31 | |
| 32 | #endif // SkSVGSVG_DEFINED |