Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2019 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 SkSVGText_DEFINED |
| 9 | #define SkSVGText_DEFINED |
| 10 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 11 | #include <vector> |
| 12 | |
| 13 | #include "modules/svg/include/SkSVGTransformableNode.h" |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 14 | #include "modules/svg/include/SkSVGTypes.h" |
| 15 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 16 | class SkSVGTextContext; |
| 17 | |
| 18 | // Base class for text-rendering nodes. |
| 19 | class SkSVGTextFragment : public SkSVGTransformableNode { |
| 20 | public: |
| 21 | void renderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const; |
| 22 | |
| 23 | protected: |
| 24 | explicit SkSVGTextFragment(SkSVGTag t) : INHERITED(t) {} |
| 25 | |
| 26 | virtual void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, |
| 27 | SkSVGXmlSpace) const = 0; |
| 28 | |
| 29 | private: |
| 30 | SkPath onAsPath(const SkSVGRenderContext&) const final; |
| 31 | |
| 32 | using INHERITED = SkSVGTransformableNode; |
| 33 | }; |
| 34 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 35 | // Base class for nestable text containers (<text>, <tspan>, etc). |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 36 | class SkSVGTextContainer : public SkSVGTextFragment { |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 37 | public: |
Florin Malita | dec7802 | 2020-12-17 16:36:54 -0500 | [diff] [blame] | 38 | SVG_ATTR(X, std::vector<SkSVGLength>, {}) |
| 39 | SVG_ATTR(Y, std::vector<SkSVGLength>, {}) |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 40 | |
Florin Malita | 9c1f1be | 2020-12-09 13:02:50 -0500 | [diff] [blame] | 41 | SVG_ATTR(XmlSpace, SkSVGXmlSpace, SkSVGXmlSpace::kDefault) |
| 42 | |
Florin Malita | dec7802 | 2020-12-17 16:36:54 -0500 | [diff] [blame] | 43 | void appendChild(sk_sp<SkSVGNode>) final; |
| 44 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 45 | protected: |
| 46 | explicit SkSVGTextContainer(SkSVGTag t) : INHERITED(t) {} |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 47 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 48 | private: |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 49 | void onRender(const SkSVGRenderContext&) const final; |
| 50 | void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const final; |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 51 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 52 | bool parseAndSetAttribute(const char*, const char*) override; |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 53 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 54 | std::vector<sk_sp<SkSVGTextFragment>> fChildren; |
| 55 | |
| 56 | using INHERITED = SkSVGTextFragment; |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 57 | }; |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 58 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 59 | class SkSVGText final : public SkSVGTextContainer { |
| 60 | public: |
| 61 | static sk_sp<SkSVGText> Make() { return sk_sp<SkSVGText>(new SkSVGText()); } |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 62 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 63 | private: |
| 64 | SkSVGText() : INHERITED(SkSVGTag::kText) {} |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 65 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 66 | using INHERITED = SkSVGTextContainer; |
| 67 | }; |
Florin Malita | 39fe8c8 | 2020-10-20 10:43:03 -0400 | [diff] [blame] | 68 | |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 69 | class SkSVGTSpan final : public SkSVGTextContainer { |
| 70 | public: |
| 71 | static sk_sp<SkSVGTSpan> Make() { return sk_sp<SkSVGTSpan>(new SkSVGTSpan()); } |
| 72 | |
| 73 | private: |
| 74 | SkSVGTSpan() : INHERITED(SkSVGTag::kTSpan) {} |
| 75 | |
| 76 | using INHERITED = SkSVGTextContainer; |
| 77 | }; |
| 78 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 79 | class SkSVGTextLiteral final : public SkSVGTextFragment { |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 80 | public: |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 81 | static sk_sp<SkSVGTextLiteral> Make() { |
| 82 | return sk_sp<SkSVGTextLiteral>(new SkSVGTextLiteral()); |
| 83 | } |
| 84 | |
| 85 | SVG_ATTR(Text, SkSVGStringType, SkSVGStringType()) |
| 86 | |
| 87 | private: |
| 88 | SkSVGTextLiteral() : INHERITED(SkSVGTag::kTextLiteral) {} |
| 89 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 90 | void onRender(const SkSVGRenderContext&) const override {} |
| 91 | void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const override; |
Florin Malita | 512ff75 | 2020-12-06 11:50:52 -0500 | [diff] [blame] | 92 | |
| 93 | void appendChild(sk_sp<SkSVGNode>) override {} |
| 94 | |
Florin Malita | adc6889 | 2020-12-15 10:52:26 -0500 | [diff] [blame] | 95 | using INHERITED = SkSVGTextFragment; |
Florin Malita | b341810 | 2020-10-15 18:10:29 -0400 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | #endif // SkSVGText_DEFINED |