blob: 0f15ca5ac7611562f616c3210cbdd1f88ace9a65 [file] [log] [blame]
fmalitad24ee142016-08-17 08:38:15 -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 SkSVGLine_DEFINED
9#define SkSVGLine_DEFINED
10
11#include "SkSVGShape.h"
12#include "SkSVGTypes.h"
13
Florin Malitace8840e2016-12-08 09:26:47 -050014struct SkPoint;
15
fmalitad24ee142016-08-17 08:38:15 -070016class SkSVGLine final : public SkSVGShape {
17public:
18 virtual ~SkSVGLine() = default;
19 static sk_sp<SkSVGLine> Make() { return sk_sp<SkSVGLine>(new SkSVGLine()); }
20
21 void setX1(const SkSVGLength&);
22 void setY1(const SkSVGLength&);
23 void setX2(const SkSVGLength&);
24 void setY2(const SkSVGLength&);
25
26protected:
27 void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
28
Florin Malitae932d4b2016-12-01 13:35:11 -050029 void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&,
30 SkPath::FillType) const override;
fmalitad24ee142016-08-17 08:38:15 -070031
Florin Malitace8840e2016-12-08 09:26:47 -050032 SkPath onAsPath(const SkSVGRenderContext&) const override;
33
fmalitad24ee142016-08-17 08:38:15 -070034private:
35 SkSVGLine();
36
Florin Malitace8840e2016-12-08 09:26:47 -050037 // resolve and return the two endpoints
38 std::tuple<SkPoint, SkPoint> resolve(const SkSVGLengthContext&) const;
39
fmalitad24ee142016-08-17 08:38:15 -070040 SkSVGLength fX1 = SkSVGLength(0);
41 SkSVGLength fY1 = SkSVGLength(0);
42 SkSVGLength fX2 = SkSVGLength(0);
43 SkSVGLength fY2 = SkSVGLength(0);
44
45 typedef SkSVGShape INHERITED;
46};
47
48#endif // SkSVGLine_DEFINED