blob: 268647b3b16a53fef15ff7e333dbf02996ec1aec [file] [log] [blame]
Florin Malitab3418102020-10-15 18:10:29 -04001/*
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 Malitaadc68892020-12-15 10:52:26 -050011#include <vector>
12
13#include "modules/svg/include/SkSVGTransformableNode.h"
Florin Malitab3418102020-10-15 18:10:29 -040014#include "modules/svg/include/SkSVGTypes.h"
15
Florin Malitaadc68892020-12-15 10:52:26 -050016class SkSVGTextContext;
17
18// Base class for text-rendering nodes.
19class SkSVGTextFragment : public SkSVGTransformableNode {
20public:
21 void renderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const;
22
23protected:
24 explicit SkSVGTextFragment(SkSVGTag t) : INHERITED(t) {}
25
26 virtual void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*,
27 SkSVGXmlSpace) const = 0;
28
29private:
30 SkPath onAsPath(const SkSVGRenderContext&) const final;
31
32 using INHERITED = SkSVGTransformableNode;
33};
34
Florin Malita512ff752020-12-06 11:50:52 -050035// Base class for nestable text containers (<text>, <tspan>, etc).
Florin Malitaadc68892020-12-15 10:52:26 -050036class SkSVGTextContainer : public SkSVGTextFragment {
Florin Malita512ff752020-12-06 11:50:52 -050037public:
Florin Malitadec78022020-12-17 16:36:54 -050038 SVG_ATTR(X, std::vector<SkSVGLength>, {})
39 SVG_ATTR(Y, std::vector<SkSVGLength>, {})
Florin Malita735ac972020-12-22 11:23:32 -050040 SVG_ATTR(Dx, std::vector<SkSVGLength>, {})
41 SVG_ATTR(Dy, std::vector<SkSVGLength>, {})
Florin Malita2d059fc2021-01-05 11:53:15 -050042 SVG_ATTR(Rotate, std::vector<SkSVGNumberType>, {})
Florin Malitab3418102020-10-15 18:10:29 -040043
Florin Malita9c1f1be2020-12-09 13:02:50 -050044 SVG_ATTR(XmlSpace, SkSVGXmlSpace, SkSVGXmlSpace::kDefault)
45
Florin Malitadec78022020-12-17 16:36:54 -050046 void appendChild(sk_sp<SkSVGNode>) final;
47
Florin Malita512ff752020-12-06 11:50:52 -050048protected:
49 explicit SkSVGTextContainer(SkSVGTag t) : INHERITED(t) {}
Florin Malitab3418102020-10-15 18:10:29 -040050
Florin Malitafc0ea0a2021-01-12 13:27:01 -050051 void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const override;
Florin Malitab3418102020-10-15 18:10:29 -040052
Florin Malita512ff752020-12-06 11:50:52 -050053 bool parseAndSetAttribute(const char*, const char*) override;
Florin Malitab3418102020-10-15 18:10:29 -040054
Florin Malitafc0ea0a2021-01-12 13:27:01 -050055private:
56 void onRender(const SkSVGRenderContext&) const final;
57
Florin Malitaadc68892020-12-15 10:52:26 -050058 std::vector<sk_sp<SkSVGTextFragment>> fChildren;
59
60 using INHERITED = SkSVGTextFragment;
Florin Malita512ff752020-12-06 11:50:52 -050061};
Florin Malitab3418102020-10-15 18:10:29 -040062
Florin Malita512ff752020-12-06 11:50:52 -050063class SkSVGText final : public SkSVGTextContainer {
64public:
65 static sk_sp<SkSVGText> Make() { return sk_sp<SkSVGText>(new SkSVGText()); }
Florin Malitab3418102020-10-15 18:10:29 -040066
Florin Malita512ff752020-12-06 11:50:52 -050067private:
68 SkSVGText() : INHERITED(SkSVGTag::kText) {}
Florin Malitab3418102020-10-15 18:10:29 -040069
Florin Malitafc0ea0a2021-01-12 13:27:01 -050070 void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const override;
71
Florin Malita512ff752020-12-06 11:50:52 -050072 using INHERITED = SkSVGTextContainer;
73};
Florin Malita39fe8c82020-10-20 10:43:03 -040074
Florin Malita512ff752020-12-06 11:50:52 -050075class SkSVGTSpan final : public SkSVGTextContainer {
76public:
77 static sk_sp<SkSVGTSpan> Make() { return sk_sp<SkSVGTSpan>(new SkSVGTSpan()); }
78
79private:
80 SkSVGTSpan() : INHERITED(SkSVGTag::kTSpan) {}
81
82 using INHERITED = SkSVGTextContainer;
83};
84
Florin Malitaadc68892020-12-15 10:52:26 -050085class SkSVGTextLiteral final : public SkSVGTextFragment {
Florin Malita512ff752020-12-06 11:50:52 -050086public:
Florin Malita512ff752020-12-06 11:50:52 -050087 static sk_sp<SkSVGTextLiteral> Make() {
88 return sk_sp<SkSVGTextLiteral>(new SkSVGTextLiteral());
89 }
90
91 SVG_ATTR(Text, SkSVGStringType, SkSVGStringType())
92
93private:
94 SkSVGTextLiteral() : INHERITED(SkSVGTag::kTextLiteral) {}
95
Florin Malitaadc68892020-12-15 10:52:26 -050096 void onRender(const SkSVGRenderContext&) const override {}
97 void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const override;
Florin Malita512ff752020-12-06 11:50:52 -050098
99 void appendChild(sk_sp<SkSVGNode>) override {}
100
Florin Malitaadc68892020-12-15 10:52:26 -0500101 using INHERITED = SkSVGTextFragment;
Florin Malitab3418102020-10-15 18:10:29 -0400102};
103
Florin Malitafc0ea0a2021-01-12 13:27:01 -0500104class SkSVGTextPath final : public SkSVGTextContainer {
105public:
106 static sk_sp<SkSVGTextPath> Make() { return sk_sp<SkSVGTextPath>(new SkSVGTextPath()); }
107
108 SVG_ATTR(Href , SkSVGIRI , {SkString()} )
109 SVG_ATTR(StartOffset, SkSVGLength, SkSVGLength(0))
110
111private:
112 SkSVGTextPath() : INHERITED(SkSVGTag::kTextPath) {}
113
114 void onRenderText(const SkSVGRenderContext&, SkSVGTextContext*, SkSVGXmlSpace) const override;
115 bool parseAndSetAttribute(const char*, const char*) override;
116
117 using INHERITED = SkSVGTextContainer;
118};
119
Florin Malitab3418102020-10-15 18:10:29 -0400120#endif // SkSVGText_DEFINED